@finos/legend-extension-dsl-data-space 0.0.6 → 1.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.
Files changed (70) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/lib/DSLDataSpace_Extension.d.ts +0 -5
  3. package/lib/DSLDataSpace_Extension.d.ts.map +1 -1
  4. package/lib/DSLDataSpace_Extension.js +0 -12
  5. package/lib/DSLDataSpace_Extension.js.map +1 -1
  6. package/lib/components/{studio/DataSpaceEditor.d.ts → DataSpaceViewer.d.ts} +5 -2
  7. package/lib/components/DataSpaceViewer.d.ts.map +1 -0
  8. package/lib/components/DataSpaceViewer.js +186 -0
  9. package/lib/components/DataSpaceViewer.js.map +1 -0
  10. package/lib/components/query/DSLDataSpace_LegendQueryPlugin.d.ts +24 -0
  11. package/lib/components/query/DSLDataSpace_LegendQueryPlugin.d.ts.map +1 -0
  12. package/lib/components/query/DSLDataSpace_LegendQueryPlugin.js +51 -0
  13. package/lib/components/query/DSLDataSpace_LegendQueryPlugin.js.map +1 -0
  14. package/lib/components/query/DataSpaceQuerySetup.d.ts +22 -0
  15. package/lib/components/query/DataSpaceQuerySetup.d.ts.map +1 -0
  16. package/lib/components/query/DataSpaceQuerySetup.js +95 -0
  17. package/lib/components/query/DataSpaceQuerySetup.js.map +1 -0
  18. package/lib/components/studio/{DSLDataSpace_StudioPlugin.d.ts → DSLDataSpace_LegendStudioPlugin.d.ts} +5 -6
  19. package/lib/components/studio/DSLDataSpace_LegendStudioPlugin.d.ts.map +1 -0
  20. package/lib/components/studio/{DSLDataSpace_StudioPlugin.js → DSLDataSpace_LegendStudioPlugin.js} +7 -18
  21. package/lib/components/studio/DSLDataSpace_LegendStudioPlugin.js.map +1 -0
  22. package/lib/graph/DSLDataSpace_PureGraphPlugin.js +1 -1
  23. package/lib/graph/DSLDataSpace_PureGraphPlugin.js.map +1 -1
  24. package/lib/index.css +2 -2
  25. package/lib/index.css.map +1 -1
  26. package/lib/index.d.ts +5 -0
  27. package/lib/index.d.ts.map +1 -1
  28. package/lib/index.js +5 -0
  29. package/lib/index.js.map +1 -1
  30. package/lib/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.d.ts +39 -1
  31. package/lib/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.d.ts.map +1 -1
  32. package/lib/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.js +110 -8
  33. package/lib/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.js.map +1 -1
  34. package/lib/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.d.ts +1 -0
  35. package/lib/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.d.ts.map +1 -1
  36. package/lib/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.js +1 -1
  37. package/lib/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.js.map +1 -1
  38. package/lib/stores/DataSpaceViewerState.d.ts +59 -0
  39. package/lib/stores/DataSpaceViewerState.d.ts.map +1 -0
  40. package/lib/stores/DataSpaceViewerState.js +137 -0
  41. package/lib/stores/DataSpaceViewerState.js.map +1 -0
  42. package/lib/stores/query/DataSpaceQuerySetupState.d.ts +49 -0
  43. package/lib/stores/query/DataSpaceQuerySetupState.d.ts.map +1 -0
  44. package/lib/stores/query/DataSpaceQuerySetupState.js +129 -0
  45. package/lib/stores/query/DataSpaceQuerySetupState.js.map +1 -0
  46. package/package.json +26 -21
  47. package/src/DSLDataSpace_Extension.ts +0 -15
  48. package/src/components/DataSpaceViewer.tsx +598 -0
  49. package/src/components/query/DSLDataSpace_LegendQueryPlugin.tsx +76 -0
  50. package/src/components/query/DataSpaceQuerySetup.tsx +234 -0
  51. package/src/components/studio/{DSLDataSpace_StudioPlugin.tsx → DSLDataSpace_LegendStudioPlugin.tsx} +17 -27
  52. package/src/graph/DSLDataSpace_PureGraphPlugin.ts +1 -1
  53. package/src/index.ts +12 -0
  54. package/src/models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin.ts +192 -6
  55. package/src/models/protocols/pure/v1/transformation/pureProtocol/V1_DSLDataSpace_ProtocolHelper.ts +1 -1
  56. package/src/stores/DataSpaceViewerState.ts +202 -0
  57. package/src/stores/query/DataSpaceQuerySetupState.ts +235 -0
  58. package/tsconfig.json +7 -3
  59. package/tsconfig.package.json +1 -0
  60. package/lib/components/studio/DSLDataSpace_StudioPlugin.d.ts.map +0 -1
  61. package/lib/components/studio/DSLDataSpace_StudioPlugin.js.map +0 -1
  62. package/lib/components/studio/DataSpaceEditor.d.ts.map +0 -1
  63. package/lib/components/studio/DataSpaceEditor.js +0 -98
  64. package/lib/components/studio/DataSpaceEditor.js.map +0 -1
  65. package/lib/stores/studio/DataSpaceEditorState.d.ts +0 -42
  66. package/lib/stores/studio/DataSpaceEditorState.d.ts.map +0 -1
  67. package/lib/stores/studio/DataSpaceEditorState.js +0 -76
  68. package/lib/stores/studio/DataSpaceEditorState.js.map +0 -1
  69. package/src/components/studio/DataSpaceEditor.tsx +0 -272
  70. package/src/stores/studio/DataSpaceEditorState.ts +0 -108
