UNPKG

@finos/legend-lego

Version:
46 lines 2.21 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; /** * Copyright (c) 2020-present, Goldman Sachs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { isSystemElement, isGeneratedElement, isDependencyElement, } from '@finos/legend-graph'; export const buildElementOption = (element) => ({ label: element.name, value: element, }); const getElementColorCode = (element) => isSystemElement(element) ? 'system' : isGeneratedElement(element) ? 'generated' : isDependencyElement(element) ? 'dependency' : ''; const generateOptionTooltipText = (element) => isSystemElement(element) ? 'system element' : isGeneratedElement(element) ? 'generated element' : isDependencyElement(element) ? 'dependency element' : undefined; export const getPackageableElementOptionFormatter = (props) => function PackageableElementOptionLabel(option) { const { darkMode } = props; const className = darkMode ? 'packageable-element-option-label--dark' : 'packageable-element-option-label'; const colorCode = getElementColorCode(option.value); return (_jsxs("div", { className: className, children: [_jsx("div", { title: generateOptionTooltipText(option.value), className: `packageable-element-option-label__type ${colorCode ? `packageable-element-option-label__type--${colorCode}` : ''} ` }), _jsx("div", { className: `${className}__name`, children: option.label }), option.value.package && (_jsx("div", { className: `${className}__tag`, children: option.value.path }))] })); }; //# sourceMappingURL=PackageableElementOption.js.map