/** * 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 { type PackageableElement, isSystemElement, isGeneratedElement, isDependencyElement, } from '@finos/legend-graph'; export interface PackageableElementOption { label: string; value: T; } export const buildElementOption = ( element: T, ): PackageableElementOption => ({ label: element.name, value: element, }); const getElementColorCode = (element: PackageableElement): string => isSystemElement(element) ? 'system' : isGeneratedElement(element) ? 'generated' : isDependencyElement(element) ? 'dependency' : ''; const generateOptionTooltipText = ( element: PackageableElement, ): string | undefined => isSystemElement(element) ? 'system element' : isGeneratedElement(element) ? 'generated element' : isDependencyElement(element) ? 'dependency element' : undefined; export const getPackageableElementOptionFormatter = (props: { darkMode?: boolean | undefined; }): (( option: PackageableElementOption, ) => React.ReactNode) => function PackageableElementOptionLabel( option: PackageableElementOption, ): React.ReactNode { const { darkMode } = props; const className = darkMode ? 'packageable-element-option-label--dark' : 'packageable-element-option-label'; const colorCode = getElementColorCode(option.value); return (
{option.label}
{option.value.package && (
{option.value.path}
)}
); };