@@ -0,0 +1,137 @@
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
+ import { Diagram, DIAGRAM_INTERACTION_MODE, } from '@finos/legend-extension-dsl-diagram';
17
+ import { guaranteeNonNullable } from '@finos/legend-shared';
18
+ import { action, computed, makeObservable, observable } from 'mobx';
19
+ export var DATA_SPACE_VIEWER_ACTIVITY_MODE;
20
+ (function (DATA_SPACE_VIEWER_ACTIVITY_MODE) {
21
+ DATA_SPACE_VIEWER_ACTIVITY_MODE["MODELS_OVERVIEW"] = "MODELS_OVERVIEW";
22
+ DATA_SPACE_VIEWER_ACTIVITY_MODE["EXECUTION"] = "EXECUTION";
23
+ DATA_SPACE_VIEWER_ACTIVITY_MODE["ENTITLEMENT"] = "ENTITLEMENT";
24
+ DATA_SPACE_VIEWER_ACTIVITY_MODE["TEST_DATA"] = "TEST_DATA";
25
+ DATA_SPACE_VIEWER_ACTIVITY_MODE["TEST_COVERAGE"] = "TEST_COVERAGE";
26
+ DATA_SPACE_VIEWER_ACTIVITY_MODE["TAGS"] = "TAGS";
27
+ DATA_SPACE_VIEWER_ACTIVITY_MODE["SUPPORT"] = "SUPPORT";
28
+ })(DATA_SPACE_VIEWER_ACTIVITY_MODE || (DATA_SPACE_VIEWER_ACTIVITY_MODE = {}));
29
+ export class DataSpaceViewerState {
30
+ graphManagerState;
31
+ dataSpaceGroupId;
32
+ dataSpaceArtifactId;
33
+ dataSpaceVersionId;
34
+ dataSpace;
35
+ _renderer;
36
+ currentDiagram;
37
+ currentActivity = DATA_SPACE_VIEWER_ACTIVITY_MODE.MODELS_OVERVIEW;
38
+ currentExecutionContext;
39
+ currentRuntime;
40
+ viewProject;
41
+ onDiagramClassDoubleClick;
42
+ constructor(graphManagerState, dataSpaceGroupId, dataSpaceArtifactId, dataSpaceVersionId, dataSpace, options) {
43
+ makeObservable(this, {
44
+ _renderer: observable,
45
+ currentDiagram: observable,
46
+ currentActivity: observable,
47
+ currentExecutionContext: observable,
48
+ currentRuntime: observable,
49
+ renderer: computed,
50
+ setRenderer: action,
51
+ setCurrentDiagram: action,
52
+ setCurrentActivity: action,
53
+ setCurrentExecutionContext: action,
54
+ setCurrentRuntime: action,
55
+ });
56
+ this.graphManagerState = graphManagerState;
57
+ this.dataSpace = dataSpace;
58
+ this.dataSpaceGroupId = dataSpaceGroupId;
59
+ this.dataSpaceArtifactId = dataSpaceArtifactId;
60
+ this.dataSpaceVersionId = dataSpaceVersionId;
61
+ this.currentExecutionContext = this.dataSpace.defaultExecutionContext;
62
+ this.currentRuntime =
63
+ this.dataSpace.defaultExecutionContext.defaultRuntime.value;
64
+ this.currentDiagram = this.dataSpace.featuredDiagrams.length
65
+ ? this.dataSpace
66
+ .featuredDiagrams[0].value
67
+ : this.diagrams.length
68
+ ? this.diagrams[0]
69
+ : undefined;
70
+ this.viewProject = options?.viewProject;
71
+ this.onDiagramClassDoubleClick = options?.onDiagramClassDoubleClick;
72
+ }
73
+ get renderer() {
74
+ return guaranteeNonNullable(this._renderer, `Diagram renderer must be initialized (this is likely caused by calling this method at the wrong place)`);
75
+ }
76
+ get isDiagramRendererInitialized() {
77
+ return Boolean(this._renderer);
78
+ }
79
+ get featuredDiagrams() {
80
+ return this.dataSpace.featuredDiagrams.map((ref) => ref.value);
81
+ }
82
+ get diagrams() {
83
+ return this.graphManagerState.graph
84
+ .getExtensionElements(Diagram)
85
+ .concat(this.graphManagerState.graph.dependencyManager.getExtensionElements(Diagram));
86
+ }
87
+ get runtimes() {
88
+ return this.graphManagerState.graph.ownRuntimes
89
+ .concat(this.graphManagerState.graph.dependencyManager.runtimes)
90
+ .filter((runtime) => runtime.runtimeValue.mappings
91
+ .map((mapping) => mapping.value)
92
+ .includes(this.currentExecutionContext.mapping.value));
93
+ }
94
+ // NOTE: we have tried to use React to control the cursor and
95
+ // could not overcome the jank/lag problem, so we settle with CSS-based approach
96
+ // See https://css-tricks.com/using-css-cursors/
97
+ // See https://developer.mozilla.org/en-US/docs/Web/CSS/cursor
98
+ get diagramCursorClass() {
99
+ if (!this.isDiagramRendererInitialized) {
100
+ return '';
101
+ }
102
+ if (this.renderer.middleClick || this.renderer.rightClick) {
103
+ return 'diagram-editor__cursor--grabbing';
104
+ }
105
+ switch (this.renderer.interactionMode) {
106
+ case DIAGRAM_INTERACTION_MODE.LAYOUT: {
107
+ if (this.renderer.mouseOverClassView) {
108
+ return 'diagram-editor__cursor--pointer';
109
+ }
110
+ return '';
111
+ }
112
+ default:
113
+ return '';
114
+ }
115
+ }
116
+ setRenderer(val) {
117
+ this._renderer = val;
118
+ }
119
+ setCurrentDiagram(val) {
120
+ this.currentDiagram = val;
121
+ }
122
+ setCurrentActivity(val) {
123
+ this.currentActivity = val;
124
+ }
125
+ setCurrentExecutionContext(val) {
126
+ this.currentExecutionContext = val;
127
+ this.currentRuntime = val.defaultRuntime.value;
128
+ }
129
+ setCurrentRuntime(val) {
130
+ this.currentRuntime = val;
131
+ }
132
+ setupRenderer() {
133
+ this.renderer.setIsReadOnly(true);
134
+ this.renderer.onClassViewDoubleClick = (classView) => this.onDiagramClassDoubleClick?.(classView);
135
+ }
136
+ }
137
+ //# sourceMappingURL=DataSpaceViewerState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataSpaceViewerState.js","sourceRoot":"","sources":["../../src/stores/DataSpaceViewerState.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,49 @@
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
+ import type { Class } from '@finos/legend-graph';
17
+ import type { Entity } from '@finos/legend-model-storage';
18
+ import type { QuerySetupStore } from '@finos/legend-query';
19
+ import { QuerySetupState } from '@finos/legend-query';
20
+ import type { GeneratorFn } from '@finos/legend-shared';
21
+ import { ActionState } from '@finos/legend-shared';
22
+ import { DataSpaceViewerState } from '../DataSpaceViewerState';
23
+ export declare type LightDataSpace = Entity & {
24
+ groupId: string;
25
+ artifactId: string;
26
+ versionId: string;
27
+ path: string;
28
+ content: {
29
+ groupId: string;
30
+ artifactId: string;
31
+ versionId: string;
32
+ };
33
+ };
34
+ export declare class DataSpaceQuerySetupState extends QuerySetupState {
35
+ dataSpaces: LightDataSpace[];
36
+ loadDataSpacesState: ActionState;
37
+ setUpDataSpaceState: ActionState;
38
+ currentDataSpace?: LightDataSpace | undefined;
39
+ dataSpaceViewerState?: DataSpaceViewerState | undefined;
40
+ toGetSnapShot: boolean;
41
+ constructor(setupStore: QuerySetupStore);
42
+ setCurrentDataSpace(val: LightDataSpace | undefined): void;
43
+ setDataSpaceViewerState(val: DataSpaceViewerState | undefined): void;
44
+ setToGetSnapShot(val: boolean): void;
45
+ loadDataSpaces(searchText: string): GeneratorFn<void>;
46
+ setUpDataSpace(dataSpace: LightDataSpace): GeneratorFn<void>;
47
+ proceedToCreateQuery(_class?: Class): GeneratorFn<void>;
48
+ }
49
+ //# sourceMappingURL=DataSpaceQuerySetupState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataSpaceQuerySetupState.d.ts","sourceRoot":"","sources":["../../../src/stores/query/DataSpaceQuerySetupState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAEL,eAAe,EAEhB,MAAM,qBAAqB,CAAC;AAO7B,OAAO,KAAK,EAAE,WAAW,EAAe,MAAM,sBAAsB,CAAC;AACrE,OAAO,EACL,WAAW,EAGZ,MAAM,sBAAsB,CAAC;AAM9B,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAE/D,oBAAY,cAAc,GAAG,MAAM,GAAG;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE;QACP,OAAO,EAAE,MAAM,CAAC;QAChB,UAAU,EAAE,MAAM,CAAC;QACnB,SAAS,EAAE,MAAM,CAAC;KACnB,CAAC;CACH,CAAC;AAEF,qBAAa,wBAAyB,SAAQ,eAAe;IAC3D,UAAU,EAAE,cAAc,EAAE,CAAM;IAClC,mBAAmB,cAAwB;IAC3C,mBAAmB,cAAwB;IAC3C,gBAAgB,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;IAC9C,oBAAoB,CAAC,EAAE,oBAAoB,GAAG,SAAS,CAAC;IACxD,aAAa,UAAS;gBAEV,UAAU,EAAE,eAAe;IAiBvC,mBAAmB,CAAC,GAAG,EAAE,cAAc,GAAG,SAAS,GAAG,IAAI;IAI1D,uBAAuB,CAAC,GAAG,EAAE,oBAAoB,GAAG,SAAS,GAAG,IAAI;IAIpE,gBAAgB,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;IAInC,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,WAAW,CAAC,IAAI,CAAC;IAuDrD,cAAc,CAAC,SAAS,EAAE,cAAc,GAAG,WAAW,CAAC,IAAI,CAAC;IAuD5D,oBAAoB,CAAC,MAAM,CAAC,EAAE,KAAK,GAAG,WAAW,CAAC,IAAI,CAAC;CA+BzD"}
@@ -0,0 +1,129 @@
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
+ import { CreateQueryInfoState, QuerySetupState, generateCreateQueryRoute, } from '@finos/legend-query';
17
+ import { DepotScope, ProjectData, SNAPSHOT_VERSION_ALIAS, } from '@finos/legend-server-depot';
18
+ import { ActionState, assertErrorThrown, guaranteeNonNullable, } from '@finos/legend-shared';
19
+ import { action, flow, flowResult, makeObservable, observable } from 'mobx';
20
+ import { DATA_SPACE_ELEMENT_CLASSIFIER_PATH, getResolvedDataSpace, } from '../../models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin';
21
+ import { DataSpaceViewerState } from '../DataSpaceViewerState';
22
+ export class DataSpaceQuerySetupState extends QuerySetupState {
23
+ dataSpaces = [];
24
+ loadDataSpacesState = ActionState.create();
25
+ setUpDataSpaceState = ActionState.create();
26
+ currentDataSpace;
27
+ dataSpaceViewerState;
28
+ toGetSnapShot = false;
29
+ constructor(setupStore) {
30
+ super(setupStore);
31
+ makeObservable(this, {
32
+ dataSpaces: observable,
33
+ currentDataSpace: observable.ref,
34
+ dataSpaceViewerState: observable,
35
+ toGetSnapShot: observable,
36
+ setCurrentDataSpace: action,
37
+ setDataSpaceViewerState: action,
38
+ setToGetSnapShot: action,
39
+ loadDataSpaces: flow,
40
+ setUpDataSpace: flow,
41
+ proceedToCreateQuery: flow,
42
+ });
43
+ }
44
+ setCurrentDataSpace(val) {
45
+ this.currentDataSpace = val;
46
+ }
47
+ setDataSpaceViewerState(val) {
48
+ this.dataSpaceViewerState = val;
49
+ }
50
+ setToGetSnapShot(val) {
51
+ this.toGetSnapShot = val;
52
+ }
53
+ *loadDataSpaces(searchText) {
54
+ if (this.queryStore.initState.isInInitialState) {
55
+ yield flowResult(this.queryStore.initialize());
56
+ }
57
+ else if (this.queryStore.initState.isInProgress) {
58
+ return;
59
+ }
60
+ const isValidSearchString = searchText.length >= 3;
61
+ this.loadDataSpacesState.inProgress();
62
+ try {
63
+ this.dataSpaces = (yield this.queryStore.depotServerClient.getEntitiesByClassifierPath(DATA_SPACE_ELEMENT_CLASSIFIER_PATH, {
64
+ search: isValidSearchString ? searchText : undefined,
65
+ scope: this.toGetSnapShot
66
+ ? DepotScope.SNAPSHOT
67
+ : DepotScope.RELEASES,
68
+ limit: 10,
69
+ })).map((storedEntity) => ({
70
+ ...storedEntity.entity,
71
+ groupId: storedEntity.groupId,
72
+ artifactId: storedEntity.artifactId,
73
+ versionId: this.toGetSnapShot
74
+ ? SNAPSHOT_VERSION_ALIAS
75
+ : storedEntity.versionId,
76
+ path: storedEntity.entity.path,
77
+ content: {
78
+ ...storedEntity.entity.content,
79
+ groupId: guaranteeNonNullable(storedEntity.entity.content.groupId, `Data space 'groupId' field is missing`),
80
+ artifactId: guaranteeNonNullable(storedEntity.entity.content.artifactId, `Data space 'artifactId' field is missing`),
81
+ versionId: guaranteeNonNullable(storedEntity.entity.content.versionId, `Data space 'versionId' field is missing`),
82
+ },
83
+ }));
84
+ this.loadDataSpacesState.pass();
85
+ }
86
+ catch (error) {
87
+ assertErrorThrown(error);
88
+ this.loadDataSpacesState.fail();
89
+ this.queryStore.applicationStore.notifyError(error);
90
+ }
91
+ }
92
+ *setUpDataSpace(dataSpace) {
93
+ if (this.queryStore.initState.isInInitialState) {
94
+ yield flowResult(this.queryStore.initialize());
95
+ }
96
+ else if (this.queryStore.initState.isInProgress) {
97
+ return;
98
+ }
99
+ this.setUpDataSpaceState.inProgress();
100
+ try {
101
+ const projectData = ProjectData.serialization.fromJson((yield flowResult(this.queryStore.depotServerClient.getProject(dataSpace.content.groupId, dataSpace.content.artifactId))));
102
+ yield flowResult(this.queryStore.buildGraph(projectData, dataSpace.content.versionId));
103
+ const resolvedDataSpace = getResolvedDataSpace(dataSpace.content, this.queryStore.graphManagerState.graph);
104
+ this.dataSpaceViewerState = new DataSpaceViewerState(this.queryStore.graphManagerState, dataSpace.groupId, dataSpace.artifactId, dataSpace.versionId, resolvedDataSpace, {
105
+ viewProject: (groupId, artifactId, versionId, entityPath) => this.queryStore.viewStudioProject(groupId, artifactId, versionId, entityPath),
106
+ onDiagramClassDoubleClick: (classView) => {
107
+ this.proceedToCreateQuery(classView.class.value);
108
+ },
109
+ });
110
+ this.setUpDataSpaceState.pass();
111
+ }
112
+ catch (error) {
113
+ assertErrorThrown(error);
114
+ this.setUpDataSpaceState.fail();
115
+ this.queryStore.applicationStore.notifyError(error);
116
+ }
117
+ }
118
+ *proceedToCreateQuery(_class) {
119
+ if (this.dataSpaceViewerState) {
120
+ const projectData = ProjectData.serialization.fromJson((yield flowResult(this.queryStore.depotServerClient.getProject(this.dataSpaceViewerState.dataSpace.groupId, this.dataSpaceViewerState.dataSpace.artifactId))));
121
+ const queryInfoState = new CreateQueryInfoState(this.queryStore, projectData, this.dataSpaceViewerState.dataSpace.versionId, this.dataSpaceViewerState.currentExecutionContext.mapping.value, this.dataSpaceViewerState.currentRuntime);
122
+ queryInfoState.class = _class;
123
+ this.queryStore.setQueryInfoState(queryInfoState);
124
+ this.queryStore.applicationStore.navigator.goTo(generateCreateQueryRoute(this.dataSpaceViewerState.dataSpace.groupId, this.dataSpaceViewerState.dataSpace.artifactId, this.dataSpaceViewerState.dataSpace.versionId, this.dataSpaceViewerState.currentExecutionContext.mapping.value.path, this.dataSpaceViewerState.currentRuntime.path));
125
+ this.setupStore.setSetupState(undefined);
126
+ }
127
+ }
128
+ }
129
+ //# sourceMappingURL=DataSpaceQuerySetupState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataSpaceQuerySetupState.js","sourceRoot":"","sources":["../../../src/stores/query/DataSpaceQuerySetupState.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-extension-dsl-data-space",
3
- "version": "0.0.6",
3
+ "version": "1.0.1",
4
4
  "description": "Legend extension for Data Space DSL",
