@finos/legend-extension-dsl-data-space 1.1.15 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/studio/DSLDataSpace_CodeSnippets.d.ts +17 -0
- package/lib/components/studio/DSLDataSpace_CodeSnippets.d.ts.map +1 -0
- package/lib/components/studio/DSLDataSpace_CodeSnippets.js +40 -0
- package/lib/components/studio/DSLDataSpace_CodeSnippets.js.map +1 -0
- package/lib/components/studio/DSLDataSpace_LegendStudioDocumentation.d.ts +32 -0
- package/lib/components/studio/DSLDataSpace_LegendStudioDocumentation.d.ts.map +1 -0
- package/lib/components/studio/DSLDataSpace_LegendStudioDocumentation.js +33 -0
- package/lib/components/studio/DSLDataSpace_LegendStudioDocumentation.js.map +1 -0
- package/lib/components/studio/DSLDataSpace_LegendStudioPlugin.d.ts +8 -2
- package/lib/components/studio/DSLDataSpace_LegendStudioPlugin.d.ts.map +1 -1
- package/lib/components/studio/DSLDataSpace_LegendStudioPlugin.js +55 -1
- package/lib/components/studio/DSLDataSpace_LegendStudioPlugin.js.map +1 -1
- package/lib/graphManager/DSLDataSpace_GraphManagerHelper.d.ts +2 -1
- package/lib/graphManager/DSLDataSpace_GraphManagerHelper.d.ts.map +1 -1
- package/lib/graphManager/DSLDataSpace_GraphManagerHelper.js +2 -0
- package/lib/graphManager/DSLDataSpace_GraphManagerHelper.js.map +1 -1
- package/lib/graphManager/DSLDataSpace_PureGraphManagerPlugin.d.ts +2 -0
- package/lib/graphManager/DSLDataSpace_PureGraphManagerPlugin.d.ts.map +1 -1
- package/lib/graphManager/DSLDataSpace_PureGraphManagerPlugin.js +2 -2
- package/lib/graphManager/DSLDataSpace_PureGraphManagerPlugin.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.d.ts +1 -1
- package/lib/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.d.ts.map +1 -1
- package/lib/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.js +7 -7
- package/lib/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.js.map +1 -1
- package/lib/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.d.ts.map +1 -1
- package/lib/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.js +18 -3
- package/lib/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.js.map +1 -1
- package/lib/package.json +10 -11
- package/package.json +20 -21
- package/src/components/studio/DSLDataSpace_CodeSnippets.ts +40 -0
- package/src/components/studio/DSLDataSpace_LegendStudioDocumentation.ts +33 -0
- package/src/components/studio/DSLDataSpace_LegendStudioPlugin.tsx +94 -1
- package/src/graphManager/DSLDataSpace_GraphManagerHelper.ts +8 -1
- package/src/graphManager/DSLDataSpace_PureGraphManagerPlugin.ts +2 -2
- package/src/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.ts +8 -6
- package/src/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.ts +21 -15
- package/tsconfig.json +2 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export declare const SIMPLE_DATA_SPACE_SNIPPET = "DataSpace ${1:model::NewDataSpace}\n{\n groupId: '${2:test.group}';\n artifactId: '${3:test-data-space}';\n versionId: '${4:1.0.0}';\n executionContexts:\n [\n {\n name: '${5:Some Context}';\n description: 'some information about the execution context';\n mapping: ${6:model::SomeMapping};\n defaultRuntime: ${7:model::SomeRuntime};\n }\n ];\n defaultExecutionContext: '${5:Some Context}';\n // description: 'description of the data models';\n // featuredDiagrams:\n // [\n // model::SomeDiagram\n // ];\n // supportInfo: Email {\n // address: 'someEmail@test.org';\n // };\n}";
|
|
17
|
+
//# sourceMappingURL=DSLDataSpace_CodeSnippets.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_CodeSnippets.d.ts","sourceRoot":"","sources":["../../../src/components/studio/DSLDataSpace_CodeSnippets.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,eAAO,MAAM,yBAAyB,knBAuBpC,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export const SIMPLE_DATA_SPACE_SNIPPET = `DataSpace \${1:model::NewDataSpace}
|
|
17
|
+
{
|
|
18
|
+
groupId: '\${2:test.group}';
|
|
19
|
+
artifactId: '\${3:test-data-space}';
|
|
20
|
+
versionId: '\${4:1.0.0}';
|
|
21
|
+
executionContexts:
|
|
22
|
+
[
|
|
23
|
+
{
|
|
24
|
+
name: '\${5:Some Context}';
|
|
25
|
+
description: 'some information about the execution context';
|
|
26
|
+
mapping: \${6:model::SomeMapping};
|
|
27
|
+
defaultRuntime: \${7:model::SomeRuntime};
|
|
28
|
+
}
|
|
29
|
+
];
|
|
30
|
+
defaultExecutionContext: '\${5:Some Context}';
|
|
31
|
+
// description: 'description of the data models';
|
|
32
|
+
// featuredDiagrams:
|
|
33
|
+
// [
|
|
34
|
+
// model::SomeDiagram
|
|
35
|
+
// ];
|
|
36
|
+
// supportInfo: Email {
|
|
37
|
+
// address: 'someEmail@test.org';
|
|
38
|
+
// };
|
|
39
|
+
}`;
|
|
40
|
+
//# sourceMappingURL=DSLDataSpace_CodeSnippets.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_CodeSnippets.js","sourceRoot":"","sources":["../../../src/components/studio/DSLDataSpace_CodeSnippets.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,MAAM,CAAC,MAAM,yBAAyB,GAAG;;;;;;;;;;;;;;;;;;;;;;;EAuBvC,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export declare enum DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY {
|
|
17
|
+
GRAMMAR_PARSER = "dsl-dataspace__grammar-parser",
|
|
18
|
+
GRAMMAR_DATA_SPACE_ELEMENT = "dsl-dataspace__grammar-data-space-element"
|
|
19
|
+
}
|
|
20
|
+
export declare const DSL_DATA_SPACE_DOCUMENTATION_ENTRIES: {
|
|
21
|
+
"dsl-dataspace__grammar-parser": {
|
|
22
|
+
markdownText: {
|
|
23
|
+
value: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
"dsl-dataspace__grammar-data-space-element": {
|
|
27
|
+
markdownText: {
|
|
28
|
+
value: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=DSLDataSpace_LegendStudioDocumentation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_LegendStudioDocumentation.d.ts","sourceRoot":"","sources":["../../../src/components/studio/DSLDataSpace_LegendStudioDocumentation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,oBAAY,8CAA8C;IACxD,cAAc,kCAAkC;IAChD,0BAA0B,8CAA8C;CACzE;AAED,eAAO,MAAM,oCAAoC;;;;;;;;;;;CAWhD,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export var DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY;
|
|
17
|
+
(function (DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY) {
|
|
18
|
+
DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY["GRAMMAR_PARSER"] = "dsl-dataspace__grammar-parser";
|
|
19
|
+
DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY["GRAMMAR_DATA_SPACE_ELEMENT"] = "dsl-dataspace__grammar-data-space-element";
|
|
20
|
+
})(DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY || (DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY = {}));
|
|
21
|
+
export const DSL_DATA_SPACE_DOCUMENTATION_ENTRIES = {
|
|
22
|
+
[DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_PARSER]: {
|
|
23
|
+
markdownText: {
|
|
24
|
+
value: `DSL DataSpace (\`###DataSpace\`) concerns with providing information and documentation about the taxonomy of data models`,
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
[DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_DATA_SPACE_ELEMENT]: {
|
|
28
|
+
markdownText: {
|
|
29
|
+
value: `A data-space element specifies a grouping of model diagrams, execution context (mapping, runtime), test data, and so on to help communicate about the _meaning_, _usage_, and relationships of data models and to help users quickly explore and understand the models`,
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
//# sourceMappingURL=DSLDataSpace_LegendStudioDocumentation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_LegendStudioDocumentation.js","sourceRoot":"","sources":["../../../src/components/studio/DSLDataSpace_LegendStudioDocumentation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,MAAM,CAAN,IAAY,8CAGX;AAHD,WAAY,8CAA8C;IACxD,kGAAgD,CAAA;IAChD,0HAAwE,CAAA;AAC1E,CAAC,EAHW,8CAA8C,KAA9C,8CAA8C,QAGzD;AAED,MAAM,CAAC,MAAM,oCAAoC,GAAG;IAClD,CAAC,8CAA8C,CAAC,cAAc,CAAC,EAAE;QAC/D,YAAY,EAAE;YACZ,KAAK,EAAE,0HAA0H;SAClI;KACF;IACD,CAAC,8CAA8C,CAAC,0BAA0B,CAAC,EAAE;QAC3E,YAAY,EAAE;YACZ,KAAK,EAAE,wQAAwQ;SAChR;KACF;CACF,CAAC"}
|
|
@@ -13,15 +13,21 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
import { type NewElementFromStateCreator, type ElementTypeGetter, type ElementProjectExplorerDnDTypeGetter, type ElementIconGetter, type DSL_LegendStudioPlugin_Extension, type ElementEditorStateCreator, LegendStudioPlugin } from '@finos/legend-studio';
|
|
16
|
+
import { type NewElementFromStateCreator, type ElementTypeGetter, type ElementProjectExplorerDnDTypeGetter, type ElementIconGetter, type DSL_LegendStudioPlugin_Extension, type ElementEditorStateCreator, type PureGrammarParserElementDocumentationGetter, type PureGrammarParserDocumentationGetter, type PureGrammarParserKeywordSuggestionGetter, type PureGrammarParserElementSnippetSuggestionsGetter, LegendStudioPlugin } from '@finos/legend-studio';
|
|
17
|
+
import { type LegendApplicationKeyedDocumentationEntry } from '@finos/legend-application';
|
|
17
18
|
export declare class DSLDataSpace_LegendStudioPlugin extends LegendStudioPlugin implements DSL_LegendStudioPlugin_Extension {
|
|
18
19
|
constructor();
|
|
20
|
+
getExtraKeyedDocumentationEntries(): LegendApplicationKeyedDocumentationEntry[];
|
|
19
21
|
getExtraSupportedElementTypes(): string[];
|
|
20
22
|
getExtraElementTypeGetters(): ElementTypeGetter[];
|
|
21
23
|
getExtraElementIconGetters(): ElementIconGetter[];
|
|
22
24
|
getExtraNewElementFromStateCreators(): NewElementFromStateCreator[];
|
|
23
25
|
getExtraElementEditorStateCreators(): ElementEditorStateCreator[];
|
|
24
26
|
getExtraElementProjectExplorerDnDTypeGetters(): ElementProjectExplorerDnDTypeGetter[];
|
|
25
|
-
|
|
27
|
+
getExtraPureGrammarTextEditorDnDTypes(): string[];
|
|
28
|
+
getExtraPureGrammarParserElementDocumentationGetters(): PureGrammarParserElementDocumentationGetter[];
|
|
29
|
+
getExtraPureGrammarParserDocumentationGetters(): PureGrammarParserDocumentationGetter[];
|
|
30
|
+
getExtraPureGrammarParserKeywordSuggestionGetters(): PureGrammarParserKeywordSuggestionGetter[];
|
|
31
|
+
getExtraPureGrammarParserElementSnippetSuggestionsGetters(): PureGrammarParserElementSnippetSuggestionsGetter[];
|
|
26
32
|
}
|
|
27
33
|
//# sourceMappingURL=DSLDataSpace_LegendStudioPlugin.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DSLDataSpace_LegendStudioPlugin.d.ts","sourceRoot":"","sources":["../../../src/components/studio/DSLDataSpace_LegendStudioPlugin.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EACL,KAAK,0BAA0B,EAC/B,KAAK,iBAAiB,EACtB,KAAK,mCAAmC,EACxC,KAAK,iBAAiB,EACtB,KAAK,gCAAgC,EAErC,KAAK,yBAAyB,
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_LegendStudioPlugin.d.ts","sourceRoot":"","sources":["../../../src/components/studio/DSLDataSpace_LegendStudioPlugin.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EACL,KAAK,0BAA0B,EAC/B,KAAK,iBAAiB,EACtB,KAAK,mCAAmC,EACxC,KAAK,iBAAiB,EACtB,KAAK,gCAAgC,EAErC,KAAK,yBAAyB,EAG9B,KAAK,2CAA2C,EAChD,KAAK,oCAAoC,EACzC,KAAK,wCAAwC,EAE7C,KAAK,gDAAgD,EAErD,kBAAkB,EACnB,MAAM,sBAAsB,CAAC;AAQ9B,OAAO,EAGL,KAAK,wCAAwC,EAC9C,MAAM,2BAA2B,CAAC;AAenC,qBAAa,+BACX,SAAQ,kBACR,YAAW,gCAAgC;;IAMlC,iCAAiC,IAAI,wCAAwC,EAAE;IAMxF,6BAA6B,IAAI,MAAM,EAAE;IAIzC,0BAA0B,IAAI,iBAAiB,EAAE;IAWjD,0BAA0B,IAAI,iBAAiB,EAAE;IAejD,mCAAmC,IAAI,0BAA0B,EAAE;IA2BnE,kCAAkC,IAAI,yBAAyB,EAAE;IAcjE,4CAA4C,IAAI,mCAAmC,EAAE;IAWrF,qCAAqC,IAAI,MAAM,EAAE;IAIjD,oDAAoD,IAAI,2CAA2C,EAAE;IAmBrG,6CAA6C,IAAI,oCAAoC,EAAE;IAgBvF,iDAAiD,IAAI,wCAAwC,EAAE;IAe/F,yDAAyD,IAAI,gDAAgD,EAAE;CAiBhH"}
|
|
@@ -19,12 +19,19 @@ import { UnsupportedElementEditorState, LegendStudioPlugin, } from '@finos/legen
|
|
|
19
19
|
import { SquareIcon } from '@finos/legend-art';
|
|
20
20
|
import { DataSpace, DataSpaceExecutionContext, } from '../../models/metamodels/pure/model/packageableElements/dataSpace/DSLDataSpace_DataSpace';
|
|
21
21
|
import { LATEST_VERSION_ALIAS } from '@finos/legend-server-depot';
|
|
22
|
+
import { collectKeyedDocumnetationEntriesFromConfig, } from '@finos/legend-application';
|
|
23
|
+
import { DSL_DATA_SPACE_DOCUMENTATION_ENTRIES, DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY, } from './DSLDataSpace_LegendStudioDocumentation';
|
|
24
|
+
import { PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL, PURE_GRAMMAR_DATA_SPACE_PARSER_NAME, } from '../../graphManager/DSLDataSpace_PureGraphManagerPlugin';
|
|
25
|
+
import { SIMPLE_DATA_SPACE_SNIPPET } from './DSLDataSpace_CodeSnippets';
|
|
22
26
|
const DATA_SPACE_ELEMENT_TYPE = 'DATA SPACE';
|
|
23
27
|
const DATA_SPACE_ELEMENT_PROJECT_EXPLORER_DND_TYPE = 'PROJECT_EXPLORER_DATA_SPACE';
|
|
24
28
|
export class DSLDataSpace_LegendStudioPlugin extends LegendStudioPlugin {
|
|
25
29
|
constructor() {
|
|
26
30
|
super(packageJson.extensions.studioPlugin, packageJson.version);
|
|
27
31
|
}
|
|
32
|
+
getExtraKeyedDocumentationEntries() {
|
|
33
|
+
return collectKeyedDocumnetationEntriesFromConfig(DSL_DATA_SPACE_DOCUMENTATION_ENTRIES);
|
|
34
|
+
}
|
|
28
35
|
getExtraSupportedElementTypes() {
|
|
29
36
|
return [DATA_SPACE_ELEMENT_TYPE];
|
|
30
37
|
}
|
|
@@ -90,8 +97,55 @@ export class DSLDataSpace_LegendStudioPlugin extends LegendStudioPlugin {
|
|
|
90
97
|
},
|
|
91
98
|
];
|
|
92
99
|
}
|
|
93
|
-
|
|
100
|
+
getExtraPureGrammarTextEditorDnDTypes() {
|
|
94
101
|
return [DATA_SPACE_ELEMENT_PROJECT_EXPLORER_DND_TYPE];
|
|
95
102
|
}
|
|
103
|
+
getExtraPureGrammarParserElementDocumentationGetters() {
|
|
104
|
+
return [
|
|
105
|
+
(editorStore, parserKeyword, elementKeyword) => {
|
|
106
|
+
if (parserKeyword === PURE_GRAMMAR_DATA_SPACE_PARSER_NAME) {
|
|
107
|
+
if (elementKeyword === PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL) {
|
|
108
|
+
return editorStore.applicationStore.docRegistry.getEntry(DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_DATA_SPACE_ELEMENT);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
return undefined;
|
|
112
|
+
},
|
|
113
|
+
];
|
|
114
|
+
}
|
|
115
|
+
getExtraPureGrammarParserDocumentationGetters() {
|
|
116
|
+
return [
|
|
117
|
+
(editorStore, parserKeyword) => {
|
|
118
|
+
if (parserKeyword === PURE_GRAMMAR_DATA_SPACE_PARSER_NAME) {
|
|
119
|
+
return editorStore.applicationStore.docRegistry.getEntry(DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_PARSER);
|
|
120
|
+
}
|
|
121
|
+
return undefined;
|
|
122
|
+
},
|
|
123
|
+
];
|
|
124
|
+
}
|
|
125
|
+
getExtraPureGrammarParserKeywordSuggestionGetters() {
|
|
126
|
+
return [
|
|
127
|
+
(editorStore) => [
|
|
128
|
+
{
|
|
129
|
+
text: PURE_GRAMMAR_DATA_SPACE_PARSER_NAME,
|
|
130
|
+
description: `(dsl)`,
|
|
131
|
+
documentation: editorStore.applicationStore.docRegistry.getEntry(DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_PARSER),
|
|
132
|
+
insertText: PURE_GRAMMAR_DATA_SPACE_PARSER_NAME,
|
|
133
|
+
},
|
|
134
|
+
],
|
|
135
|
+
];
|
|
136
|
+
}
|
|
137
|
+
getExtraPureGrammarParserElementSnippetSuggestionsGetters() {
|
|
138
|
+
return [
|
|
139
|
+
(editorStore, parserKeyword) => parserKeyword === PURE_GRAMMAR_DATA_SPACE_PARSER_NAME
|
|
140
|
+
? [
|
|
141
|
+
{
|
|
142
|
+
text: PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL,
|
|
143
|
+
description: 'simple',
|
|
144
|
+
insertText: SIMPLE_DATA_SPACE_SNIPPET,
|
|
145
|
+
},
|
|
146
|
+
]
|
|
147
|
+
: undefined,
|
|
148
|
+
];
|
|
149
|
+
}
|
|
96
150
|
}
|
|
97
151
|
//# sourceMappingURL=DSLDataSpace_LegendStudioPlugin.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DSLDataSpace_LegendStudioPlugin.js","sourceRoot":"","sources":["../../../src/components/studio/DSLDataSpace_LegendStudioPlugin.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,WAAW,MAAM,uBAAuB,CAAC;AAChD,OAAO,
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_LegendStudioPlugin.js","sourceRoot":"","sources":["../../../src/components/studio/DSLDataSpace_LegendStudioPlugin.tsx"],"names":[],"mappings":"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"}
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
import type { PureModel } from '@finos/legend-graph';
|
|
16
|
+
import type { BasicModel, PureModel } from '@finos/legend-graph';
|
|
17
17
|
import { DataSpace } from '../models/metamodels/pure/model/packageableElements/dataSpace/DSLDataSpace_DataSpace';
|
|
18
18
|
export declare const getDataSpace: (path: string, graph: PureModel) => DataSpace;
|
|
19
|
+
export declare const getOwnDataSpace: (path: string, graph: BasicModel) => DataSpace;
|
|
19
20
|
//# sourceMappingURL=DSLDataSpace_GraphManagerHelper.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DSLDataSpace_GraphManagerHelper.d.ts","sourceRoot":"","sources":["../../src/graphManager/DSLDataSpace_GraphManagerHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_GraphManagerHelper.d.ts","sourceRoot":"","sources":["../../src/graphManager/DSLDataSpace_GraphManagerHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,EAAE,SAAS,EAAE,MAAM,sFAAsF,CAAC;AAEjH,eAAO,MAAM,YAAY,SAAU,MAAM,SAAS,SAAS,KAAG,SACiB,CAAC;AAEhF,eAAO,MAAM,eAAe,SAAU,MAAM,SAAS,UAAU,KAAG,SAI/D,CAAC"}
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
+
import { guaranteeNonNullable } from '@finos/legend-shared';
|
|
16
17
|
import { DataSpace } from '../models/metamodels/pure/model/packageableElements/dataSpace/DSLDataSpace_DataSpace';
|
|
17
18
|
export const getDataSpace = (path, graph) => graph.getExtensionElement(path, DataSpace, `Can't find data space '${path}'`);
|
|
19
|
+
export const getOwnDataSpace = (path, graph) => guaranteeNonNullable(graph.getOwnNullableExtensionElement(path, DataSpace), `Can't find data space '${path}'`);
|
|
18
20
|
//# sourceMappingURL=DSLDataSpace_GraphManagerHelper.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DSLDataSpace_GraphManagerHelper.js","sourceRoot":"","sources":["../../src/graphManager/DSLDataSpace_GraphManagerHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EAAE,SAAS,EAAE,MAAM,sFAAsF,CAAC;AAEjH,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,IAAY,EAAE,KAAgB,EAAa,EAAE,CACxE,KAAK,CAAC,mBAAmB,CAAC,IAAI,EAAE,SAAS,EAAE,0BAA0B,IAAI,GAAG,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_GraphManagerHelper.js","sourceRoot":"","sources":["../../src/graphManager/DSLDataSpace_GraphManagerHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,SAAS,EAAE,MAAM,sFAAsF,CAAC;AAEjH,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,IAAY,EAAE,KAAgB,EAAa,EAAE,CACxE,KAAK,CAAC,mBAAmB,CAAC,IAAI,EAAE,SAAS,EAAE,0BAA0B,IAAI,GAAG,CAAC,CAAC;AAEhF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,IAAY,EAAE,KAAiB,EAAa,EAAE,CAC5E,oBAAoB,CAClB,KAAK,CAAC,8BAA8B,CAAC,IAAI,EAAE,SAAS,CAAC,EACrD,0BAA0B,IAAI,GAAG,CAClC,CAAC"}
|
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
import { PureGraphManagerPlugin, type ElementObserver, type PureGrammarElementLabeler } from '@finos/legend-graph';
|
|
17
|
+
export declare const PURE_GRAMMAR_DATA_SPACE_PARSER_NAME = "DataSpace";
|
|
18
|
+
export declare const PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL = "DataSpace";
|
|
17
19
|
export declare class DSLDataSpace_PureGraphManagerPlugin extends PureGraphManagerPlugin {
|
|
18
20
|
constructor();
|
|
19
21
|
getExtraPureGrammarParserNames(): string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DSLDataSpace_PureGraphManagerPlugin.d.ts","sourceRoot":"","sources":["../../src/graphManager/DSLDataSpace_PureGraphManagerPlugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAIH,OAAO,EACL,sBAAsB,EAEtB,KAAK,eAAe,EAEpB,KAAK,yBAAyB,EAC/B,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_PureGraphManagerPlugin.d.ts","sourceRoot":"","sources":["../../src/graphManager/DSLDataSpace_PureGraphManagerPlugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAIH,OAAO,EACL,sBAAsB,EAEtB,KAAK,eAAe,EAEpB,KAAK,yBAAyB,EAC/B,MAAM,qBAAqB,CAAC;AAG7B,eAAO,MAAM,mCAAmC,cAAc,CAAC;AAC/D,eAAO,MAAM,0CAA0C,cAAc,CAAC;AAEtE,qBAAa,mCAAoC,SAAQ,sBAAsB;;IAKpE,8BAA8B,IAAI,MAAM,EAAE;IAI1C,2BAA2B,IAAI,MAAM,EAAE;IAIvC,kCAAkC,IAAI,yBAAyB,EAAE;IAWjE,wBAAwB,IAAI,eAAe,EAAE;CAavD"}
|
|
@@ -17,8 +17,8 @@ import packageJson from '../../package.json';
|
|
|
17
17
|
import { DataSpace } from '../models/metamodels/pure/model/packageableElements/dataSpace/DSLDataSpace_DataSpace';
|
|
18
18
|
import { PureGraphManagerPlugin, } from '@finos/legend-graph';
|
|
19
19
|
import { observe_DataSpace } from './action/changeDetection/DSLDataSpace_ObserverHelper';
|
|
20
|
-
const PURE_GRAMMAR_DATA_SPACE_PARSER_NAME = 'DataSpace';
|
|
21
|
-
const PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL = 'DataSpace';
|
|
20
|
+
export const PURE_GRAMMAR_DATA_SPACE_PARSER_NAME = 'DataSpace';
|
|
21
|
+
export const PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL = 'DataSpace';
|
|
22
22
|
export class DSLDataSpace_PureGraphManagerPlugin extends PureGraphManagerPlugin {
|
|
23
23
|
constructor() {
|
|
24
24
|
super(packageJson.extensions.pureGraphManagerPlugin, packageJson.version);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DSLDataSpace_PureGraphManagerPlugin.js","sourceRoot":"","sources":["../../src/graphManager/DSLDataSpace_PureGraphManagerPlugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,WAAW,MAAM,oBAAoB,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,sFAAsF,CAAC;AACjH,OAAO,EACL,sBAAsB,GAKvB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,iBAAiB,EAAE,MAAM,sDAAsD,CAAC;AAEzF,MAAM,mCAAmC,GAAG,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_PureGraphManagerPlugin.js","sourceRoot":"","sources":["../../src/graphManager/DSLDataSpace_PureGraphManagerPlugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,WAAW,MAAM,oBAAoB,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,sFAAsF,CAAC;AACjH,OAAO,EACL,sBAAsB,GAKvB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,iBAAiB,EAAE,MAAM,sDAAsD,CAAC;AAEzF,MAAM,CAAC,MAAM,mCAAmC,GAAG,WAAW,CAAC;AAC/D,MAAM,CAAC,MAAM,0CAA0C,GAAG,WAAW,CAAC;AAEtE,MAAM,OAAO,mCAAoC,SAAQ,sBAAsB;IAC7E;QACE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,sBAAsB,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;IAC5E,CAAC;IAEQ,8BAA8B;QACrC,OAAO,CAAC,mCAAmC,CAAC,CAAC;IAC/C,CAAC;IAEQ,2BAA2B;QAClC,OAAO,CAAC,0CAA0C,CAAC,CAAC;IACtD,CAAC;IAEQ,kCAAkC;QACzC,OAAO;YACL,CAAC,OAA2B,EAAsB,EAAE;gBAClD,IAAI,OAAO,YAAY,SAAS,EAAE;oBAChC,OAAO,0CAA0C,CAAC;iBACnD;gBACD,OAAO,SAAS,CAAC;YACnB,CAAC;SACF,CAAC;IACJ,CAAC;IAEQ,wBAAwB;QAC/B,OAAO;YACL,CACE,OAA2B,EAC3B,OAAwB,EACQ,EAAE;gBAClC,IAAI,OAAO,YAAY,SAAS,EAAE;oBAChC,OAAO,iBAAiB,CAAC,OAAO,CAAC,CAAC;iBACnC;gBACD,OAAO,SAAS,CAAC;YACnB,CAAC;SACF,CAAC;IACJ,CAAC;CACF"}
|
package/lib/index.css
CHANGED
|
@@ -17,7 +17,7 @@ import { V1_DataSpace } from './v1/model/packageableElements/dataSpace/V1_DSLDat
|
|
|
17
17
|
import { type PlainObject } from '@finos/legend-shared';
|
|
18
18
|
import { type DataSpaceSupportInfo } from '../../metamodels/pure/model/packageableElements/dataSpace/DSLDataSpace_DataSpace';
|
|
19
19
|
import { type Mapping, type PackageableElementReference, type PackageableRuntime, type PureModel, type V1_ElementProtocolClassifierPathGetter, type V1_ElementProtocolDeserializer, type V1_ElementProtocolSerializer, type V1_ElementTransformer, type V1_PackageableElement, type V1_PureModelContextData, PureProtocolProcessorPlugin, V1_ElementBuilder } from '@finos/legend-graph';
|
|
20
|
-
import { Diagram } from '@finos/legend-extension-dsl-diagram';
|
|
20
|
+
import { type Diagram } from '@finos/legend-extension-dsl-diagram';
|
|
21
21
|
export declare const DATA_SPACE_ELEMENT_CLASSIFIER_PATH = "meta::pure::metamodel::dataSpace::DataSpace";
|
|
22
22
|
export declare class DSLDataSpace_PureProtocolProcessorPlugin extends PureProtocolProcessorPlugin {
|
|
23
23
|
constructor();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DSLDataSpace_PureProtocolProcessorPlugin.d.ts","sourceRoot":"","sources":["../../../../src/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAIH,OAAO,EACL,YAAY,EAGb,MAAM,oEAAoE,CAAC;AAC5E,OAAO,EACL,KAAK,WAAW,EAOjB,MAAM,sBAAsB,CAAC;AAO9B,OAAO,EACL,KAAK,oBAAoB,EAI1B,MAAM,kFAAkF,CAAC;AAC1F,OAAO,EACL,KAAK,OAAO,EAEZ,KAAK,2BAA2B,EAChC,KAAK,kBAAkB,EACvB,KAAK,SAAS,EACd,KAAK,sCAAsC,EAC3C,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,qBAAqB,EAG1B,KAAK,qBAAqB,EAC1B,KAAK,uBAAuB,EAS5B,2BAA2B,EAC3B,iBAAiB,
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_PureProtocolProcessorPlugin.d.ts","sourceRoot":"","sources":["../../../../src/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAIH,OAAO,EACL,YAAY,EAGb,MAAM,oEAAoE,CAAC;AAC5E,OAAO,EACL,KAAK,WAAW,EAOjB,MAAM,sBAAsB,CAAC;AAO9B,OAAO,EACL,KAAK,oBAAoB,EAI1B,MAAM,kFAAkF,CAAC;AAC1F,OAAO,EACL,KAAK,OAAO,EAEZ,KAAK,2BAA2B,EAChC,KAAK,kBAAkB,EACvB,KAAK,SAAS,EACd,KAAK,sCAAsC,EAC3C,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,qBAAqB,EAG1B,KAAK,qBAAqB,EAC1B,KAAK,uBAAuB,EAS5B,2BAA2B,EAC3B,iBAAiB,EAIlB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,KAAK,OAAO,EAGb,MAAM,qCAAqC,CAAC;AAE7C,eAAO,MAAM,kCAAkC,gDACA,CAAC;AAEhD,qBAAa,wCAAyC,SAAQ,2BAA2B;;IAQ9E,0BAA0B,IAAI,iBAAiB,CAAC,qBAAqB,CAAC,EAAE;IA6GxE,uBAAuB,IAAI,WAAW,CAAC,uBAAuB,CAAC,EAAE;IAIjE,uCAAuC,IAAI,sCAAsC,EAAE;IAWnF,qCAAqC,IAAI,4BAA4B,EAAE;IAcvE,uCAAuC,IAAI,8BAA8B,EAAE;IAc3E,8BAA8B,IAAI,qBAAqB,EAAE;CA+DnE;AAED,qBAAa,iCAAiC;IAC5C,IAAI,EAAG,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,OAAO,EAAG,2BAA2B,CAAC,OAAO,CAAC,CAAC;IAC/C,cAAc,EAAG,2BAA2B,CAAC,kBAAkB,CAAC,CAAC;CAClE;AAED;;;GAGG;AACH,qBAAa,iBAAiB;IAC5B,YAAY,EAAE;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,GAAG,EAAE,MAAM,CAAC;QACZ,KAAK,EAAE,MAAM,CAAC;KACf,EAAE,CAAM;IACT,WAAW,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE,EAAE,CAAM;IAC1E,IAAI,EAAG,MAAM,CAAC;IACd,OAAO,EAAG,MAAM,CAAC;IACjB,UAAU,EAAG,MAAM,CAAC;IACpB,SAAS,EAAG,MAAM,CAAC;IACnB,iBAAiB,EAAE,iCAAiC,EAAE,CAAM;IAC5D,uBAAuB,EAAG,iCAAiC,CAAC;IAC5D,gBAAgB,EAAE,2BAA2B,CAAC,OAAO,CAAC,EAAE,CAAM;IAC9D,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,WAAW,CAAC,EAAE,oBAAoB,GAAG,SAAS,CAAC;CAChD;AAED,eAAO,MAAM,oBAAoB,SACzB,YAAY,YAAY,CAAC,SACxB,SAAS,KACf,iBAkGF,CAAC;AAEF,eAAO,MAAM,6BAA6B,SAClC,YAAY,YAAY,CAAC,KAC9B,MAAM,EA6BR,CAAC"}
|
|
@@ -19,10 +19,10 @@ import { V1_DataSpace, V1_DataSpaceExecutionContext, V1_DataSpaceSupportEmail, }
|
|
|
19
19
|
import { uuid, guaranteeNonEmptyString, guaranteeNonNullable, UnsupportedOperationError, isNonNullable, assertType, } from '@finos/legend-shared';
|
|
20
20
|
import { deserialize, serialize } from 'serializr';
|
|
21
21
|
import { V1_dataSpaceModelSchema, V1_DATA_SPACE_ELEMENT_PROTOCOL_TYPE, } from './v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper';
|
|
22
|
-
import {
|
|
22
|
+
import { getOwnDataSpace } from '../../../graphManager/DSLDataSpace_GraphManagerHelper';
|
|
23
23
|
import { DataSpace, DataSpaceExecutionContext, DataSpaceSupportEmail, } from '../../metamodels/pure/model/packageableElements/dataSpace/DSLDataSpace_DataSpace';
|
|
24
|
-
import { V1_taggedValueSchema, PackageableElementExplicitReference, V1_PackageableElementPointer, V1_PackageableElementPointerType, V1_buildTaggedValue, V1_transformStereotype, V1_transformTaggedValue, PureProtocolProcessorPlugin, V1_ElementBuilder, V1_initPackageableElement, V1_StereotypePtr, } from '@finos/legend-graph';
|
|
25
|
-
import {
|
|
24
|
+
import { V1_taggedValueSchema, PackageableElementExplicitReference, V1_PackageableElementPointer, V1_PackageableElementPointerType, V1_buildTaggedValue, V1_transformStereotype, V1_transformTaggedValue, PureProtocolProcessorPlugin, V1_ElementBuilder, V1_initPackageableElement, V1_StereotypePtr, V1_buildFullPath, } from '@finos/legend-graph';
|
|
25
|
+
import { V1_DSLDiagram_PackageableElementPointerType, getDiagram, } from '@finos/legend-extension-dsl-diagram';
|
|
26
26
|
export const DATA_SPACE_ELEMENT_CLASSIFIER_PATH = 'meta::pure::metamodel::dataSpace::DataSpace';
|
|
27
27
|
export class DSLDataSpace_PureProtocolProcessorPlugin extends PureProtocolProcessorPlugin {
|
|
28
28
|
constructor() {
|
|
@@ -36,14 +36,14 @@ export class DSLDataSpace_PureProtocolProcessorPlugin extends PureProtocolProces
|
|
|
36
36
|
firstPass: (elementProtocol, context) => {
|
|
37
37
|
assertType(elementProtocol, V1_DataSpace);
|
|
38
38
|
const element = new DataSpace(elementProtocol.name);
|
|
39
|
-
const path =
|
|
39
|
+
const path = V1_buildFullPath(elementProtocol.package, elementProtocol.name);
|
|
40
40
|
context.currentSubGraph.setOwnElementInExtension(path, element, DataSpace);
|
|
41
41
|
return element;
|
|
42
42
|
},
|
|
43
43
|
secondPass: (elementProtocol, context) => {
|
|
44
44
|
assertType(elementProtocol, V1_DataSpace);
|
|
45
|
-
const path =
|
|
46
|
-
const element =
|
|
45
|
+
const path = V1_buildFullPath(elementProtocol.package, elementProtocol.name);
|
|
46
|
+
const element = getOwnDataSpace(path, context.currentSubGraph);
|
|
47
47
|
element.stereotypes = elementProtocol.stereotypes
|
|
48
48
|
.map((stereotype) => context.resolveStereotype(stereotype))
|
|
49
49
|
.filter(isNonNullable);
|
|
@@ -217,7 +217,7 @@ export const getResolvedDataSpace = (json, graph) => {
|
|
|
217
217
|
guaranteeNonEmptyString(protocol.defaultExecutionContext, `Data space 'defaultExecutionContext' field is missing or empty`)), `Can't find default execution context '${protocol.defaultExecutionContext}'`);
|
|
218
218
|
dataSpace.description = protocol.description;
|
|
219
219
|
if (protocol.featuredDiagrams) {
|
|
220
|
-
dataSpace.featuredDiagrams = protocol.featuredDiagrams.map((pointer) => PackageableElementExplicitReference.create(
|
|
220
|
+
dataSpace.featuredDiagrams = protocol.featuredDiagrams.map((pointer) => PackageableElementExplicitReference.create(getDiagram(pointer.path, graph)));
|
|
221
221
|
}
|
|
222
222
|
if (protocol.supportInfo) {
|
|
223
223
|
if (protocol.supportInfo instanceof V1_DataSpaceSupportEmail) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DSLDataSpace_PureProtocolProcessorPlugin.js","sourceRoot":"","sources":["../../../../src/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,WAAW,MAAM,0BAA0B,CAAC;AACnD,OAAO,gBAAgB,MAAM,wCAAwC,CAAC;AACtE,OAAO,EACL,YAAY,EACZ,4BAA4B,EAC5B,wBAAwB,GACzB,MAAM,oEAAoE,CAAC;AAC5E,OAAO,EAEL,IAAI,EACJ,uBAAuB,EACvB,oBAAoB,EACpB,yBAAyB,EACzB,aAAa,EACb,UAAU,GACX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACnD,OAAO,EACL,uBAAuB,EACvB,mCAAmC,GACpC,MAAM,iEAAiE,CAAC;AACzE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"DSLDataSpace_PureProtocolProcessorPlugin.js","sourceRoot":"","sources":["../../../../src/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"V1_DSLDataSpace_ProtocolHelper.d.ts","sourceRoot":"","sources":["../../../../../../../src/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;
|
|
1
|
+
{"version":3,"file":"V1_DSLDataSpace_ProtocolHelper.d.ts","sourceRoot":"","sources":["../../../../../../../src/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AA0BH,OAAO,EAEL,YAAY,EAGb,MAAM,qEAAqE,CAAC;AAE7E,eAAO,MAAM,mCAAmC,cAAc,CAAC;AAC/D,eAAO,MAAM,gCAAgC,UAAU,CAAC;AAgDxD,eAAO,MAAM,uBAAuB,+CAiElC,CAAC"}
|
package/lib/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.js
CHANGED
|
@@ -56,13 +56,28 @@ export const V1_dataSpaceModelSchema = createModelSchema(V1_DataSpace, {
|
|
|
56
56
|
defaultExecutionContext: primitive(),
|
|
57
57
|
description: optional(primitive()),
|
|
58
58
|
executionContexts: list(object(V1_dataSpaceExecutionContextModelSchema)),
|
|
59
|
-
featuredDiagrams: custom((values) => serializeArray(values, (value) => serialize(V1_packageableElementPointerDeserializerSchema, value),
|
|
59
|
+
featuredDiagrams: custom((values) => serializeArray(values, (value) => serialize(V1_packageableElementPointerDeserializerSchema, value), {
|
|
60
|
+
skipIfEmpty: true,
|
|
61
|
+
INTERNAL__forceReturnEmptyInTest: true,
|
|
62
|
+
}), (values) => deserializeArray(values, (value) => deserialize(V1_packageableElementPointerDeserializerSchema, value), {
|
|
63
|
+
skipIfEmpty: false,
|
|
64
|
+
})),
|
|
60
65
|
groupId: primitive(),
|
|
61
66
|
name: primitive(),
|
|
62
67
|
package: primitive(),
|
|
63
|
-
stereotypes: custom((values) => serializeArray(values, (value) => serialize(V1_stereotypePtrSchema, value),
|
|
68
|
+
stereotypes: custom((values) => serializeArray(values, (value) => serialize(V1_stereotypePtrSchema, value), {
|
|
69
|
+
skipIfEmpty: true,
|
|
70
|
+
INTERNAL__forceReturnEmptyInTest: true,
|
|
71
|
+
}), (values) => deserializeArray(values, (v) => deserialize(V1_stereotypePtrSchema, v), {
|
|
72
|
+
skipIfEmpty: false,
|
|
73
|
+
})),
|
|
64
74
|
supportInfo: custom((val) => V1_serializeSupportInfo(val), (val) => V1_deserializeSupportInfo(val)),
|
|
65
|
-
taggedValues: custom((values) => serializeArray(values, (value) => serialize(V1_taggedValueSchema, value),
|
|
75
|
+
taggedValues: custom((values) => serializeArray(values, (value) => serialize(V1_taggedValueSchema, value), {
|
|
76
|
+
skipIfEmpty: true,
|
|
77
|
+
INTERNAL__forceReturnEmptyInTest: true,
|
|
78
|
+
}), (values) => deserializeArray(values, (v) => deserialize(V1_taggedValueSchema, v), {
|
|
79
|
+
skipIfEmpty: false,
|
|
80
|
+
})),
|
|
66
81
|
versionId: primitive(),
|
|
67
82
|
});
|
|
68
83
|
//# sourceMappingURL=V1_DSLDataSpace_ProtocolHelper.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"V1_DSLDataSpace_ProtocolHelper.js","sourceRoot":"","sources":["../../../../../../../src/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,iBAAiB,EACjB,MAAM,EACN,WAAW,EACX,IAAI,EACJ,MAAM,EACN,QAAQ,EACR,SAAS,EACT,SAAS,EACT,IAAI,GACL,MAAM,WAAW,CAAC;AACnB,OAAO,
|
|
1
|
+
{"version":3,"file":"V1_DSLDataSpace_ProtocolHelper.js","sourceRoot":"","sources":["../../../../../../../src/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.ts"],"names":[],"mappings":"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"}
|
package/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finos/legend-extension-dsl-data-space",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Legend extension for Data Space DSL",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"legend",
|
|
@@ -20,7 +20,10 @@
|
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"sideEffects": false,
|
|
22
22
|
"type": "module",
|
|
23
|
-
"
|
|
23
|
+
"exports": {
|
|
24
|
+
".": "./lib/index.js",
|
|
25
|
+
"./lib/index.css": "./lib/index.css"
|
|
26
|
+
},
|
|
24
27
|
"module": "lib/index.js",
|
|
25
28
|
"types": "lib/index.d.ts",
|
|
26
29
|
"scripts": {
|
|
@@ -49,27 +52,23 @@
|
|
|
49
52
|
"@finos/legend-server-depot": "workspace:*",
|
|
50
53
|
"@finos/legend-shared": "workspace:*",
|
|
51
54
|
"@finos/legend-studio": "workspace:*",
|
|
52
|
-
"@types/react": "17.0.
|
|
53
|
-
"@types/react-router-dom": "5.3.2",
|
|
55
|
+
"@types/react": "17.0.44",
|
|
54
56
|
"mobx": "6.5.0",
|
|
55
57
|
"mobx-react-lite": "3.3.0",
|
|
56
|
-
"monaco-editor": "0.33.0",
|
|
57
58
|
"react": "17.0.2",
|
|
58
59
|
"react-dom": "17.0.2",
|
|
59
60
|
"react-resize-detector": "7.0.0",
|
|
60
|
-
"react-router": "5.2.1",
|
|
61
|
-
"react-router-dom": "5.3.0",
|
|
62
61
|
"serializr": "2.0.5"
|
|
63
62
|
},
|
|
64
63
|
"devDependencies": {
|
|
65
64
|
"@finos/legend-dev-utils": "workspace:*",
|
|
66
65
|
"cross-env": "7.0.3",
|
|
67
|
-
"eslint": "8.
|
|
68
|
-
"jest": "
|
|
66
|
+
"eslint": "8.14.0",
|
|
67
|
+
"jest": "28.0.3",
|
|
69
68
|
"npm-run-all": "4.1.5",
|
|
70
69
|
"rimraf": "3.0.2",
|
|
71
|
-
"sass": "1.
|
|
72
|
-
"typescript": "4.6.
|
|
70
|
+
"sass": "1.51.0",
|
|
71
|
+
"typescript": "4.6.4"
|
|
73
72
|
},
|
|
74
73
|
"peerDependencies": {
|
|
75
74
|
"react": "^17.0.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finos/legend-extension-dsl-data-space",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Legend extension for Data Space DSL",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"legend",
|
|
@@ -20,7 +20,10 @@
|
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"sideEffects": false,
|
|
22
22
|
"type": "module",
|
|
23
|
-
"
|
|
23
|
+
"exports": {
|
|
24
|
+
".": "./lib/index.js",
|
|
25
|
+
"./lib/index.css": "./lib/index.css"
|
|
26
|
+
},
|
|
24
27
|
"module": "lib/index.js",
|
|
25
28
|
"types": "lib/index.d.ts",
|
|
26
29
|
"scripts": {
|
|
@@ -40,36 +43,32 @@
|
|
|
40
43
|
"test:watch": "jest --watch"
|
|
41
44
|
},
|
|
42
45
|
"dependencies": {
|
|
43
|
-
"@finos/legend-application": "
|
|
44
|
-
"@finos/legend-art": "0.
|
|
45
|
-
"@finos/legend-extension-dsl-diagram": "
|
|
46
|
-
"@finos/legend-graph": "
|
|
47
|
-
"@finos/legend-model-storage": "0.0
|
|
48
|
-
"@finos/legend-query": "
|
|
49
|
-
"@finos/legend-server-depot": "0.0
|
|
50
|
-
"@finos/legend-shared": "
|
|
51
|
-
"@finos/legend-studio": "
|
|
52
|
-
"@types/react": "17.0.
|
|
53
|
-
"@types/react-router-dom": "5.3.2",
|
|
46
|
+
"@finos/legend-application": "3.0.1",
|
|
47
|
+
"@finos/legend-art": "1.0.0",
|
|
48
|
+
"@finos/legend-extension-dsl-diagram": "2.0.1",
|
|
49
|
+
"@finos/legend-graph": "6.0.1",
|
|
50
|
+
"@finos/legend-model-storage": "1.0.0",
|
|
51
|
+
"@finos/legend-query": "2.0.1",
|
|
52
|
+
"@finos/legend-server-depot": "1.0.0",
|
|
53
|
+
"@finos/legend-shared": "2.0.0",
|
|
54
|
+
"@finos/legend-studio": "9.0.1",
|
|
55
|
+
"@types/react": "17.0.44",
|
|
54
56
|
"mobx": "6.5.0",
|
|
55
57
|
"mobx-react-lite": "3.3.0",
|
|
56
|
-
"monaco-editor": "0.33.0",
|
|
57
58
|
"react": "17.0.2",
|
|
58
59
|
"react-dom": "17.0.2",
|
|
59
60
|
"react-resize-detector": "7.0.0",
|
|
60
|
-
"react-router": "5.2.1",
|
|
61
|
-
"react-router-dom": "5.3.0",
|
|
62
61
|
"serializr": "2.0.5"
|
|
63
62
|
},
|
|
64
63
|
"devDependencies": {
|
|
65
|
-
"@finos/legend-dev-utils": "0.
|
|
64
|
+
"@finos/legend-dev-utils": "1.0.0",
|
|
66
65
|
"cross-env": "7.0.3",
|
|
67
|
-
"eslint": "8.
|
|
68
|
-
"jest": "
|
|
66
|
+
"eslint": "8.14.0",
|
|
67
|
+
"jest": "28.0.3",
|
|
69
68
|
"npm-run-all": "4.1.5",
|
|
70
69
|
"rimraf": "3.0.2",
|
|
71
|
-
"sass": "1.
|
|
72
|
-
"typescript": "4.6.
|
|
70
|
+
"sass": "1.51.0",
|
|
71
|
+
"typescript": "4.6.4"
|
|
73
72
|
},
|
|
74
73
|
"peerDependencies": {
|
|
75
74
|
"react": "^17.0.0"
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
export const SIMPLE_DATA_SPACE_SNIPPET = `DataSpace \${1:model::NewDataSpace}
|
|
18
|
+
{
|
|
19
|
+
groupId: '\${2:test.group}';
|
|
20
|
+
artifactId: '\${3:test-data-space}';
|
|
21
|
+
versionId: '\${4:1.0.0}';
|
|
22
|
+
executionContexts:
|
|
23
|
+
[
|
|
24
|
+
{
|
|
25
|
+
name: '\${5:Some Context}';
|
|
26
|
+
description: 'some information about the execution context';
|
|
27
|
+
mapping: \${6:model::SomeMapping};
|
|
28
|
+
defaultRuntime: \${7:model::SomeRuntime};
|
|
29
|
+
}
|
|
30
|
+
];
|
|
31
|
+
defaultExecutionContext: '\${5:Some Context}';
|
|
32
|
+
// description: 'description of the data models';
|
|
33
|
+
// featuredDiagrams:
|
|
34
|
+
// [
|
|
35
|
+
// model::SomeDiagram
|
|
36
|
+
// ];
|
|
37
|
+
// supportInfo: Email {
|
|
38
|
+
// address: 'someEmail@test.org';
|
|
39
|
+
// };
|
|
40
|
+
}`;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
export enum DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY {
|
|
18
|
+
GRAMMAR_PARSER = 'dsl-dataspace__grammar-parser',
|
|
19
|
+
GRAMMAR_DATA_SPACE_ELEMENT = 'dsl-dataspace__grammar-data-space-element',
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export const DSL_DATA_SPACE_DOCUMENTATION_ENTRIES = {
|
|
23
|
+
[DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_PARSER]: {
|
|
24
|
+
markdownText: {
|
|
25
|
+
value: `DSL DataSpace (\`###DataSpace\`) concerns with providing information and documentation about the taxonomy of data models`,
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
[DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_DATA_SPACE_ELEMENT]: {
|
|
29
|
+
markdownText: {
|
|
30
|
+
value: `A data-space element specifies a grouping of model diagrams, execution context (mapping, runtime), test data, and so on to help communicate about the _meaning_, _usage_, and relationships of data models and to help users quickly explore and understand the models`,
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
};
|
|
@@ -25,6 +25,11 @@ import {
|
|
|
25
25
|
type ElementEditorStateCreator,
|
|
26
26
|
type EditorStore,
|
|
27
27
|
type ElementEditorState,
|
|
28
|
+
type PureGrammarParserElementDocumentationGetter,
|
|
29
|
+
type PureGrammarParserDocumentationGetter,
|
|
30
|
+
type PureGrammarParserKeywordSuggestionGetter,
|
|
31
|
+
type PureGrammarTextSuggestion,
|
|
32
|
+
type PureGrammarParserElementSnippetSuggestionsGetter,
|
|
28
33
|
UnsupportedElementEditorState,
|
|
29
34
|
LegendStudioPlugin,
|
|
30
35
|
} from '@finos/legend-studio';
|
|
@@ -35,6 +40,20 @@ import {
|
|
|
35
40
|
DataSpaceExecutionContext,
|
|
36
41
|
} from '../../models/metamodels/pure/model/packageableElements/dataSpace/DSLDataSpace_DataSpace';
|
|
37
42
|
import { LATEST_VERSION_ALIAS } from '@finos/legend-server-depot';
|
|
43
|
+
import {
|
|
44
|
+
collectKeyedDocumnetationEntriesFromConfig,
|
|
45
|
+
type LegendApplicationDocumentationEntry,
|
|
46
|
+
type LegendApplicationKeyedDocumentationEntry,
|
|
47
|
+
} from '@finos/legend-application';
|
|
48
|
+
import {
|
|
49
|
+
DSL_DATA_SPACE_DOCUMENTATION_ENTRIES,
|
|
50
|
+
DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY,
|
|
51
|
+
} from './DSLDataSpace_LegendStudioDocumentation';
|
|
52
|
+
import {
|
|
53
|
+
PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL,
|
|
54
|
+
PURE_GRAMMAR_DATA_SPACE_PARSER_NAME,
|
|
55
|
+
} from '../../graphManager/DSLDataSpace_PureGraphManagerPlugin';
|
|
56
|
+
import { SIMPLE_DATA_SPACE_SNIPPET } from './DSLDataSpace_CodeSnippets';
|
|
38
57
|
|
|
39
58
|
const DATA_SPACE_ELEMENT_TYPE = 'DATA SPACE';
|
|
40
59
|
const DATA_SPACE_ELEMENT_PROJECT_EXPLORER_DND_TYPE =
|
|
@@ -48,6 +67,12 @@ export class DSLDataSpace_LegendStudioPlugin
|
|
|
48
67
|
super(packageJson.extensions.studioPlugin, packageJson.version);
|
|
49
68
|
}
|
|
50
69
|
|
|
70
|
+
override getExtraKeyedDocumentationEntries(): LegendApplicationKeyedDocumentationEntry[] {
|
|
71
|
+
return collectKeyedDocumnetationEntriesFromConfig(
|
|
72
|
+
DSL_DATA_SPACE_DOCUMENTATION_ENTRIES,
|
|
73
|
+
);
|
|
74
|
+
}
|
|
75
|
+
|
|
51
76
|
getExtraSupportedElementTypes(): string[] {
|
|
52
77
|
return [DATA_SPACE_ELEMENT_TYPE];
|
|
53
78
|
}
|
|
@@ -130,7 +155,75 @@ export class DSLDataSpace_LegendStudioPlugin
|
|
|
130
155
|
];
|
|
131
156
|
}
|
|
132
157
|
|
|
133
|
-
|
|
158
|
+
getExtraPureGrammarTextEditorDnDTypes(): string[] {
|
|
134
159
|
return [DATA_SPACE_ELEMENT_PROJECT_EXPLORER_DND_TYPE];
|
|
135
160
|
}
|
|
161
|
+
|
|
162
|
+
getExtraPureGrammarParserElementDocumentationGetters(): PureGrammarParserElementDocumentationGetter[] {
|
|
163
|
+
return [
|
|
164
|
+
(
|
|
165
|
+
editorStore: EditorStore,
|
|
166
|
+
parserKeyword: string,
|
|
167
|
+
elementKeyword: string,
|
|
168
|
+
): LegendApplicationDocumentationEntry | undefined => {
|
|
169
|
+
if (parserKeyword === PURE_GRAMMAR_DATA_SPACE_PARSER_NAME) {
|
|
170
|
+
if (elementKeyword === PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL) {
|
|
171
|
+
return editorStore.applicationStore.docRegistry.getEntry(
|
|
172
|
+
DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_DATA_SPACE_ELEMENT,
|
|
173
|
+
);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
return undefined;
|
|
177
|
+
},
|
|
178
|
+
];
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
getExtraPureGrammarParserDocumentationGetters(): PureGrammarParserDocumentationGetter[] {
|
|
182
|
+
return [
|
|
183
|
+
(
|
|
184
|
+
editorStore: EditorStore,
|
|
185
|
+
parserKeyword: string,
|
|
186
|
+
): LegendApplicationDocumentationEntry | undefined => {
|
|
187
|
+
if (parserKeyword === PURE_GRAMMAR_DATA_SPACE_PARSER_NAME) {
|
|
188
|
+
return editorStore.applicationStore.docRegistry.getEntry(
|
|
189
|
+
DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_PARSER,
|
|
190
|
+
);
|
|
191
|
+
}
|
|
192
|
+
return undefined;
|
|
193
|
+
},
|
|
194
|
+
];
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
getExtraPureGrammarParserKeywordSuggestionGetters(): PureGrammarParserKeywordSuggestionGetter[] {
|
|
198
|
+
return [
|
|
199
|
+
(editorStore: EditorStore): PureGrammarTextSuggestion[] => [
|
|
200
|
+
{
|
|
201
|
+
text: PURE_GRAMMAR_DATA_SPACE_PARSER_NAME,
|
|
202
|
+
description: `(dsl)`,
|
|
203
|
+
documentation: editorStore.applicationStore.docRegistry.getEntry(
|
|
204
|
+
DSL_DATA_SPACE_LEGEND_STUDIO_DOCUMENTATION_KEY.GRAMMAR_PARSER,
|
|
205
|
+
),
|
|
206
|
+
insertText: PURE_GRAMMAR_DATA_SPACE_PARSER_NAME,
|
|
207
|
+
},
|
|
208
|
+
],
|
|
209
|
+
];
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
getExtraPureGrammarParserElementSnippetSuggestionsGetters(): PureGrammarParserElementSnippetSuggestionsGetter[] {
|
|
213
|
+
return [
|
|
214
|
+
(
|
|
215
|
+
editorStore: EditorStore,
|
|
216
|
+
parserKeyword: string,
|
|
217
|
+
): PureGrammarTextSuggestion[] | undefined =>
|
|
218
|
+
parserKeyword === PURE_GRAMMAR_DATA_SPACE_PARSER_NAME
|
|
219
|
+
? [
|
|
220
|
+
{
|
|
221
|
+
text: PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL,
|
|
222
|
+
description: 'simple',
|
|
223
|
+
insertText: SIMPLE_DATA_SPACE_SNIPPET,
|
|
224
|
+
},
|
|
225
|
+
]
|
|
226
|
+
: undefined,
|
|
227
|
+
];
|
|
228
|
+
}
|
|
136
229
|
}
|
|
@@ -14,8 +14,15 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
import type { PureModel } from '@finos/legend-graph';
|
|
17
|
+
import type { BasicModel, PureModel } from '@finos/legend-graph';
|
|
18
|
+
import { guaranteeNonNullable } from '@finos/legend-shared';
|
|
18
19
|
import { DataSpace } from '../models/metamodels/pure/model/packageableElements/dataSpace/DSLDataSpace_DataSpace';
|
|
19
20
|
|
|
20
21
|
export const getDataSpace = (path: string, graph: PureModel): DataSpace =>
|
|
21
22
|
graph.getExtensionElement(path, DataSpace, `Can't find data space '${path}'`);
|
|
23
|
+
|
|
24
|
+
export const getOwnDataSpace = (path: string, graph: BasicModel): DataSpace =>
|
|
25
|
+
guaranteeNonNullable(
|
|
26
|
+
graph.getOwnNullableExtensionElement(path, DataSpace),
|
|
27
|
+
`Can't find data space '${path}'`,
|
|
28
|
+
);
|
|
@@ -25,8 +25,8 @@ import {
|
|
|
25
25
|
} from '@finos/legend-graph';
|
|
26
26
|
import { observe_DataSpace } from './action/changeDetection/DSLDataSpace_ObserverHelper';
|
|
27
27
|
|
|
28
|
-
const PURE_GRAMMAR_DATA_SPACE_PARSER_NAME = 'DataSpace';
|
|
29
|
-
const PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL = 'DataSpace';
|
|
28
|
+
export const PURE_GRAMMAR_DATA_SPACE_PARSER_NAME = 'DataSpace';
|
|
29
|
+
export const PURE_GRAMMAR_DATA_SPACE_ELEMENT_TYPE_LABEL = 'DataSpace';
|
|
30
30
|
|
|
31
31
|
export class DSLDataSpace_PureGraphManagerPlugin extends PureGraphManagerPlugin {
|
|
32
32
|
constructor() {
|
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
V1_dataSpaceModelSchema,
|
|
36
36
|
V1_DATA_SPACE_ELEMENT_PROTOCOL_TYPE,
|
|
37
37
|
} from './v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper';
|
|
38
|
-
import {
|
|
38
|
+
import { getOwnDataSpace } from '../../../graphManager/DSLDataSpace_GraphManagerHelper';
|
|
39
39
|
import {
|
|
40
40
|
type DataSpaceSupportInfo,
|
|
41
41
|
DataSpace,
|
|
@@ -68,10 +68,12 @@ import {
|
|
|
68
68
|
V1_ElementBuilder,
|
|
69
69
|
V1_initPackageableElement,
|
|
70
70
|
V1_StereotypePtr,
|
|
71
|
+
V1_buildFullPath,
|
|
71
72
|
} from '@finos/legend-graph';
|
|
72
73
|
import {
|
|
73
|
-
Diagram,
|
|
74
|
+
type Diagram,
|
|
74
75
|
V1_DSLDiagram_PackageableElementPointerType,
|
|
76
|
+
getDiagram,
|
|
75
77
|
} from '@finos/legend-extension-dsl-diagram';
|
|
76
78
|
|
|
77
79
|
export const DATA_SPACE_ELEMENT_CLASSIFIER_PATH =
|
|
@@ -96,7 +98,7 @@ export class DSLDataSpace_PureProtocolProcessorPlugin extends PureProtocolProces
|
|
|
96
98
|
): PackageableElement => {
|
|
97
99
|
assertType(elementProtocol, V1_DataSpace);
|
|
98
100
|
const element = new DataSpace(elementProtocol.name);
|
|
99
|
-
const path =
|
|
101
|
+
const path = V1_buildFullPath(
|
|
100
102
|
elementProtocol.package,
|
|
101
103
|
elementProtocol.name,
|
|
102
104
|
);
|
|
@@ -112,11 +114,11 @@ export class DSLDataSpace_PureProtocolProcessorPlugin extends PureProtocolProces
|
|
|
112
114
|
context: V1_GraphBuilderContext,
|
|
113
115
|
): void => {
|
|
114
116
|
assertType(elementProtocol, V1_DataSpace);
|
|
115
|
-
const path =
|
|
117
|
+
const path = V1_buildFullPath(
|
|
116
118
|
elementProtocol.package,
|
|
117
119
|
elementProtocol.name,
|
|
118
120
|
);
|
|
119
|
-
const element =
|
|
121
|
+
const element = getOwnDataSpace(path, context.currentSubGraph);
|
|
120
122
|
element.stereotypes = elementProtocol.stereotypes
|
|
121
123
|
.map((stereotype) => context.resolveStereotype(stereotype))
|
|
122
124
|
.filter(isNonNullable);
|
|
@@ -411,7 +413,7 @@ export const getResolvedDataSpace = (
|
|
|
411
413
|
if (protocol.featuredDiagrams) {
|
|
412
414
|
dataSpace.featuredDiagrams = protocol.featuredDiagrams.map((pointer) =>
|
|
413
415
|
PackageableElementExplicitReference.create(
|
|
414
|
-
|
|
416
|
+
getDiagram(pointer.path, graph),
|
|
415
417
|
),
|
|
416
418
|
);
|
|
417
419
|
}
|
package/src/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.ts
CHANGED
|
@@ -26,7 +26,6 @@ import {
|
|
|
26
26
|
SKIP,
|
|
27
27
|
} from 'serializr';
|
|
28
28
|
import {
|
|
29
|
-
type V1_StereotypePtr,
|
|
30
29
|
V1_stereotypePtrSchema,
|
|
31
30
|
V1_taggedValueSchema,
|
|
32
31
|
V1_packageableElementPointerDeserializerSchema,
|
|
@@ -107,14 +106,19 @@ export const V1_dataSpaceModelSchema = createModelSchema(V1_DataSpace, {
|
|
|
107
106
|
values,
|
|
108
107
|
(value) =>
|
|
109
108
|
serialize(V1_packageableElementPointerDeserializerSchema, value),
|
|
110
|
-
|
|
109
|
+
{
|
|
110
|
+
skipIfEmpty: true,
|
|
111
|
+
INTERNAL__forceReturnEmptyInTest: true,
|
|
112
|
+
},
|
|
111
113
|
),
|
|
112
114
|
(values) =>
|
|
113
115
|
deserializeArray(
|
|
114
116
|
values,
|
|
115
117
|
(value) =>
|
|
116
118
|
deserialize(V1_packageableElementPointerDeserializerSchema, value),
|
|
117
|
-
|
|
119
|
+
{
|
|
120
|
+
skipIfEmpty: false,
|
|
121
|
+
},
|
|
118
122
|
),
|
|
119
123
|
),
|
|
120
124
|
groupId: primitive(),
|
|
@@ -125,14 +129,15 @@ export const V1_dataSpaceModelSchema = createModelSchema(V1_DataSpace, {
|
|
|
125
129
|
serializeArray(
|
|
126
130
|
values,
|
|
127
131
|
(value) => serialize(V1_stereotypePtrSchema, value),
|
|
128
|
-
|
|
132
|
+
{
|
|
133
|
+
skipIfEmpty: true,
|
|
134
|
+
INTERNAL__forceReturnEmptyInTest: true,
|
|
135
|
+
},
|
|
129
136
|
),
|
|
130
137
|
(values) =>
|
|
131
|
-
deserializeArray(
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
false,
|
|
135
|
-
),
|
|
138
|
+
deserializeArray(values, (v) => deserialize(V1_stereotypePtrSchema, v), {
|
|
139
|
+
skipIfEmpty: false,
|
|
140
|
+
}),
|
|
136
141
|
),
|
|
137
142
|
supportInfo: custom(
|
|
138
143
|
(val) => V1_serializeSupportInfo(val),
|
|
@@ -143,14 +148,15 @@ export const V1_dataSpaceModelSchema = createModelSchema(V1_DataSpace, {
|
|
|
143
148
|
serializeArray(
|
|
144
149
|
values,
|
|
145
150
|
(value) => serialize(V1_taggedValueSchema, value),
|
|
146
|
-
|
|
151
|
+
{
|
|
152
|
+
skipIfEmpty: true,
|
|
153
|
+
INTERNAL__forceReturnEmptyInTest: true,
|
|
154
|
+
},
|
|
147
155
|
),
|
|
148
156
|
(values) =>
|
|
149
|
-
deserializeArray(
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
false,
|
|
153
|
-
),
|
|
157
|
+
deserializeArray(values, (v) => deserialize(V1_taggedValueSchema, v), {
|
|
158
|
+
skipIfEmpty: false,
|
|
159
|
+
}),
|
|
154
160
|
),
|
|
155
161
|
versionId: primitive(),
|
|
156
162
|
});
|
package/tsconfig.json
CHANGED
|
@@ -38,6 +38,8 @@
|
|
|
38
38
|
"files": [
|
|
39
39
|
"./src/DSLDataSpace_Extension.ts",
|
|
40
40
|
"./src/index.ts",
|
|
41
|
+
"./src/components/studio/DSLDataSpace_CodeSnippets.ts",
|
|
42
|
+
"./src/components/studio/DSLDataSpace_LegendStudioDocumentation.ts",
|
|
41
43
|
"./src/graph/DSLDataSpace_PureGraphPlugin.ts",
|
|
42
44
|
"./src/graphManager/DSLDataSpace_GraphManagerHelper.ts",
|
|
43
45
|
"./src/graphManager/DSLDataSpace_PureGraphManagerPlugin.ts",
|