@finos/legend-application-query 13.4.21 → 13.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. package/lib/__lib__/DSL_DataSpace_LegendQueryNavigation.d.ts +1 -1
  2. package/lib/__lib__/DSL_DataSpace_LegendQueryNavigation.d.ts.map +1 -1
  3. package/lib/__lib__/DSL_DataSpace_LegendQueryNavigation.js +4 -4
  4. package/lib/__lib__/DSL_DataSpace_LegendQueryNavigation.js.map +1 -1
  5. package/lib/__lib__/LegendQueryNavigation.d.ts +1 -0
  6. package/lib/__lib__/LegendQueryNavigation.d.ts.map +1 -1
  7. package/lib/__lib__/LegendQueryNavigation.js +1 -0
  8. package/lib/__lib__/LegendQueryNavigation.js.map +1 -1
  9. package/lib/components/Core_LegendQueryApplicationPlugin.d.ts.map +1 -1
  10. package/lib/components/Core_LegendQueryApplicationPlugin.js +20 -11
  11. package/lib/components/Core_LegendQueryApplicationPlugin.js.map +1 -1
  12. package/lib/components/LegendQueryWebApplication.d.ts.map +1 -1
  13. package/lib/components/LegendQueryWebApplication.js +15 -14
  14. package/lib/components/LegendQueryWebApplication.js.map +1 -1
  15. package/lib/components/QueryEditor.d.ts.map +1 -1
  16. package/lib/components/QueryEditor.js +2 -1
  17. package/lib/components/QueryEditor.js.map +1 -1
  18. package/lib/components/data-space/DataSpaceQueryCreator.d.ts.map +1 -1
  19. package/lib/components/data-space/DataSpaceQueryCreator.js +25 -8
  20. package/lib/components/data-space/DataSpaceQueryCreator.js.map +1 -1
  21. package/lib/components/data-space/DataSpaceQuerySetup.d.ts +0 -3
  22. package/lib/components/data-space/DataSpaceQuerySetup.d.ts.map +1 -1
  23. package/lib/components/data-space/DataSpaceQuerySetup.js +2 -12
  24. package/lib/components/data-space/DataSpaceQuerySetup.js.map +1 -1
  25. package/lib/index.css +1 -1
  26. package/lib/index.d.ts +2 -1
  27. package/lib/index.d.ts.map +1 -1
  28. package/lib/index.js +2 -1
  29. package/lib/index.js.map +1 -1
  30. package/lib/package.json +4 -3
  31. package/lib/stores/QueryEditorStore.d.ts +3 -4
  32. package/lib/stores/QueryEditorStore.d.ts.map +1 -1
  33. package/lib/stores/QueryEditorStore.js +54 -62
  34. package/lib/stores/QueryEditorStore.js.map +1 -1
  35. package/lib/stores/data-space/DataSpaceQueryBuilderHelper.d.ts +23 -0
  36. package/lib/stores/data-space/DataSpaceQueryBuilderHelper.d.ts.map +1 -0
  37. package/lib/stores/data-space/DataSpaceQueryBuilderHelper.js +39 -0
  38. package/lib/stores/data-space/DataSpaceQueryBuilderHelper.js.map +1 -0
  39. package/lib/stores/data-space/DataSpaceQueryCreatorStore.d.ts +35 -12
  40. package/lib/stores/data-space/DataSpaceQueryCreatorStore.d.ts.map +1 -1
  41. package/lib/stores/data-space/DataSpaceQueryCreatorStore.js +189 -86
  42. package/lib/stores/data-space/DataSpaceQueryCreatorStore.js.map +1 -1
  43. package/lib/stores/data-space/DataSpaceQuerySetupState.d.ts +3 -20
  44. package/lib/stores/data-space/DataSpaceQuerySetupState.d.ts.map +1 -1
  45. package/lib/stores/data-space/DataSpaceQuerySetupState.js +8 -81
  46. package/lib/stores/data-space/DataSpaceQuerySetupState.js.map +1 -1
  47. package/lib/stores/data-space/DataSpaceTemplateQueryCreatorStore.d.ts.map +1 -1
  48. package/lib/stores/data-space/DataSpaceTemplateQueryCreatorStore.js +8 -8
  49. package/lib/stores/data-space/DataSpaceTemplateQueryCreatorStore.js.map +1 -1
  50. package/package.json +14 -13
  51. package/src/__lib__/DSL_DataSpace_LegendQueryNavigation.ts +6 -4
  52. package/src/__lib__/LegendQueryNavigation.ts +1 -0
  53. package/src/components/Core_LegendQueryApplicationPlugin.tsx +25 -17
  54. package/src/components/LegendQueryWebApplication.tsx +30 -27
  55. package/src/components/QueryEditor.tsx +2 -1
  56. package/src/components/data-space/DataSpaceQueryCreator.tsx +36 -18
  57. package/src/components/data-space/DataSpaceQuerySetup.tsx +2 -36
  58. package/src/index.ts +4 -2
  59. package/src/stores/QueryEditorStore.ts +109 -157
  60. package/src/stores/data-space/DataSpaceQueryBuilderHelper.ts +107 -0
  61. package/src/stores/data-space/DataSpaceQueryCreatorStore.ts +302 -173
  62. package/src/stores/data-space/DataSpaceQuerySetupState.ts +8 -156
  63. package/src/stores/data-space/DataSpaceTemplateQueryCreatorStore.ts +11 -19
  64. package/tsconfig.json +1 -0
