UNPKG

@finos/legend-studio

Version:
182 lines (171 loc) 6.29 kB
/** * 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 { EditorStore } from '../EditorStore.js'; import { action, makeAutoObservable } from 'mobx'; import { UnsupportedOperationError } from '@finos/legend-shared'; import { type PackageableElement, type EngineError, type DSLMapping_PureGraphManagerPlugin_Extension, Profile, Enumeration, Class, Association, Mapping, ConcreteFunctionDefinition, Service, FlatData, PackageableConnection, PackageableRuntime, JsonModelConnection, XmlModelConnection, FlatDataConnection, FileGenerationSpecification, GenerationSpecification, Measure, Database, RelationalDatabaseConnection, DataElement, ModelChainConnection, PURE_ELEMENT_NAME, PURE_CONNECTION_NAME, } from '@finos/legend-graph'; const getGrammarElementTypeLabelRegexString = ( typeLabel: string, elementPath: string, ): string => ( `^([^\\S\\n])*${typeLabel}` + // start with type label (accounted for spaces, but not newline) `(\\s+<<.*>>)?` + // account for stereotype `(\\s+\\{.*\\})?` + // account for tagged value `\\s+${elementPath}` + // element path `[\\s\\n]` ) // account for termination after element path .replace(/\$/g, '\\$'); // replace special character $ by \\$ export class GrammarTextEditorState { editorStore: EditorStore; graphGrammarText = ''; currentElementLabelRegexString?: string | undefined; wrapText = false; error?: EngineError | undefined; constructor(editorStore: EditorStore) { makeAutoObservable(this, { editorStore: false, setError: action, setGraphGrammarText: action, setWrapText: action, resetCurrentElementLabelRegexString: action, setCurrentElementLabelRegexString: action, }); this.editorStore = editorStore; } setError(error: EngineError | undefined): void { this.error = error; } setGraphGrammarText(code: string): void { this.graphGrammarText = code; } setWrapText(val: boolean): void { this.wrapText = val; } resetCurrentElementLabelRegexString(): void { this.currentElementLabelRegexString = undefined; } setCurrentElementLabelRegexString(element: PackageableElement): void { let typeLabel: string | undefined; if (element instanceof Class) { typeLabel = PURE_ELEMENT_NAME.CLASS; } else if (element instanceof Association) { typeLabel = PURE_ELEMENT_NAME.ASSOCIATION; } else if (element instanceof Enumeration) { typeLabel = PURE_ELEMENT_NAME.ENUMERATION; } else if (element instanceof Measure) { typeLabel = PURE_ELEMENT_NAME.MEASURE; } else if (element instanceof Profile) { typeLabel = PURE_ELEMENT_NAME.PROFILE; } else if (element instanceof ConcreteFunctionDefinition) { typeLabel = PURE_ELEMENT_NAME.FUNCTION; } else if (element instanceof FlatData) { typeLabel = PURE_ELEMENT_NAME.FLAT_DATA; } else if (element instanceof Database) { typeLabel = PURE_ELEMENT_NAME.DATABASE; } else if (element instanceof Mapping) { typeLabel = PURE_ELEMENT_NAME.MAPPING; } else if (element instanceof Service) { typeLabel = PURE_ELEMENT_NAME.SERVICE; } else if (element instanceof FileGenerationSpecification) { typeLabel = PURE_ELEMENT_NAME.FILE_GENERATION; } else if (element instanceof GenerationSpecification) { typeLabel = PURE_ELEMENT_NAME.GENERATION_SPECIFICATION; } else if (element instanceof PackageableConnection) { if (element.connectionValue instanceof JsonModelConnection) { typeLabel = PURE_CONNECTION_NAME.JSON_MODEL_CONNECTION; } else if (element.connectionValue instanceof XmlModelConnection) { typeLabel = PURE_CONNECTION_NAME.XML_MODEL_CONNECTION; } else if (element.connectionValue instanceof FlatDataConnection) { typeLabel = PURE_CONNECTION_NAME.FLAT_DATA_CONNECTION; } else if (element.connectionValue instanceof ModelChainConnection) { typeLabel = PURE_CONNECTION_NAME.MODEL_CHAIN_CONNECTION; } else if ( element.connectionValue instanceof RelationalDatabaseConnection ) { typeLabel = PURE_CONNECTION_NAME.RELATIONAL_DATABASE_CONNECTION; } const extraPureGrammarConnectionLabelers = this.editorStore.pluginManager .getPureGraphManagerPlugins() .flatMap( (plugin) => ( plugin as DSLMapping_PureGraphManagerPlugin_Extension ).getExtraPureGrammarConnectionLabelers?.() ?? [], ); for (const labeler of extraPureGrammarConnectionLabelers) { const _typeLabel = labeler(element.connectionValue); if (_typeLabel) { typeLabel = _typeLabel; break; } } } else if (element instanceof PackageableRuntime) { typeLabel = PURE_ELEMENT_NAME.RUNTIME; } else if (element instanceof DataElement) { typeLabel = PURE_ELEMENT_NAME.DATA_ELEMENT; } else { const extraPureGrammarElementLabelers = this.editorStore.pluginManager .getPureGraphManagerPlugins() .flatMap( (plugin) => plugin.getExtraPureGrammarElementLabelers?.() ?? [], ); for (const labeler of extraPureGrammarElementLabelers) { const _typeLabel = labeler(element); if (_typeLabel) { typeLabel = _typeLabel; break; } } } if (!typeLabel) { throw new UnsupportedOperationError( `Can't construct label for element type in Pure grammar: no compatible labeler available from plugins`, element, ); } this.currentElementLabelRegexString = getGrammarElementTypeLabelRegexString( typeLabel, element.path, ); } }