5
5
  "keywords": [
6
6
  "legend",
@@ -25,11 +25,11 @@
25
25
  "types": "lib/index.d.ts",
26
26
  "scripts": {
27
27
  "build": "yarn clean && yarn build:sass && yarn build:tsc",
28
- "build:sass": "cross-env INIT_CWD=$INIT_CWD sass ./style/index.scss ./lib/index.css --style=compressed && node ../../scripts/copyright/addBundledCodeCopyrightHeader.js ./lib/index.css",
28
+ "build:sass": "cross-env INIT_CWD=$INIT_CWD node ../../scripts/workflow/buildSass.js",
29
29
  "build:tsc": "tsc --project ./tsconfig.build.json",
30
30
  "clean": "rimraf \"lib\" \"build\"",
31
31
  "dev": "npm-run-all --parallel dev:sass dev:tsc",
32
- "dev:sass": "sass ./style/index.scss ./lib/index.css --watch",
32
+ "dev:sass": "sass style lib --watch --load-path=../../node_modules/@finos/legend-art/scss",
33
33
  "dev:tsc": "tsc --watch --preserveWatchOutput",
34
34
  "lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location ./build/.eslintcache --report-unused-disable-directives --parser-options=project:\"./tsconfig.json\" \"./src/**/*.{js,ts,tsx}\"",
35
35
  "publish:prepare": "node ../../scripts/release/preparePublishContent.js",
@@ -38,31 +38,36 @@
38
38
  "test:watch": "jest --watch"
39
39
  },
40
40
  "dependencies": {
41
- "@finos/legend-application": "0.0.13",
42
- "@finos/legend-art": "0.0.8",
43
- "@finos/legend-extension-dsl-diagram": "0.0.13",
44
- "@finos/legend-graph": "0.1.4",
45
- "@finos/legend-model-storage": "0.0.6",
46
- "@finos/legend-shared": "0.0.6",
47
- "@finos/legend-studio": "0.3.4",
48
- "@types/react": "17.0.29",
49
- "mobx": "6.3.3",
50
- "mobx-react-lite": "3.2.1",
51
- "monaco-editor": "0.29.1",
41
+ "@finos/legend-application": "0.2.1",
42
+ "@finos/legend-art": "0.1.2",
43
+ "@finos/legend-extension-dsl-diagram": "1.0.1",
44
+ "@finos/legend-graph": "0.2.4",
45
+ "@finos/legend-model-storage": "0.0.9",
46
+ "@finos/legend-query": "0.1.4",
47
+ "@finos/legend-server-depot": "0.0.12",
48
+ "@finos/legend-shared": "0.0.9",
49
+ "@finos/legend-studio": "2.0.1",
50
+ "@types/react": "17.0.36",
51
+ "@types/react-router-dom": "5.3.2",
52
+ "mobx": "6.3.7",
53
+ "mobx-react-lite": "3.2.2",
54
+ "monaco-editor": "0.30.1",
52
55
  "react": "17.0.2",
53
56
  "react-dom": "17.0.2",
54
57
  "react-resize-detector": "6.7.6",
58
+ "react-router": "5.2.1",
59
+ "react-router-dom": "5.3.0",
55
60
  "serializr": "2.0.5"
56
61
  },
57
62
  "devDependencies": {
58
- "@finos/legend-dev-utils": "0.0.13",
63
+ "@finos/legend-dev-utils": "0.2.1",
59
64
  "cross-env": "7.0.3",
60
- "eslint": "8.0.0",
61
- "jest": "27.2.5",
65
+ "eslint": "8.3.0",
66
+ "jest": "27.3.1",
62
67
  "npm-run-all": "4.1.5",
63
68
  "rimraf": "3.0.2",
64
- "sass": "1.42.1",
65
- "typescript": "4.4.4"
69
+ "sass": "1.43.4",
70
+ "typescript": "4.5.2"
66
71
  },
67
72
  "peerDependencies": {
68
73
  "react": "^17.0.0"
@@ -75,7 +80,7 @@
75
80
  "pureProtocolProcessorPlugin": "@finos/legend-graph-plugin-dsl-data-space-pure-protocol-processor",
76
81
  "pureGraphManagerPlugin": "@finos/legend-graph-plugin-dsl-data-space-pure-graph-manager",
77
82
  "pureGraphPlugin": "@finos/legend-graph-plugin-dsl-data-space-pure-graph",
78
- "studioPreset": "@finos/legend-studio-preset-dsl-data-space",
79
- "studioPlugin": "@finos/legend-studio-plugin-dsl-data-space"
83
+ "studioPlugin": "@finos/legend-studio-plugin-dsl-data-space",
84
+ "queryPlugin": "@finos/legend-query-plugin-dsl-data-space"
80
85
  }
81
86
  }
