@finos/legend-query-builder 3.1.0 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/__lib__/QueryBuilderTelemetryHelper.d.ts +20 -20
- package/lib/__lib__/QueryBuilderTelemetryHelper.d.ts.map +1 -1
- package/lib/__lib__/QueryBuilderTelemetryHelper.js +40 -40
- package/lib/__lib__/QueryBuilderTelemetryHelper.js.map +1 -1
- package/lib/components/QueryLoader.d.ts +30 -0
- package/lib/components/QueryLoader.d.ts.map +1 -0
- package/lib/components/QueryLoader.js +160 -0
- package/lib/components/QueryLoader.js.map +1 -0
- package/lib/components/shared/QueryBuilderPanelIssueCountBadge.d.ts.map +1 -1
- package/lib/components/shared/QueryBuilderPanelIssueCountBadge.js +2 -1
- package/lib/components/shared/QueryBuilderPanelIssueCountBadge.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +3 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -1
- package/lib/package.json +1 -1
- package/lib/stores/QueryBuilder_LegendApplicationPlugin_Extension.d.ts +30 -0
- package/lib/stores/QueryBuilder_LegendApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/QueryBuilder_LegendApplicationPlugin_Extension.js +17 -0
- package/lib/stores/QueryBuilder_LegendApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/QueryLoaderState.d.ts +67 -0
- package/lib/stores/QueryLoaderState.d.ts.map +1 -0
- package/lib/stores/QueryLoaderState.js +205 -0
- package/lib/stores/QueryLoaderState.js.map +1 -0
- package/lib/stores/shared/ValueSpecificationEditorHelper.d.ts +3 -1
- package/lib/stores/shared/ValueSpecificationEditorHelper.d.ts.map +1 -1
- package/lib/stores/shared/ValueSpecificationEditorHelper.js +7 -1
- package/lib/stores/shared/ValueSpecificationEditorHelper.js.map +1 -1
- package/package.json +8 -8
- package/src/__lib__/QueryBuilderTelemetryHelper.ts +40 -59
- package/src/components/QueryLoader.tsx +501 -0
- package/src/components/shared/QueryBuilderPanelIssueCountBadge.tsx +2 -1
- package/src/index.ts +3 -0
- package/src/stores/QueryBuilder_LegendApplicationPlugin_Extension.ts +36 -0
- package/src/stores/QueryLoaderState.ts +298 -0
- package/src/stores/shared/ValueSpecificationEditorHelper.ts +39 -2
- package/tsconfig.json +3 -0
@@ -0,0 +1,30 @@
|
|
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 { LegendApplicationPlugin } from '@finos/legend-application';
|
17
|
+
import type { QueryBuilderState } from './QueryBuilderState.js';
|
18
|
+
import type { QuerySearchSpecification } from '@finos/legend-graph';
|
19
|
+
export type LoadQueryFilterOption = {
|
20
|
+
key: string;
|
21
|
+
label: (queryBuilderState: QueryBuilderState) => string | undefined;
|
22
|
+
filterFunction: (searchSpecification: QuerySearchSpecification, queryBuilderState: QueryBuilderState) => QuerySearchSpecification;
|
23
|
+
};
|
24
|
+
export interface QueryBuilder_LegendApplicationPlugin_Extension extends LegendApplicationPlugin {
|
25
|
+
/**
|
26
|
+
* Get the list of filter options for query loader.
|
27
|
+
*/
|
28
|
+
getExtraLoadQueryFilterOptions?(): LoadQueryFilterOption[];
|
29
|
+
}
|
30
|
+
//# sourceMappingURL=QueryBuilder_LegendApplicationPlugin_Extension.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"QueryBuilder_LegendApplicationPlugin_Extension.d.ts","sourceRoot":"","sources":["../../src/stores/QueryBuilder_LegendApplicationPlugin_Extension.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC;AAEpE,MAAM,MAAM,qBAAqB,GAAG;IAClC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,CAAC,iBAAiB,EAAE,iBAAiB,KAAK,MAAM,GAAG,SAAS,CAAC;IACpE,cAAc,EAAE,CACd,mBAAmB,EAAE,wBAAwB,EAC7C,iBAAiB,EAAE,iBAAiB,KACjC,wBAAwB,CAAC;CAC/B,CAAC;AAEF,MAAM,WAAW,8CACf,SAAQ,uBAAuB;IAC/B;;OAEG;IACH,8BAA8B,CAAC,IAAI,qBAAqB,EAAE,CAAC;CAC5D"}
|
@@ -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 {};
|
17
|
+
//# sourceMappingURL=QueryBuilder_LegendApplicationPlugin_Extension.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"QueryBuilder_LegendApplicationPlugin_Extension.js","sourceRoot":"","sources":["../../src/stores/QueryBuilder_LegendApplicationPlugin_Extension.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG"}
|
@@ -0,0 +1,67 @@
|
|
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 GenericLegendApplicationStore } from '@finos/legend-application';
|
17
|
+
import { type LightQuery, QuerySearchSpecification, type QueryInfo, type BasicGraphManagerState } from '@finos/legend-graph';
|
18
|
+
import { ActionState, type GeneratorFn } from '@finos/legend-shared';
|
19
|
+
import type { QueryBuilderState } from './QueryBuilderState.js';
|
20
|
+
import type { LoadQueryFilterOption } from './QueryBuilder_LegendApplicationPlugin_Extension.js';
|
21
|
+
export declare const QUERY_LOADER_TYPEAHEAD_SEARCH_LIMIT = 20;
|
22
|
+
export declare class QueryLoaderState {
|
23
|
+
readonly applicationStore: GenericLegendApplicationStore;
|
24
|
+
readonly graphManagerState: BasicGraphManagerState;
|
25
|
+
readonly searchQueriesState: ActionState;
|
26
|
+
readonly renameQueryState: ActionState;
|
27
|
+
readonly deleteQueryState: ActionState;
|
28
|
+
readonly previewQueryState: ActionState;
|
29
|
+
readonly decorateSearchSpecification?: ((val: QuerySearchSpecification) => QuerySearchSpecification) | undefined;
|
30
|
+
readonly loadQuery: (query: LightQuery) => void;
|
31
|
+
readonly fetchDefaultQueries?: (() => Promise<LightQuery[]>) | undefined;
|
32
|
+
readonly generateDefaultQueriesSummaryText?: ((queries: LightQuery[]) => string) | undefined;
|
33
|
+
readonly isReadOnly?: boolean | undefined;
|
34
|
+
readonly onQueryRenamed?: ((query: LightQuery) => void) | undefined;
|
35
|
+
readonly onQueryDeleted?: ((query: LightQuery) => void) | undefined;
|
36
|
+
queryBuilderState?: QueryBuilderState | undefined;
|
37
|
+
searchText: string;
|
38
|
+
showCurrentUserQueriesOnly: boolean;
|
39
|
+
extraFilters: Map<string, boolean>;
|
40
|
+
extraFilterOptions: LoadQueryFilterOption[];
|
41
|
+
queries: LightQuery[];
|
42
|
+
isQueryLoaderDialogOpen: boolean;
|
43
|
+
showingDefaultQueries: boolean;
|
44
|
+
showPreviewViewer: boolean;
|
45
|
+
queryPreviewContent?: QueryInfo;
|
46
|
+
constructor(applicationStore: GenericLegendApplicationStore, graphManagerState: BasicGraphManagerState, options: {
|
47
|
+
decorateSearchSpecification?: ((val: QuerySearchSpecification) => QuerySearchSpecification) | undefined;
|
48
|
+
loadQuery: (query: LightQuery) => void;
|
49
|
+
fetchDefaultQueries?: (() => Promise<LightQuery[]>) | undefined;
|
50
|
+
generateDefaultQueriesSummaryText?: ((queries: LightQuery[]) => string) | undefined;
|
51
|
+
isReadOnly?: boolean | undefined;
|
52
|
+
onQueryRenamed?: ((query: LightQuery) => void) | undefined;
|
53
|
+
onQueryDeleted?: ((query: LightQuery) => void) | undefined;
|
54
|
+
});
|
55
|
+
setSearchText(val: string): void;
|
56
|
+
setQueryLoaderDialogOpen(val: boolean): void;
|
57
|
+
setQueries(val: LightQuery[]): void;
|
58
|
+
setShowPreviewViewer(val: boolean): void;
|
59
|
+
setShowCurrentUserQueriesOnly(val: boolean): void;
|
60
|
+
reset(): void;
|
61
|
+
initialize(queryBuilderState: QueryBuilderState): GeneratorFn<void>;
|
62
|
+
searchQueries(searchText: string): GeneratorFn<void>;
|
63
|
+
renameQuery(queryId: string, name: string): GeneratorFn<void>;
|
64
|
+
deleteQuery(queryId: string): GeneratorFn<void>;
|
65
|
+
getPreviewQueryContent(queryId: string): GeneratorFn<void>;
|
66
|
+
}
|
67
|
+
//# sourceMappingURL=QueryLoaderState.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"QueryLoaderState.d.ts","sourceRoot":"","sources":["../../src/stores/QueryLoaderState.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,205 @@
|
|
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 { DEFAULT_TYPEAHEAD_SEARCH_MINIMUM_SEARCH_LENGTH, } from '@finos/legend-application';
|
17
|
+
import { QuerySearchSpecification, } from '@finos/legend-graph';
|
18
|
+
import { ActionState, assertErrorThrown, guaranteeNonNullable, } from '@finos/legend-shared';
|
19
|
+
import { makeObservable, observable, action, flow } from 'mobx';
|
20
|
+
export const QUERY_LOADER_TYPEAHEAD_SEARCH_LIMIT = 20;
|
21
|
+
export class QueryLoaderState {
|
22
|
+
applicationStore;
|
23
|
+
graphManagerState;
|
24
|
+
searchQueriesState = ActionState.create();
|
25
|
+
renameQueryState = ActionState.create();
|
26
|
+
deleteQueryState = ActionState.create();
|
27
|
+
previewQueryState = ActionState.create();
|
28
|
+
decorateSearchSpecification;
|
29
|
+
loadQuery;
|
30
|
+
fetchDefaultQueries;
|
31
|
+
generateDefaultQueriesSummaryText;
|
32
|
+
isReadOnly;
|
33
|
+
onQueryRenamed;
|
34
|
+
onQueryDeleted;
|
35
|
+
queryBuilderState;
|
36
|
+
searchText = '';
|
37
|
+
showCurrentUserQueriesOnly = false; // TODO: if we start having more native filters, we should make them part of `extraFilters`
|
38
|
+
extraFilters = new Map();
|
39
|
+
extraFilterOptions = [];
|
40
|
+
queries = [];
|
41
|
+
isQueryLoaderDialogOpen = false;
|
42
|
+
showingDefaultQueries = true;
|
43
|
+
showPreviewViewer = false;
|
44
|
+
queryPreviewContent;
|
45
|
+
constructor(applicationStore, graphManagerState, options) {
|
46
|
+
makeObservable(this, {
|
47
|
+
isQueryLoaderDialogOpen: observable,
|
48
|
+
queryPreviewContent: observable,
|
49
|
+
showingDefaultQueries: observable,
|
50
|
+
queries: observable,
|
51
|
+
showCurrentUserQueriesOnly: observable,
|
52
|
+
showPreviewViewer: observable,
|
53
|
+
searchText: observable,
|
54
|
+
setSearchText: action,
|
55
|
+
setQueryLoaderDialogOpen: action,
|
56
|
+
setQueries: action,
|
57
|
+
setShowCurrentUserQueriesOnly: action,
|
58
|
+
setShowPreviewViewer: action,
|
59
|
+
searchQueries: flow,
|
60
|
+
getPreviewQueryContent: flow,
|
61
|
+
deleteQuery: flow,
|
62
|
+
renameQuery: flow,
|
63
|
+
initialize: flow,
|
64
|
+
});
|
65
|
+
this.applicationStore = applicationStore;
|
66
|
+
this.graphManagerState = graphManagerState;
|
67
|
+
this.loadQuery = options.loadQuery;
|
68
|
+
this.fetchDefaultQueries = options.fetchDefaultQueries;
|
69
|
+
this.generateDefaultQueriesSummaryText =
|
70
|
+
options.generateDefaultQueriesSummaryText;
|
71
|
+
this.decorateSearchSpecification = options.decorateSearchSpecification;
|
72
|
+
this.isReadOnly = options.isReadOnly;
|
73
|
+
this.onQueryRenamed = options.onQueryRenamed;
|
74
|
+
this.onQueryDeleted = options.onQueryDeleted;
|
75
|
+
}
|
76
|
+
setSearchText(val) {
|
77
|
+
this.searchText = val;
|
78
|
+
}
|
79
|
+
setQueryLoaderDialogOpen(val) {
|
80
|
+
this.isQueryLoaderDialogOpen = val;
|
81
|
+
}
|
82
|
+
setQueries(val) {
|
83
|
+
this.queries = val;
|
84
|
+
}
|
85
|
+
setShowPreviewViewer(val) {
|
86
|
+
this.showPreviewViewer = val;
|
87
|
+
}
|
88
|
+
setShowCurrentUserQueriesOnly(val) {
|
89
|
+
this.showCurrentUserQueriesOnly = val;
|
90
|
+
}
|
91
|
+
reset() {
|
92
|
+
this.setShowCurrentUserQueriesOnly(false);
|
93
|
+
}
|
94
|
+
*initialize(queryBuilderState) {
|
95
|
+
this.queryBuilderState = queryBuilderState;
|
96
|
+
this.extraFilterOptions = this.applicationStore.pluginManager
|
97
|
+
.getApplicationPlugins()
|
98
|
+
.flatMap((plugin) => plugin.getExtraLoadQueryFilterOptions?.() ?? []);
|
99
|
+
const extraFilters = this.extraFilterOptions.map((filterOption) => filterOption.label(guaranteeNonNullable(this.queryBuilderState)));
|
100
|
+
extraFilters.forEach((filter) => filter && this.extraFilters.set(filter, false));
|
101
|
+
}
|
102
|
+
*searchQueries(searchText) {
|
103
|
+
if (searchText.length < DEFAULT_TYPEAHEAD_SEARCH_MINIMUM_SEARCH_LENGTH &&
|
104
|
+
!this.showCurrentUserQueriesOnly &&
|
105
|
+
Array.from(this.extraFilters.values()).every((value) => value === false)) {
|
106
|
+
// if no search text is specified, use fetch the default queries
|
107
|
+
if (!searchText) {
|
108
|
+
this.showingDefaultQueries = true;
|
109
|
+
this.searchQueriesState.inProgress();
|
110
|
+
this.queries = [];
|
111
|
+
try {
|
112
|
+
if (!this.fetchDefaultQueries) {
|
113
|
+
return;
|
114
|
+
}
|
115
|
+
this.queries = (yield this.fetchDefaultQueries());
|
116
|
+
this.searchQueriesState.pass();
|
117
|
+
}
|
118
|
+
catch (error) {
|
119
|
+
this.searchQueriesState.fail();
|
120
|
+
assertErrorThrown(error);
|
121
|
+
this.applicationStore.notificationService.notifyError(error);
|
122
|
+
}
|
123
|
+
}
|
124
|
+
// skip otherwise
|
125
|
+
return;
|
126
|
+
}
|
127
|
+
// search using the search term
|
128
|
+
this.showingDefaultQueries = false;
|
129
|
+
this.searchQueriesState.inProgress();
|
130
|
+
try {
|
131
|
+
let searchSpecification = new QuerySearchSpecification();
|
132
|
+
searchSpecification.searchTerm = searchText;
|
133
|
+
searchSpecification.limit = QUERY_LOADER_TYPEAHEAD_SEARCH_LIMIT + 1;
|
134
|
+
searchSpecification.showCurrentUserQueriesOnly =
|
135
|
+
this.showCurrentUserQueriesOnly;
|
136
|
+
if (this.queryBuilderState) {
|
137
|
+
Array.from(this.extraFilters.entries()).forEach(([key, value]) => {
|
138
|
+
if (value) {
|
139
|
+
const filterOption = this.extraFilterOptions.find((option) => option.label(guaranteeNonNullable(this.queryBuilderState)) ===
|
140
|
+
key);
|
141
|
+
if (filterOption) {
|
142
|
+
searchSpecification = filterOption.filterFunction(searchSpecification, guaranteeNonNullable(this.queryBuilderState));
|
143
|
+
}
|
144
|
+
}
|
145
|
+
});
|
146
|
+
}
|
147
|
+
searchSpecification =
|
148
|
+
this.decorateSearchSpecification?.(searchSpecification) ??
|
149
|
+
searchSpecification;
|
150
|
+
this.queries = (yield this.graphManagerState.graphManager.searchQueries(searchSpecification));
|
151
|
+
this.searchQueriesState.pass();
|
152
|
+
}
|
153
|
+
catch (error) {
|
154
|
+
assertErrorThrown(error);
|
155
|
+
this.applicationStore.notificationService.notifyError(error);
|
156
|
+
this.searchQueriesState.fail();
|
157
|
+
}
|
158
|
+
}
|
159
|
+
*renameQuery(queryId, name) {
|
160
|
+
this.renameQueryState.inProgress();
|
161
|
+
try {
|
162
|
+
const query = (yield this.graphManagerState.graphManager.renameQuery(queryId, name));
|
163
|
+
this.onQueryRenamed?.(query);
|
164
|
+
this.applicationStore.notificationService.notify('Renamed query successfully');
|
165
|
+
this.renameQueryState.pass();
|
166
|
+
this.searchQueries(this.searchText); // trigger a search to refresh the query list
|
167
|
+
}
|
168
|
+
catch (error) {
|
169
|
+
assertErrorThrown(error);
|
170
|
+
this.applicationStore.notificationService.notifyError(error);
|
171
|
+
this.renameQueryState.fail();
|
172
|
+
}
|
173
|
+
}
|
174
|
+
*deleteQuery(queryId) {
|
175
|
+
this.deleteQueryState.inProgress();
|
176
|
+
try {
|
177
|
+
const query = (yield this.graphManagerState.graphManager.deleteQuery(queryId));
|
178
|
+
this.onQueryDeleted?.(query);
|
179
|
+
this.applicationStore.notificationService.notify('Deleted query successfully');
|
180
|
+
this.deleteQueryState.pass();
|
181
|
+
this.searchQueries(this.searchText); // trigger a search to refresh the query list
|
182
|
+
}
|
183
|
+
catch (error) {
|
184
|
+
assertErrorThrown(error);
|
185
|
+
this.applicationStore.notificationService.notifyError(error);
|
186
|
+
this.deleteQueryState.fail();
|
187
|
+
}
|
188
|
+
}
|
189
|
+
*getPreviewQueryContent(queryId) {
|
190
|
+
this.previewQueryState.inProgress();
|
191
|
+
try {
|
192
|
+
const queryInfo = (yield this.graphManagerState.graphManager.getQueryInfo(queryId));
|
193
|
+
this.queryPreviewContent = queryInfo;
|
194
|
+
this.queryPreviewContent.content =
|
195
|
+
(yield this.graphManagerState.graphManager.prettyLambdaContent(queryInfo.content));
|
196
|
+
this.previewQueryState.pass();
|
197
|
+
}
|
198
|
+
catch (error) {
|
199
|
+
assertErrorThrown(error);
|
200
|
+
this.applicationStore.notificationService.notifyError(error);
|
201
|
+
this.previewQueryState.fail();
|
202
|
+
}
|
203
|
+
}
|
204
|
+
}
|
205
|
+
//# sourceMappingURL=QueryLoaderState.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"QueryLoaderState.js","sourceRoot":"","sources":["../../src/stores/QueryLoaderState.ts"],"names":[],"mappings":"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"}
|
@@ -13,11 +13,13 @@
|
|
13
13
|
* See the License for the specific language governing permissions and
|
14
14
|
* limitations under the License.
|
15
15
|
*/
|
16
|
-
import { type PureModel,
|
16
|
+
import { type PureModel, type GraphManagerState, type ValueSpecification, type Type, type ObserverContext, type RawLambda, VariableExpression, Enumeration, PrimitiveInstanceValue, PRIMITIVE_TYPE, SimpleFunctionExpression, LambdaFunction } from '@finos/legend-graph';
|
17
17
|
export declare const createSupportedFunctionExpression: (supportedFuncName: string, expectedReturnType: Type) => SimpleFunctionExpression;
|
18
18
|
export declare const createMockEnumerationProperty: (enumeration: Enumeration) => string;
|
19
19
|
export declare const buildPrimitiveInstanceValue: (graph: PureModel, type: PRIMITIVE_TYPE, value: unknown, observerContext: ObserverContext) => PrimitiveInstanceValue;
|
20
20
|
export declare const buildDefaultInstanceValue: (graph: PureModel, type: Type, observerContext: ObserverContext) => ValueSpecification;
|
21
|
+
export declare const buildDefaultEmptyStringLambda: (graph: PureModel, observerContext: ObserverContext) => LambdaFunction;
|
22
|
+
export declare const buildDefaultEmptyStringRawLambda: (graphState: GraphManagerState, observerContext: ObserverContext) => RawLambda;
|
21
23
|
export declare const generateVariableExpressionMockValue: (parameter: VariableExpression, graph: PureModel, observerContext: ObserverContext) => ValueSpecification | undefined;
|
22
24
|
export declare const getValueSpecificationStringValue: (valueSpecification: ValueSpecification) => string | undefined;
|
23
25
|
//# sourceMappingURL=ValueSpecificationEditorHelper.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ValueSpecificationEditorHelper.d.ts","sourceRoot":"","sources":["../../../src/stores/shared/ValueSpecificationEditorHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,KAAK,SAAS,EACd,
|
1
|
+
{"version":3,"file":"ValueSpecificationEditorHelper.d.ts","sourceRoot":"","sources":["../../../src/stores/shared/ValueSpecificationEditorHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,KAAK,SAAS,EACd,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,IAAI,EAET,KAAK,eAAe,EACpB,KAAK,SAAS,EACd,kBAAkB,EAElB,WAAW,EAMX,sBAAsB,EAEtB,cAAc,EAEd,wBAAwB,EACxB,cAAc,EAMf,MAAM,qBAAqB,CAAC;AAW7B,eAAO,MAAM,iCAAiC,sBACzB,MAAM,sBACL,IAAI,KACvB,wBAOF,CAAC;AAiDF,eAAO,MAAM,6BAA6B,gBAC3B,WAAW,KACvB,MACyE,CAAC;AAE7E,eAAO,MAAM,2BAA2B,UAC/B,SAAS,QACV,cAAc,SACb,OAAO,mBACG,eAAe,KAC/B,sBAQF,CAAC;AAEF,eAAO,MAAM,yBAAyB,UAC7B,SAAS,QACV,IAAI,mBACO,eAAe,KAC/B,kBAgDF,CAAC;AAEF,eAAO,MAAM,6BAA6B,UACjC,SAAS,mBACC,eAAe,KAC/B,cAeF,CAAC;AAEF,eAAO,MAAM,gCAAgC,eAC/B,iBAAiB,mBACZ,eAAe,KAC/B,SAIA,CAAC;AAEJ,eAAO,MAAM,mCAAmC,cACnC,kBAAkB,SACtB,SAAS,mBACC,eAAe,KAC/B,kBAAkB,GAAG,SA8BvB,CAAC;AAEF,eAAO,MAAM,gCAAgC,uBACvB,kBAAkB,KACrC,MAAM,GAAG,SAkBX,CAAC"}
|
@@ -13,7 +13,7 @@
|
|
13
13
|
* See the License for the specific language governing permissions and
|
14
14
|
* limitations under the License.
|
15
15
|
*/
|
16
|
-
import { VariableExpression, CollectionInstanceValue, Enumeration, EnumValueExplicitReference, EnumValueInstanceValue, GenericType, GenericTypeExplicitReference, getEnumValue, PrimitiveInstanceValue, PrimitiveType, PRIMITIVE_TYPE, INTERNAL__PropagatedValue, SimpleFunctionExpression, } from '@finos/legend-graph';
|
16
|
+
import { VariableExpression, CollectionInstanceValue, Enumeration, EnumValueExplicitReference, EnumValueInstanceValue, GenericType, GenericTypeExplicitReference, getEnumValue, PrimitiveInstanceValue, PrimitiveType, PRIMITIVE_TYPE, INTERNAL__PropagatedValue, SimpleFunctionExpression, LambdaFunction, FunctionType, PackageableElementExplicitReference, Multiplicity, CORE_PURE_PATH, buildRawLambdaFromLambdaFunction, } from '@finos/legend-graph';
|
17
17
|
import { Randomizer, UnsupportedOperationError } from '@finos/legend-shared';
|
18
18
|
import { generateDefaultValueForPrimitiveType } from '../QueryBuilderValueSpecificationHelper.js';
|
19
19
|
import { instanceValue_setValues, valueSpecification_setGenericType, } from './ValueSpecificationModifierHelper.js';
|
@@ -92,6 +92,12 @@ export const buildDefaultInstanceValue = (graph, type, observerContext) => {
|
|
92
92
|
throw new UnsupportedOperationError(`Can't get default value for type'${path}'`);
|
93
93
|
}
|
94
94
|
};
|
95
|
+
export const buildDefaultEmptyStringLambda = (graph, observerContext) => {
|
96
|
+
const lambdaFunction = new LambdaFunction(new FunctionType(PackageableElementExplicitReference.create(graph.getType(CORE_PURE_PATH.ANY)), Multiplicity.ONE));
|
97
|
+
lambdaFunction.expressionSequence[0] = buildDefaultInstanceValue(graph, PrimitiveType.STRING, observerContext);
|
98
|
+
return lambdaFunction;
|
99
|
+
};
|
100
|
+
export const buildDefaultEmptyStringRawLambda = (graphState, observerContext) => buildRawLambdaFromLambdaFunction(buildDefaultEmptyStringLambda(graphState.graph, observerContext), graphState);
|
95
101
|
export const generateVariableExpressionMockValue = (parameter, graph, observerContext) => {
|
96
102
|
const varType = parameter.genericType?.value.rawType;
|
97
103
|
const multiplicity = parameter.multiplicity;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ValueSpecificationEditorHelper.js","sourceRoot":"","sources":["../../../src/stores/shared/ValueSpecificationEditorHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,
|
1
|
+
{"version":3,"file":"ValueSpecificationEditorHelper.js","sourceRoot":"","sources":["../../../src/stores/shared/ValueSpecificationEditorHelper.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@finos/legend-query-builder",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.2.0",
|
4
4
|
"description": "Legend query builder core",
|
5
5
|
"keywords": [
|
6
6
|
"legend",
|
@@ -42,13 +42,13 @@
|
|
42
42
|
"test:watch": "jest --watch"
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
|
-
"@finos/legend-application": "15.0.
|
46
|
-
"@finos/legend-art": "7.0.
|
47
|
-
"@finos/legend-graph": "28.1.
|
48
|
-
"@finos/legend-lego": "0.1.
|
49
|
-
"@finos/legend-server-depot": "6.0.
|
50
|
-
"@finos/legend-shared": "10.0.
|
51
|
-
"@finos/legend-storage": "3.0.
|
45
|
+
"@finos/legend-application": "15.0.7",
|
46
|
+
"@finos/legend-art": "7.0.8",
|
47
|
+
"@finos/legend-graph": "28.1.4",
|
48
|
+
"@finos/legend-lego": "0.1.13",
|
49
|
+
"@finos/legend-server-depot": "6.0.4",
|
50
|
+
"@finos/legend-shared": "10.0.3",
|
51
|
+
"@finos/legend-storage": "3.0.53",
|
52
52
|
"@testing-library/react": "14.0.0",
|
53
53
|
"@types/react": "18.2.0",
|
54
54
|
"@types/react-dom": "18.2.1",
|