/** * 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 { useEditorStore } from '@finos/legend-application-studio'; import { CustomSelectorInput, ListEditor, PanelFormTextField, } from '@finos/legend-art'; import { DataSpaceDiagram } from '@finos/legend-extension-dsl-data-space/graph'; import { observer } from 'mobx-react-lite'; import { DataSpaceEditorState } from '../../stores/DataSpaceEditorState.js'; import { PackageableElementExplicitReference } from '@finos/legend-graph'; import { type Diagram } from '@finos/legend-extension-dsl-diagram/graph'; import { dataSpace_addDiagram, dataSpace_removeDiagram, dataSpace_setDiagramTitle, dataSpace_setDiagramDescription, } from '../../stores/studio/DSL_DataSpace_GraphModifierHelper.js'; export const DataSpaceDiagramsSection = observer(() => { const editorStore = useEditorStore(); const dataSpaceState = editorStore.tabManagerState.getCurrentEditorState(DataSpaceEditorState); const dataSpace = dataSpaceState.dataSpace; // Event handlers const handleAddDiagram = (option: { label: string; value: Diagram; }): void => { if (typeof option.value === 'object') { const diagramValue = option.value; const newDiagram = new DataSpaceDiagram(); newDiagram.title = diagramValue.name; newDiagram.diagram = PackageableElementExplicitReference.create(diagramValue); dataSpace_addDiagram(dataSpace, newDiagram); } }; const handleRemoveDiagram = (diagram: DataSpaceDiagram): void => { dataSpace_removeDiagram(dataSpace, diagram); }; const handleDiagramTitleChange = ( diagram: DataSpaceDiagram, value: string | undefined, ): void => { dataSpace_setDiagramTitle(diagram, value ?? ''); }; const handleDiagramDescriptionChange = ( diagram: DataSpaceDiagram, value: string | undefined, ): void => { dataSpace_setDiagramDescription(diagram, value); }; // ListEditor component renderers const DiagramComponent = observer( (props: { item: DataSpaceDiagram }): React.ReactElement => { const { item } = props; return ( <>