UNPKG

@finos/legend-application-studio

Version:
54 lines 2.9 kB
import { jsx as _jsx } 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 { BinaryTypeIcon, ToggleIcon, ClockIcon, HashtagIcon, QuestionCircleIcon, StringTypeIcon, ShapeTriangleIcon, SerializeIcon, } from '@finos/legend-art'; import { Real, Binary, Bit, Other, Date, Timestamp, Numeric, Decimal, VarBinary, Char, VarChar, Double, Float, Integer, TinyInt, SmallInt, BigInt, SemiStructured, Json, } from '@finos/legend-graph'; export const renderColumnTypeIcon = (type) => { if (type instanceof VarChar || type instanceof Char) { return (_jsx(StringTypeIcon, { className: "relation-source-tree__icon relation-source-tree__icon__string" })); } else if (type instanceof VarBinary || type instanceof Binary) { return (_jsx(BinaryTypeIcon, { className: "relation-source-tree__icon relation-source-tree__icon__binary" })); } else if (type instanceof Bit) { return (_jsx(ToggleIcon, { className: "relation-source-tree__icon relation-source-tree__icon__boolean" })); } else if (type instanceof Numeric || type instanceof Decimal || type instanceof Double || type instanceof Float || type instanceof Real || type instanceof Integer || type instanceof BigInt || type instanceof SmallInt || type instanceof TinyInt) { return (_jsx(HashtagIcon, { className: "relation-source-tree__icon relation-source-tree__icon__number" })); } else if (type instanceof Date || type instanceof Timestamp) { return (_jsx(ClockIcon, { className: "relation-source-tree__icon relation-source-tree__icon__time" })); } else if (type instanceof SemiStructured) { return (_jsx(ShapeTriangleIcon, { className: "relation-source-tree__icon relation-source-tree__icon__semi-structured" })); } else if (type instanceof Json) { return (_jsx(SerializeIcon, { className: "relation-source-tree__icon relation-source-tree__icon__json" })); } else if (type instanceof Other) { return (_jsx(QuestionCircleIcon, { className: "relation-source-tree__icon relation-source-tree__icon__unknown" })); } return (_jsx(QuestionCircleIcon, { className: "relation-source-tree__icon relation-source-tree__icon__unknown" })); }; //# sourceMappingURL=DatabaseEditorHelper.js.map