@@ -17,9 +17,10 @@ import { extractElementNameFromPath, } from '@finos/legend-graph';
17
17
  import { StoreProjectData, } from '@finos/legend-server-depot';
18
18
  import { filterByType, guaranteeNonNullable, uuid } from '@finos/legend-shared';
19
19
  import { QueryBuilderDataBrowserWorkflow, } from '@finos/legend-query-builder';
20
- import { QueryBuilderActionConfig_QueryApplication, QueryEditorStore, createViewProjectHandler, createViewSDLCProjectHandler, } from '../QueryEditorStore.js';
20
+ import { QueryBuilderActionConfig_QueryApplication, QueryEditorStore, } from '../QueryEditorStore.js';
21
21
  import { DSL_DataSpace_getGraphManagerExtension, DataSpaceExecutableTemplate, getDataSpace, retrieveAnalyticsResultCache, } from '@finos/legend-extension-dsl-data-space/graph';
22
- import { DataSpaceProjectInfo, DataSpaceQueryBuilderState, createQueryClassTaggedValue, } from '@finos/legend-extension-dsl-data-space/application';
22
+ import { DataSpaceQueryBuilderState, createQueryClassTaggedValue, } from '@finos/legend-extension-dsl-data-space/application';
23
+ import { createDataSpaceDepoRepo } from './DataSpaceQueryBuilderHelper.js';
23
24
  export class DataSpaceTemplateQueryCreatorStore extends QueryEditorStore {
24
25
  groupId;
25
26
  artifactId;
@@ -59,16 +60,15 @@ export class DataSpaceTemplateQueryCreatorStore extends QueryEditorStore {
59
60
  catch {
60
61
  // do nothing
61
62
  }
62
- const projectInfo = new DataSpaceProjectInfo(this.groupId, this.artifactId, this.versionId, createViewProjectHandler(this.applicationStore), createViewSDLCProjectHandler(this.applicationStore, this.depotServerClient));
63
63
  const sourceInfo = {
64
- groupId: projectInfo.groupId,
65
- artifactId: projectInfo.artifactId,
66
- versionId: projectInfo.versionId,
64
+ groupId: this.groupId,
65
+ artifactId: this.artifactId,
66
+ versionId: this.versionId,
67
67
  dataSpace: dataSpace.path,
68
68
  };
69
- const queryBuilderState = new DataSpaceQueryBuilderState(this.applicationStore, this.graphManagerState, this.depotServerClient, QueryBuilderDataBrowserWorkflow.INSTANCE, new QueryBuilderActionConfig_QueryApplication(this), dataSpace, executionContext, (dataSpaceInfo) => {
69
+ const queryBuilderState = new DataSpaceQueryBuilderState(this.applicationStore, this.graphManagerState, QueryBuilderDataBrowserWorkflow.INSTANCE, new QueryBuilderActionConfig_QueryApplication(this), dataSpace, executionContext, createDataSpaceDepoRepo(this, this.groupId, this.artifactId, this.versionId, undefined), (dataSpaceInfo) => {
70
70
  this.applicationStore.notificationService.notifyWarning(`Can't switch data space to visit current template query`);
71
- }, true, dataSpaceAnalysisResult, undefined, undefined, undefined, projectInfo, this.applicationStore.config.options.queryBuilderConfig, sourceInfo);
71
+ }, dataSpaceAnalysisResult, undefined, undefined, undefined, this.applicationStore.config.options.queryBuilderConfig, sourceInfo);
72
72
  queryBuilderState.setExecutionContext(executionContext);
73
73
  queryBuilderState.propagateExecutionContextChange(executionContext);
74
74
  queryBuilderState.initializeWithQuery(dataSpaceExecutableTemplate.query);
@@ -1 +1 @@
1
- {"version":3,"file":"DataSpaceTemplateQueryCreatorStore.js","sourceRoot":"","sources":["../../../src/stores/data-space/DataSpaceTemplateQueryCreatorStore.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"DataSpaceTemplateQueryCreatorStore.js","sourceRoot":"","sources":["../../../src/stores/data-space/DataSpaceTemplateQueryCreatorStore.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-application-query",
3
- "version": "13.4.21",
3
+ "version": "13.5.1",
4
4
  "description": "Legend Query application core",
5
5
  "keywords": [
6
6
  "legend",
@@ -43,16 +43,17 @@
43
43
  "test:watch": "jest --watch"
44
44
  },
45
45
  "dependencies": {
46
- "@finos/legend-application": "15.1.5",
47
- "@finos/legend-art": "7.1.34",
48
- "@finos/legend-extension-dsl-data-space": "10.3.20",
49
- "@finos/legend-graph": "31.10.2",
50
- "@finos/legend-lego": "1.2.35",
51
- "@finos/legend-query-builder": "4.14.44",
52
- "@finos/legend-server-depot": "6.0.43",
53
- "@finos/legend-shared": "10.0.38",
54
- "@finos/legend-storage": "3.0.88",
55
- "@testing-library/react": "15.0.7",
46
+ "@finos/legend-application": "15.1.7",
47
+ "@finos/legend-art": "7.1.35",
48
+ "@finos/legend-extension-dsl-data-space": "10.3.22",
49
+ "@finos/legend-graph": "31.10.3",
50
+ "@finos/legend-lego": "1.2.37",
51
+ "@finos/legend-query-builder": "4.14.46",
52
+ "@finos/legend-server-depot": "6.0.44",
53
+ "@finos/legend-shared": "10.0.39",
54
+ "@finos/legend-storage": "3.0.89",
55
+ "@testing-library/dom": "10.1.0",
56
+ "@testing-library/react": "16.0.0",
56
57
  "@types/react": "18.3.3",
57
58
  "@types/react-dom": "18.3.0",
58
59
  "mobx": "6.12.3",
@@ -62,14 +63,14 @@
62
63
  "serializr": "3.0.2"
63
64
  },
64
65
  "devDependencies": {
65
- "@finos/legend-dev-utils": "2.1.6",
66
+ "@finos/legend-dev-utils": "2.1.7",
66
67
  "@jest/globals": "29.7.0",
67
68
  "cross-env": "7.0.3",
68
69
  "eslint": "8.57.0",
69
70
  "jest": "29.7.0",
70
71
  "npm-run-all": "4.1.5",
71
72
  "rimraf": "5.0.7",
72
- "sass": "1.77.3",
73
+ "sass": "1.77.4",
73
74
  "typescript": "5.4.5"
74
75
  },
75
76
  "peerDependencies": {
@@ -59,7 +59,7 @@ export type DataSpaceQueryEditorQueryParams = {
59
59
  [DATA_SPACE_QUERY_CREATOR_QUERY_PARAM_TOKEN.CLASS_PATH]?: string | undefined;
60
60
  };
61
61
 
62
- export const DATA_SPACE_QUERY_ROUTE_PATTERN = Object.freeze({
62
+ export const LEGACY_DATA_SPACE_QUERY_ROUTE_PATTERN = Object.freeze({
63
63
  SETUP: `/dataspace`,
64
64
  CREATE: `/dataspace/:${DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.GAV}/:${DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.DATA_SPACE_PATH}/:${DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.EXECUTION_CONTEXT}/:${DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.RUNTIME_PATH}?`,
65
65
  TEMPLATE_QUERY: `/dataspace/:${DATA_SPACE_TEMPLATE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.GAV}/:${DATA_SPACE_TEMPLATE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.DATA_SPACE_PATH}/:${DATA_SPACE_TEMPLATE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.TEMPLATE}/:${DATA_SPACE_TEMPLATE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.TEMPLATE_QUERY_ID}`,
@@ -67,7 +67,7 @@ export const DATA_SPACE_QUERY_ROUTE_PATTERN = Object.freeze({
67
67
 
68
68
  export const generateDataSpaceQuerySetupRoute = (): string =>
69
69
  generatePath(
70
- generateExtensionUrlPattern(DATA_SPACE_QUERY_ROUTE_PATTERN.SETUP),
70
+ generateExtensionUrlPattern(LEGACY_DATA_SPACE_QUERY_ROUTE_PATTERN.SETUP),
71
71
  {},
72
72
  );
73
73
 
@@ -82,7 +82,7 @@ export const generateDataSpaceQueryCreatorRoute = (
82
82
  ): string =>
83
83
  addQueryParametersToUrl(
84
84
  generatePath(
85
- generateExtensionUrlPattern(DATA_SPACE_QUERY_ROUTE_PATTERN.CREATE),
85
+ generateExtensionUrlPattern(LEGACY_DATA_SPACE_QUERY_ROUTE_PATTERN.CREATE),
86
86
  {
87
87
  [DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.GAV]:
88
88
  generateGAVCoordinates(groupId, artifactId, versionId),
@@ -109,7 +109,9 @@ export const generateDataSpaceTemplateQueryCreatorRoute = (
109
109
  templateQueryId: string,
110
110
  ): string =>
111
111
  generatePath(
112
- generateExtensionUrlPattern(DATA_SPACE_QUERY_ROUTE_PATTERN.TEMPLATE_QUERY),
112
+ generateExtensionUrlPattern(
113
+ LEGACY_DATA_SPACE_QUERY_ROUTE_PATTERN.TEMPLATE_QUERY,
114
+ ),
113
115
  {
114
116
  [DATA_SPACE_TEMPLATE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.GAV]:
115
117
  generateGAVCoordinates(groupId, artifactId, versionId),
@@ -33,6 +33,7 @@ export enum LEGEND_QUERY_ROUTE_PATTERN_TOKEN {
33
33
  }
34
34
 
35
35
  export const LEGEND_QUERY_ROUTE_PATTERN = Object.freeze({
36
+ DEFAULT: '/',
36
37
  SETUP: '/setup',
37
38
  EDIT_EXISTING_QUERY_SETUP: '/setup/existing-query',
38
39
  CREATE_MAPPING_QUERY_SETUP: '/setup/manual',
@@ -74,7 +74,6 @@ import {
74
74
  import {
75
75
  ExistingQueryEditorStore,
76
76
  QueryBuilderActionConfig_QueryApplication,
77
- createViewSDLCProjectHandler,
78
77
  } from '../stores/QueryEditorStore.js';
79
78
  import {
80
79
  DataSpaceQueryBuilderState,
@@ -87,6 +86,7 @@ import { buildUrl } from '@finos/legend-shared';
87
86
  import { parseProjectIdentifier } from '@finos/legend-storage';
88
87
  import { QueryEditorExistingQueryHeader } from './QueryEditor.js';
89
88
  import { DataSpaceTemplateQueryCreatorStore } from '../stores/data-space/DataSpaceTemplateQueryCreatorStore.js';
89
+ import { createViewSDLCProjectHandler } from '../stores/data-space/DataSpaceQueryBuilderHelper.js';
90
90
 
91
91
  export class Core_LegendQueryApplicationPlugin extends LegendQueryApplicationPlugin {
92
92
  static NAME = packageJson.extensions.applicationQueryPlugin;
@@ -371,13 +371,16 @@ export class Core_LegendQueryApplicationPlugin extends LegendQueryApplicationPlu
371
371
  LegendQueryTelemetryHelper.logEvent_QueryViewSdlcProjectLaunched(
372
372
  editorStore.applicationStore.telemetryService,
373
373
  );
374
- const { groupId, artifactId } = editorStore.getProjectInfo();
375
- createViewSDLCProjectHandler(
376
- editorStore.applicationStore,
377
- editorStore.depotServerClient,
378
- )(groupId, artifactId, undefined).catch(
379
- editorStore.applicationStore.alertUnhandledError,
380
- );
374
+ const projectInfo = editorStore.getProjectInfo();
375
+ if (projectInfo) {
376
+ const { groupId, artifactId } = projectInfo;
377
+ createViewSDLCProjectHandler(
378
+ editorStore.applicationStore,
379
+ editorStore.depotServerClient,
380
+ )(groupId, artifactId, undefined).catch(
381
+ editorStore.applicationStore.alertUnhandledError,
382
+ );
383
+ }
381
384
  }
382
385
  },
383
386
  icon: <InfoCircleIcon />,
@@ -539,18 +542,22 @@ export class Core_LegendQueryApplicationPlugin extends LegendQueryApplicationPlu
539
542
  const editorStore =
540
543
  queryBuilderState.workflowState.actionConfig.editorStore;
541
544
  const openSaveQueryModal = (): void => {
542
- if (editorStore instanceof ExistingQueryEditorStore) {
543
- editorStore.updateState.showSaveModal();
544
- } else {
545
- editorStore.queryCreatorState.open(undefined);
545
+ if (editorStore.canPersistToSavedQuery) {
546
+ if (editorStore instanceof ExistingQueryEditorStore) {
547
+ editorStore.updateState.showSaveModal();
548
+ } else {
549
+ editorStore.queryCreatorState.open(undefined);
550
+ }
546
551
  }
547
552
  };
548
553
  const handleQuerySaveAs = (): void => {
549
- editorStore.queryCreatorState.open(
550
- editorStore instanceof ExistingQueryEditorStore
551
- ? editorStore.query
552
- : undefined,
553
- );
554
+ if (editorStore.canPersistToSavedQuery) {
555
+ editorStore.queryCreatorState.open(
556
+ editorStore instanceof ExistingQueryEditorStore
557
+ ? editorStore.query
558
+ : undefined,
559
+ );
560
+ }
554
561
  };
555
562
  return (
556
563
  <div className="query-editor__header__action-combo btn__dropdown-combo">
@@ -558,6 +565,7 @@ export class Core_LegendQueryApplicationPlugin extends LegendQueryApplicationPlu
558
565
  className="query-editor__header__action query-editor__header__action-combo__main-btn btn--dak"
559
566
  disabled={
560
567
  editorStore.isPerformingBlockingAction ||
568
+ !editorStore.canPersistToSavedQuery ||
561
569
  !queryBuilderState.canBuildQuery
562
570
  }
563
571
  onClick={openSaveQueryModal}
@@ -24,7 +24,6 @@ import {
24
24
  } from './QueryEditor.js';
25
25
  import {
26
26
  BrowserEnvironmentProvider,
27
- Redirect,
28
27
  Route,
29
28
  Switch,
30
29
  generateExtensionUrlPattern,
@@ -39,8 +38,7 @@ import { EditExistingQuerySetup } from './EditExistingQuerySetup.js';
39
38
  import { CreateMappingQuerySetup } from './CreateMappingQuerySetup.js';
40
39
  import { useEffect } from 'react';
41
40
  import { flowResult } from 'mobx';
42
- import { DATA_SPACE_QUERY_ROUTE_PATTERN } from '../__lib__/DSL_DataSpace_LegendQueryNavigation.js';
43
- import { DataSpaceQuerySetup } from './data-space/DataSpaceQuerySetup.js';
41
+ import { LEGACY_DATA_SPACE_QUERY_ROUTE_PATTERN } from '../__lib__/DSL_DataSpace_LegendQueryNavigation.js';
44
42
  import { DataSpaceTemplateQueryCreator } from './data-space/DataSpaceTemplateQueryCreator.js';
45
43
  import { DataSpaceQueryCreator } from './data-space/DataSpaceQueryCreator.js';
46
44
 
@@ -57,17 +55,16 @@ const LegendQueryWebApplicationRouter = observer(() => {
57
55
  applicationStore.alertUnhandledError,
58
56
  );
59
57
  }, [applicationStore, baseStore]);
60
-
61
58
  return (
62
59
  <div className="app">
63
60
  {baseStore.initState.hasCompleted && (
64
61
  <Switch>
65
62
  <Route
66
63
  exact={true}
67
- path={LEGEND_QUERY_ROUTE_PATTERN.SETUP}
64
+ path={LEGEND_QUERY_ROUTE_PATTERN.DEFAULT}
68
65
  component={
69
66
  // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
70
- QuerySetupLandingPage as TEMPORARY__ReactRouterComponentType
67
+ DataSpaceQueryCreator as TEMPORARY__ReactRouterComponentType
71
68
  }
72
69
  />
73
70
  <Route
@@ -78,6 +75,29 @@ const LegendQueryWebApplicationRouter = observer(() => {
78
75
  EditExistingQuerySetup as TEMPORARY__ReactRouterComponentType
79
76
  }
80
77
  />
78
+
79
+ <Route
80
+ exact={true}
81
+ path={[
82
+ generateExtensionUrlPattern(
83
+ LEGACY_DATA_SPACE_QUERY_ROUTE_PATTERN.TEMPLATE_QUERY,
84
+ ),
85
+ ]}
86
+ component={
87
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
88
+ DataSpaceTemplateQueryCreator as TEMPORARY__ReactRouterComponentType
89
+ }
90
+ />
91
+
92
+ <Route
93
+ exact={true}
94
+ path={LEGEND_QUERY_ROUTE_PATTERN.SETUP}
95
+ component={
96
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
97
+ QuerySetupLandingPage as TEMPORARY__ReactRouterComponentType
98
+ }
99
+ />
100
+
81
101
  <Route
82
102
  exact={true}
83
103
  path={LEGEND_QUERY_ROUTE_PATTERN.CREATE_MAPPING_QUERY_SETUP}
@@ -110,28 +130,17 @@ const LegendQueryWebApplicationRouter = observer(() => {
110
130
  MappingQueryCreator as TEMPORARY__ReactRouterComponentType
111
131
  }
112
132
  />
113
- {/* DATA SPACE */}
114
- <Route
115
- exact={true}
116
- path={[
117
- generateExtensionUrlPattern(DATA_SPACE_QUERY_ROUTE_PATTERN.SETUP),
118
- ]}
119
- component={
120
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
121
- DataSpaceQuerySetup as TEMPORARY__ReactRouterComponentType
122
- }
123
- />
124
-
133
+ {/* LEGACY DATA SPACE */}
125
134
  <Route
126
135
  exact={true}
127
136
  path={[
128
137
  generateExtensionUrlPattern(
129
- DATA_SPACE_QUERY_ROUTE_PATTERN.TEMPLATE_QUERY,
138
+ LEGACY_DATA_SPACE_QUERY_ROUTE_PATTERN.SETUP,
130
139
  ),
131
140
  ]}
132
141
  component={
133
142
  // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
134
- DataSpaceTemplateQueryCreator as TEMPORARY__ReactRouterComponentType
143
+ DataSpaceQueryCreator as TEMPORARY__ReactRouterComponentType
135
144
  }
136
145
  />
137
146
 
@@ -139,7 +148,7 @@ const LegendQueryWebApplicationRouter = observer(() => {
139
148
  exact={true}
140
149
  path={[
141
150
  generateExtensionUrlPattern(
142
- DATA_SPACE_QUERY_ROUTE_PATTERN.CREATE,
151
+ LEGACY_DATA_SPACE_QUERY_ROUTE_PATTERN.CREATE,
143
152
  ),
144
153
  ]}
145
154
  component={
@@ -159,12 +168,6 @@ const LegendQueryWebApplicationRouter = observer(() => {
159
168
  }
160
169
  />
161
170
  ))}
162
- {/* Redirect to data space view */}
163
- <Redirect
164
- to={generateExtensionUrlPattern(
165
- DATA_SPACE_QUERY_ROUTE_PATTERN.SETUP,
166
- )}
167
- />
168
171
  </Switch>
169
172
  )}
170
173
  </div>
@@ -721,7 +721,8 @@ export const QueryEditor = observer(() => {
721
721
  title="Load query"
722
722
  />
723
723
  )}
724
- {editorStore.queryCreatorState.showCreateModal && <CreateQueryDialog />}
724
+ {editorStore.canPersistToSavedQuery &&
725
+ editorStore.queryCreatorState.showCreateModal && <CreateQueryDialog />}
725
726
  {editorStore.showAppInfo && (
726
727
  <LegendQueryInfo
727
728
  open={editorStore.showAppInfo}
@@ -16,13 +16,16 @@
16
16
 
17
17
  import { observer, useLocalObservable } from 'mobx-react-lite';
18
18
  import { useApplicationStore } from '@finos/legend-application';
19
- import { useParams } from '@finos/legend-application/browser';
19
+ import { generatePath, useParams } from '@finos/legend-application/browser';
20
20
  import { parseGAVCoordinates } from '@finos/legend-storage';
21
21
  import {
22
22
  useLegendQueryApplicationStore,
23
23
  useLegendQueryBaseStore,
24
24
  } from '../LegendQueryFrameworkProvider.js';
25
- import { DataSpaceQueryCreatorStore } from '../../stores/data-space/DataSpaceQueryCreatorStore.js';
25
+ import {
26
+ DataSpaceQueryCreatorStore,
27
+ type QueryableDataSpace,
28
+ } from '../../stores/data-space/DataSpaceQueryCreatorStore.js';
26
29
  import { QueryEditorStoreContext } from '../QueryEditorStoreProvider.js';
27
30
  import {
28
31
  DATA_SPACE_QUERY_CREATOR_QUERY_PARAM_TOKEN,
@@ -30,12 +33,14 @@ import {
30
33
  type DataSpaceQueryCreatorPathParams,
31
34
  } from '../../__lib__/DSL_DataSpace_LegendQueryNavigation.js';
32
35
  import { QueryEditor } from '../QueryEditor.js';
36
+ import { LEGEND_QUERY_ROUTE_PATTERN } from '../../__lib__/LegendQueryNavigation.js';
37
+ import { useEffect } from 'react';
33
38
 
34
39
  const DataSpaceQueryCreatorStoreProvider: React.FC<{
35
40
  children: React.ReactNode;
36
- gav: string;
37
- dataSpacePath: string;
38
- executionContext: string;
41
+ gav: string | undefined;
42
+ dataSpacePath: string | undefined;
43
+ executionContext: string | undefined;
39
44
  runtimePath: string | undefined;
40
45
  classPath: string | undefined;
41
46
  }> = ({
@@ -46,7 +51,19 @@ const DataSpaceQueryCreatorStoreProvider: React.FC<{
46
51
  runtimePath,
47
52
  classPath,
48
53
  }) => {
49
- const { groupId, artifactId, versionId } = parseGAVCoordinates(gav);
54
+ let queryableDataSpace: QueryableDataSpace | undefined = undefined;
55
+ if (gav && dataSpacePath && executionContext) {
56
+ const { groupId, artifactId, versionId } = parseGAVCoordinates(gav);
57
+ queryableDataSpace = {
58
+ groupId,
59
+ artifactId,
60
+ versionId,
61
+ dataSpacePath,
62
+ executionContext,
63
+ runtimePath,
64
+ classPath,
65
+ };
66
+ }
50
67
  const applicationStore = useLegendQueryApplicationStore();
51
68
  const baseStore = useLegendQueryBaseStore();
52
69
  const store = useLocalObservable(
@@ -54,15 +71,14 @@ const DataSpaceQueryCreatorStoreProvider: React.FC<{
54
71
  new DataSpaceQueryCreatorStore(
55
72
  applicationStore,
56
73
  baseStore.depotServerClient,
57
- groupId,
58
- artifactId,
59
- versionId,
60
- dataSpacePath,
61
- executionContext,
62
- runtimePath,
63
- classPath,
74
+ queryableDataSpace,
64
75
  ),
65
76
  );
77
+ useEffect(() => {
78
+ applicationStore.navigationService.navigator.updateCurrentLocation(
79
+ generatePath(LEGEND_QUERY_ROUTE_PATTERN.DEFAULT),
80
+ );
81
+ }, [applicationStore]);
66
82
  return (
67
83
  <QueryEditorStoreContext.Provider value={store}>
68
84
  {children}
@@ -72,14 +88,16 @@ const DataSpaceQueryCreatorStoreProvider: React.FC<{
72
88
 
73
89
  export const DataSpaceQueryCreator = observer(() => {
74
90
  const applicationStore = useApplicationStore();
75
- const parameters = useParams<DataSpaceQueryCreatorPathParams>();
76
- const gav = parameters[DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.GAV];
91
+ const parameters = useParams<DataSpaceQueryCreatorPathParams | undefined>();
92
+ const gav = parameters?.[DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.GAV];
77
93
  const dataSpacePath =
78
- parameters[DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.DATA_SPACE_PATH];
94
+ parameters?.[DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.DATA_SPACE_PATH];
79
95
  const executionContext =
80
- parameters[DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.EXECUTION_CONTEXT];
96
+ parameters?.[
97
+ DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.EXECUTION_CONTEXT
98
+ ];
81
99
  const runtimePath =
82
- parameters[DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.RUNTIME_PATH];
100
+ parameters?.[DATA_SPACE_QUERY_CREATOR_ROUTE_PATTERN_TOKEN.RUNTIME_PATH];
83
101
  const classPath =
84
102
  applicationStore.navigationService.navigator.getCurrentLocationParameterValue(
85
103
  DATA_SPACE_QUERY_CREATOR_QUERY_PARAM_TOKEN.CLASS_PATH,
@@ -14,7 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- import { observer, useLocalObservable } from 'mobx-react-lite';
17
+ import { observer } from 'mobx-react-lite';
18
18
  import { useApplicationStore } from '@finos/legend-application';
19
19
  import { useEffect, useRef } from 'react';
20
20
  import { flowResult } from 'mobx';
@@ -26,16 +26,7 @@ import {
26
26
  compareLabelFn,
27
27
  type SelectComponent,
28
28
  } from '@finos/legend-art';
29
- import {
30
- useLegendQueryApplicationStore,
31
- useLegendQueryBaseStore,
32
- } from '../LegendQueryFrameworkProvider.js';
33
- import {
34
- type DataSpaceQuerySetupState,
35
- DataSpaceQuerySetupStore,
36
- } from '../../stores/data-space/DataSpaceQuerySetupState.js';
37
- import { QueryEditorStoreContext } from '../QueryEditorStoreProvider.js';
38
- import { QueryEditor } from '../QueryEditor.js';
29
+ import { type DataSpaceQuerySetupState } from '../../stores/data-space/DataSpaceQuerySetupState.js';
39
30
  import {
40
31
  DataSpaceAdvancedSearchModal,
41
32
  buildDataSpaceOption,
@@ -43,31 +34,6 @@ import {
43
34
  type DataSpaceOption,
44
35
  } from '@finos/legend-extension-dsl-data-space/application-query';
45
36
 
46
- const DataSpaceQuerySetupStoreProvider: React.FC<{
47
- children: React.ReactNode;
48
- }> = ({ children }) => {
49
- const applicationStore = useLegendQueryApplicationStore();
50
- const baseStore = useLegendQueryBaseStore();
51
- const store = useLocalObservable(
52
- () =>
53
- new DataSpaceQuerySetupStore(
54
- applicationStore,
55
- baseStore.depotServerClient,
56
- ),
57
- );
58
- return (
59
- <QueryEditorStoreContext.Provider value={store}>
60
- {children}
61
- </QueryEditorStoreContext.Provider>
62
- );
63
- };
64
-
65
- export const DataSpaceQuerySetup = observer(() => (
66
- <DataSpaceQuerySetupStoreProvider>
67
- <QueryEditor />
68
- </DataSpaceQuerySetupStoreProvider>
69
- ));
70
-
71
37
  /**
72
38
  * This setup panel supports cascading in order: Data-space -> Execution context (-> Runtime) -> Class
73
39
  *
package/src/index.ts CHANGED
@@ -37,12 +37,14 @@ export * from './stores/LegendQueryApplicationPlugin.js';
37
37
  export { BaseQuerySetupStore } from './stores/QuerySetupStore.js';
38
38
  export {
39
39
  type QueryPersistConfiguration,
40
- createViewProjectHandler,
41
- createViewSDLCProjectHandler,
42
40
  QueryEditorStore,
43
41
  ExistingQueryEditorStore,
44
42
  QueryBuilderActionConfig_QueryApplication,
45
43
  } from './stores/QueryEditorStore.js';
44
+ export {
45
+ createViewProjectHandler,
46
+ createViewSDLCProjectHandler,
47
+ } from './stores/data-space/DataSpaceQueryBuilderHelper.js';
46
48
  // components
47
49
  export {
48
50
  QueryEditorStoreContext,