@finos/legend-extension-dsl-data-space 9.0.45 → 9.0.47
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/DataSpaceViewer.d.ts.map +1 -1
- package/lib/components/DataSpaceViewer.js +2 -2
- package/lib/components/DataSpaceViewer.js.map +1 -1
- package/lib/components/query/DSL_DataSpace_LegendQueryApplicationPlugin.d.ts.map +1 -1
- package/lib/components/query/DSL_DataSpace_LegendQueryApplicationPlugin.js +9 -9
- package/lib/components/query/DSL_DataSpace_LegendQueryApplicationPlugin.js.map +1 -1
- package/lib/components/query/DataSpaceQueryBuilder.d.ts.map +1 -1
- package/lib/components/query/DataSpaceQueryBuilder.js +5 -3
- package/lib/components/query/DataSpaceQueryBuilder.js.map +1 -1
- package/lib/components/query/DataSpaceQueryCreator.d.ts.map +1 -1
- package/lib/components/query/DataSpaceQueryCreator.js +1 -1
- package/lib/components/query/DataSpaceQueryCreator.js.map +1 -1
- package/lib/components/query/DataSpaceQuerySetup.d.ts.map +1 -1
- package/lib/components/query/DataSpaceQuerySetup.js +1 -1
- package/lib/components/query/DataSpaceQuerySetup.js.map +1 -1
- package/lib/graphManager/protocol/pure/v1/V1_DSL_DataSpace_PureGraphManagerExtension.js +1 -1
- package/lib/graphManager/protocol/pure/v1/V1_DSL_DataSpace_PureGraphManagerExtension.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/package.json +5 -5
- package/lib/stores/DataSpaceViewerState.d.ts +3 -2
- package/lib/stores/DataSpaceViewerState.d.ts.map +1 -1
- package/lib/stores/DataSpaceViewerState.js +3 -1
- package/lib/stores/DataSpaceViewerState.js.map +1 -1
- package/lib/stores/query/DataSpaceAdvancedSearchState.d.ts.map +1 -1
- package/lib/stores/query/DataSpaceAdvancedSearchState.js +4 -4
- package/lib/stores/query/DataSpaceAdvancedSearchState.js.map +1 -1
- package/lib/stores/query/DataSpaceQueryBuilderState.js +1 -1
- package/lib/stores/query/DataSpaceQueryBuilderState.js.map +1 -1
- package/lib/stores/query/DataSpaceQueryCreatorStore.js +5 -5
- package/lib/stores/query/DataSpaceQueryCreatorStore.js.map +1 -1
- package/lib/stores/query/DataSpaceQuerySetupStore.js +3 -3
- package/lib/stores/query/DataSpaceQuerySetupStore.js.map +1 -1
- package/package.json +16 -16
- package/src/components/DataSpaceViewer.tsx +26 -13
- package/src/components/query/DSL_DataSpace_LegendQueryApplicationPlugin.tsx +11 -9
- package/src/components/query/DataSpaceQueryBuilder.tsx +13 -4
- package/src/components/query/DataSpaceQueryCreator.tsx +3 -1
- package/src/components/query/DataSpaceQuerySetup.tsx +3 -1
- package/src/graphManager/protocol/pure/v1/V1_DSL_DataSpace_PureGraphManagerExtension.ts +1 -1
- package/src/index.ts +4 -2
- package/src/stores/DataSpaceViewerState.ts +9 -1
- package/src/stores/query/DataSpaceAdvancedSearchState.ts +4 -3
- package/src/stores/query/DataSpaceQueryBuilderState.ts +1 -1
- package/src/stores/query/DataSpaceQueryCreatorStore.ts +5 -5
- package/src/stores/query/DataSpaceQuerySetupStore.ts +3 -3
|
@@ -124,7 +124,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
|
|
|
124
124
|
),
|
|
125
125
|
(dataSpaceInfo: DataSpaceInfo) => {
|
|
126
126
|
if (dataSpaceInfo.defaultExecutionContext) {
|
|
127
|
-
this.applicationStore.navigator.goToLocation(
|
|
127
|
+
this.applicationStore.navigationService.navigator.goToLocation(
|
|
128
128
|
generateDataSpaceQueryCreatorRoute(
|
|
129
129
|
dataSpaceInfo.groupId,
|
|
130
130
|
dataSpaceInfo.artifactId,
|
|
@@ -136,7 +136,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
|
|
|
136
136
|
),
|
|
137
137
|
);
|
|
138
138
|
} else {
|
|
139
|
-
this.applicationStore.notifyWarning(
|
|
139
|
+
this.applicationStore.notificationService.notifyWarning(
|
|
140
140
|
`Can't switch data space: default execution context not specified`,
|
|
141
141
|
);
|
|
142
142
|
}
|
|
@@ -147,7 +147,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
|
|
|
147
147
|
queryBuilderState.runtimeValue,
|
|
148
148
|
RuntimePointer,
|
|
149
149
|
);
|
|
150
|
-
this.applicationStore.navigator.updateCurrentLocation(
|
|
150
|
+
this.applicationStore.navigationService.navigator.updateCurrentLocation(
|
|
151
151
|
generateDataSpaceQueryCreatorRoute(
|
|
152
152
|
this.groupId,
|
|
153
153
|
this.artifactId,
|
|
@@ -164,7 +164,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
|
|
|
164
164
|
},
|
|
165
165
|
(runtimeValue: Runtime) => {
|
|
166
166
|
const runtimePointer = guaranteeType(runtimeValue, RuntimePointer);
|
|
167
|
-
queryBuilderState.applicationStore.navigator.updateCurrentLocation(
|
|
167
|
+
queryBuilderState.applicationStore.navigationService.navigator.updateCurrentLocation(
|
|
168
168
|
generateDataSpaceQueryCreatorRoute(
|
|
169
169
|
queryBuilderState.groupId,
|
|
170
170
|
queryBuilderState.artifactId,
|
|
@@ -185,7 +185,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
|
|
|
185
185
|
queryBuilderState.runtimeValue,
|
|
186
186
|
RuntimePointer,
|
|
187
187
|
);
|
|
188
|
-
queryBuilderState.applicationStore.navigator.updateCurrentLocation(
|
|
188
|
+
queryBuilderState.applicationStore.navigationService.navigator.updateCurrentLocation(
|
|
189
189
|
generateDataSpaceQueryCreatorRoute(
|
|
190
190
|
queryBuilderState.groupId,
|
|
191
191
|
queryBuilderState.artifactId,
|
|
@@ -145,7 +145,7 @@ export class DataSpaceQuerySetupState extends QueryBuilderState {
|
|
|
145
145
|
} catch (error) {
|
|
146
146
|
assertErrorThrown(error);
|
|
147
147
|
this.loadDataSpacesState.fail();
|
|
148
|
-
this.applicationStore.notifyError(error);
|
|
148
|
+
this.applicationStore.notificationService.notifyError(error);
|
|
149
149
|
}
|
|
150
150
|
}
|
|
151
151
|
}
|
|
@@ -174,7 +174,7 @@ export class DataSpaceQuerySetupStore extends QueryEditorStore {
|
|
|
174
174
|
this.depotServerClient,
|
|
175
175
|
(dataSpaceInfo: DataSpaceInfo) => {
|
|
176
176
|
if (dataSpaceInfo.defaultExecutionContext) {
|
|
177
|
-
this.applicationStore.navigator.goToLocation(
|
|
177
|
+
this.applicationStore.navigationService.navigator.goToLocation(
|
|
178
178
|
generateDataSpaceQueryCreatorRoute(
|
|
179
179
|
dataSpaceInfo.groupId,
|
|
180
180
|
dataSpaceInfo.artifactId,
|
|
@@ -186,7 +186,7 @@ export class DataSpaceQuerySetupStore extends QueryEditorStore {
|
|
|
186
186
|
),
|
|
187
187
|
);
|
|
188
188
|
} else {
|
|
189
|
-
this.applicationStore.notifyWarning(
|
|
189
|
+
this.applicationStore.notificationService.notifyWarning(
|
|
190
190
|
`Can't switch data space: default execution context not specified`,
|
|
191
191
|
);
|
|
192
192
|
}
|