@@ -19,8 +19,6 @@ import { AbstractPreset } from '@finos/legend-shared';
19
19
  import { DSLDataSpace_PureGraphManagerPlugin } from './graphManager/DSLDataSpace_PureGraphManagerPlugin';
20
20
  import { DSLDataSpace_PureProtocolProcessorPlugin } from './models/protocols/pure/DSLDataSpace_PureProtocolProcessorPlugin';
21
21
  import type { GraphPluginManager } from '@finos/legend-graph';
22
- import type { StudioPluginManager } from '@finos/legend-studio';
23
- import { DSLDataSpace_StudioPlugin } from './components/studio/DSLDataSpace_StudioPlugin';
24
22
  import { DSLDataSpace_PureGraphPlugin } from './graph/DSLDataSpace_PureGraphPlugin';
25
23
 
26
24
  export class DSLDataSpace_GraphPreset extends AbstractPreset {
@@ -34,16 +32,3 @@ export class DSLDataSpace_GraphPreset extends AbstractPreset {
34
32
  new DSLDataSpace_PureProtocolProcessorPlugin().install(pluginManager);
35
33
  }
36
34
  }
37
-
38
- export class DSLDataSpace_StudioPreset extends AbstractPreset {
39
- constructor() {
40
- super(packageJson.extensions.studioPreset, packageJson.version);
41
- }
42
-
43
- install(pluginManager: StudioPluginManager): void {
44
- new DSLDataSpace_StudioPlugin().install(pluginManager);
45
- new DSLDataSpace_PureGraphPlugin().install(pluginManager);
46
- new DSLDataSpace_PureGraphManagerPlugin().install(pluginManager);
47
- new DSLDataSpace_PureProtocolProcessorPlugin().install(pluginManager);
48
- }
49
- }