UNPKG

@finos/legend-application-studio

Version:
43 lines 3.38 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 { observer } from 'mobx-react-lite'; import { useApplicationStore } from '@finos/legend-application'; import { buildElementOption, getPackageableElementOptionFormatter, } from '@finos/legend-lego/graph-editor'; import { CustomSelectorInput, PanelHeader } from '@finos/legend-art'; import { getMappingCompatibleClasses } from '@finos/legend-graph'; import { QueryBuilderClassSelector } from '@finos/legend-query-builder'; /** * This setup panel supports limited cascading, we will only show: * - For class selector: the list of compatible class with the specified mapping */ const MappingExecutionQueryBuilderSetupPanelContent = observer((props) => { const { queryBuilderState } = props; const applicationStore = useApplicationStore(); // mapping const selectedMappingOption = buildElementOption(queryBuilderState.executionMapping); // class const classes = getMappingCompatibleClasses(queryBuilderState.executionMapping, queryBuilderState.graphManagerState.usableClasses); return (_jsxs("div", { className: "query-builder__setup__config-group", children: [_jsx(PanelHeader, { title: "properties" }), _jsxs("div", { className: "query-builder__setup__config-group__content", children: [_jsxs("div", { className: "query-builder__setup__config-group__item", children: [_jsx("label", { className: "btn--sm query-builder__setup__config-group__item__label", title: "mapping", htmlFor: "query-builder__setup__mapping-selector", children: "Mapping" }), _jsx(CustomSelectorInput, { inputId: "query-builder__setup__mapping-selector", className: "panel__content__form__section__dropdown query-builder__setup__config-group__item__selector", disabled: true, options: [], onChange: () => { // do nothing }, value: selectedMappingOption, darkMode: !applicationStore.layoutService .TEMPORARY__isLightColorThemeEnabled, formatOptionLabel: getPackageableElementOptionFormatter({ darkMode: !applicationStore.layoutService .TEMPORARY__isLightColorThemeEnabled, }) })] }), _jsx("div", { className: "query-builder__setup__config-group__item", children: _jsx(QueryBuilderClassSelector, { queryBuilderState: queryBuilderState, classes: classes, noMatchMessage: "No compatible entity found for specified mapping" }) })] })] })); }); export const renderMappingExecutionQueryBuilderSetupPanelContent = (queryBuilderState) => (_jsx(MappingExecutionQueryBuilderSetupPanelContent, { queryBuilderState: queryBuilderState })); //# sourceMappingURL=MappingExecutionQueryBuilder.js.map