@finos/legend-application-studio 28.10.0 → 28.10.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/editor/editor-group/EditorGroup.js +4 -4
- package/lib/components/editor/editor-group/EditorGroup.js.map +1 -1
- package/lib/components/editor/editor-group/connection-editor/DatabaseBuilderWizard.d.ts.map +1 -1
- package/lib/components/editor/editor-group/connection-editor/DatabaseBuilderWizard.js +2 -1
- package/lib/components/editor/editor-group/connection-editor/DatabaseBuilderWizard.js.map +1 -1
- package/lib/components/editor/editor-group/end-to-end-flow-editor/{QueryConnectionWorkflowEditor.d.ts → ConnectionToQueryWorkflowEditor.d.ts} +7 -14
- package/lib/components/editor/editor-group/end-to-end-flow-editor/ConnectionToQueryWorkflowEditor.d.ts.map +1 -0
- package/lib/components/editor/editor-group/end-to-end-flow-editor/{QueryConnectionWorkflowEditor.js → ConnectionToQueryWorkflowEditor.js} +30 -25
- package/lib/components/editor/editor-group/end-to-end-flow-editor/ConnectionToQueryWorkflowEditor.js.map +1 -0
- package/lib/components/editor/editor-group/service-editor/ServiceExecutionQueryEditor.js +1 -1
- package/lib/components/editor/editor-group/service-editor/ServiceExecutionQueryEditor.js.map +1 -1
- package/lib/components/editor/side-bar/Explorer.d.ts.map +1 -1
- package/lib/components/editor/side-bar/Explorer.js +6 -6
- package/lib/components/editor/side-bar/Explorer.js.map +1 -1
- package/lib/components/editor/side-bar/end-to-end-workflow/EndToEndWorkflows.d.ts.map +1 -1
- package/lib/components/editor/side-bar/end-to-end-workflow/EndToEndWorkflows.js +6 -4
- package/lib/components/editor/side-bar/end-to-end-workflow/EndToEndWorkflows.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/package.json +1 -1
- package/lib/stores/editor/EditorStore.d.ts +1 -0
- package/lib/stores/editor/EditorStore.d.ts.map +1 -1
- package/lib/stores/editor/EditorStore.js +4 -0
- package/lib/stores/editor/EditorStore.js.map +1 -1
- package/lib/stores/editor/editor-state/element-editor-state/ElementEditorState.d.ts.map +1 -1
- package/lib/stores/editor/editor-state/element-editor-state/ElementEditorState.js +2 -1
- package/lib/stores/editor/editor-state/element-editor-state/ElementEditorState.js.map +1 -1
- package/lib/stores/editor/editor-state/end-to-end-workflow-state/EndToEndWorkflowEditorState.d.ts +3 -3
- package/lib/stores/editor/editor-state/end-to-end-workflow-state/EndToEndWorkflowEditorState.d.ts.map +1 -1
- package/lib/stores/editor/editor-state/end-to-end-workflow-state/EndToEndWorkflowEditorState.js +4 -6
- package/lib/stores/editor/editor-state/end-to-end-workflow-state/EndToEndWorkflowEditorState.js.map +1 -1
- package/lib/stores/editor/editor-state/end-to-end-workflow-state/QueryConnectionEndToEndWorkflowEditorState.d.ts +111 -0
- package/lib/stores/editor/editor-state/end-to-end-workflow-state/QueryConnectionEndToEndWorkflowEditorState.d.ts.map +1 -0
- package/lib/stores/editor/editor-state/end-to-end-workflow-state/QueryConnectionEndToEndWorkflowEditorState.js +453 -0
- package/lib/stores/editor/editor-state/end-to-end-workflow-state/QueryConnectionEndToEndWorkflowEditorState.js.map +1 -0
- package/lib/stores/editor/sidebar-state/end-to-end-workflow/GlobalEndToEndFlowState.d.ts +2 -91
- package/lib/stores/editor/sidebar-state/end-to-end-workflow/GlobalEndToEndFlowState.d.ts.map +1 -1
- package/lib/stores/editor/sidebar-state/end-to-end-workflow/GlobalEndToEndFlowState.js +8 -465
- package/lib/stores/editor/sidebar-state/end-to-end-workflow/GlobalEndToEndFlowState.js.map +1 -1
- package/package.json +5 -5
- package/src/components/editor/editor-group/EditorGroup.tsx +4 -4
- package/src/components/editor/editor-group/connection-editor/DatabaseBuilderWizard.tsx +2 -1
- package/src/components/editor/editor-group/end-to-end-flow-editor/{QueryConnectionWorkflowEditor.tsx → ConnectionToQueryWorkflowEditor.tsx} +83 -43
- package/src/components/editor/editor-group/service-editor/ServiceExecutionQueryEditor.tsx +1 -1
- package/src/components/editor/side-bar/Explorer.tsx +7 -6
- package/src/components/editor/side-bar/end-to-end-workflow/EndToEndWorkflows.tsx +8 -7
- package/src/stores/editor/EditorStore.ts +5 -0
- package/src/stores/editor/editor-state/element-editor-state/ElementEditorState.ts +2 -1
- package/src/stores/editor/editor-state/end-to-end-workflow-state/EndToEndWorkflowEditorState.ts +4 -6
- package/src/stores/editor/{sidebar-state/end-to-end-workflow/GlobalEndToEndFlowState.tsx → editor-state/end-to-end-workflow-state/QueryConnectionEndToEndWorkflowEditorState.ts} +168 -277
- package/src/stores/editor/sidebar-state/end-to-end-workflow/GlobalEndToEndFlowState.ts +43 -0
- package/tsconfig.json +4 -3
- package/lib/components/editor/editor-group/end-to-end-flow-editor/QueryConnectionWorkflowEditor.d.ts.map +0 -1
- package/lib/components/editor/editor-group/end-to-end-flow-editor/QueryConnectionWorkflowEditor.js.map +0 -1
@@ -0,0 +1,43 @@
|
|
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
|
+
import { makeObservable, observable } from 'mobx';
|
18
|
+
import type { EditorStore } from '../../EditorStore.js';
|
19
|
+
import { QueryConnectionEndToEndWorkflowEditorState } from '../../editor-state/end-to-end-workflow-state/QueryConnectionEndToEndWorkflowEditorState.js';
|
20
|
+
import { END_TO_END_WORKFLOWS } from '../../editor-state/end-to-end-workflow-state/EndToEndWorkflowEditorState.js';
|
21
|
+
|
22
|
+
export class GlobalEndToEndWorkflowState {
|
23
|
+
editorStore: EditorStore;
|
24
|
+
queryToConnectionWorkflowEditorState: QueryConnectionEndToEndWorkflowEditorState;
|
25
|
+
|
26
|
+
constructor(editorStore: EditorStore) {
|
27
|
+
makeObservable(this, {
|
28
|
+
editorStore: false,
|
29
|
+
queryToConnectionWorkflowEditorState: observable,
|
30
|
+
});
|
31
|
+
this.editorStore = editorStore;
|
32
|
+
this.queryToConnectionWorkflowEditorState =
|
33
|
+
new QueryConnectionEndToEndWorkflowEditorState(this.editorStore);
|
34
|
+
}
|
35
|
+
|
36
|
+
visitWorkflow(workflow: string): void {
|
37
|
+
if (workflow === END_TO_END_WORKFLOWS.CREATE_QUERY_FROM_CONNECTION) {
|
38
|
+
this.editorStore.tabManagerState.openTab(
|
39
|
+
this.queryToConnectionWorkflowEditorState,
|
40
|
+
);
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
package/tsconfig.json
CHANGED
@@ -128,6 +128,7 @@
|
|
128
128
|
"./src/stores/editor/editor-state/element-editor-state/testable/TestAssertionState.ts",
|
129
129
|
"./src/stores/editor/editor-state/element-editor-state/testable/TestableEditorState.ts",
|
130
130
|
"./src/stores/editor/editor-state/end-to-end-workflow-state/EndToEndWorkflowEditorState.ts",
|
131
|
+
"./src/stores/editor/editor-state/end-to-end-workflow-state/QueryConnectionEndToEndWorkflowEditorState.ts",
|
131
132
|
"./src/stores/editor/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.ts",
|
132
133
|
"./src/stores/editor/editor-state/entity-diff-editor-state/EntityDiffEditorState.ts",
|
133
134
|
"./src/stores/editor/editor-state/entity-diff-editor-state/EntityDiffViewState.ts",
|
@@ -143,6 +144,7 @@
|
|
143
144
|
"./src/stores/editor/sidebar-state/WorkspaceSyncState.ts",
|
144
145
|
"./src/stores/editor/sidebar-state/WorkspaceUpdateConflictResolutionState.ts",
|
145
146
|
"./src/stores/editor/sidebar-state/WorkspaceUpdaterState.ts",
|
147
|
+
"./src/stores/editor/sidebar-state/end-to-end-workflow/GlobalEndToEndFlowState.ts",
|
146
148
|
"./src/stores/editor/sidebar-state/testable/GlobalTestRunnerState.ts",
|
147
149
|
"./src/stores/editor/utils/DnDUtils.ts",
|
148
150
|
"./src/stores/editor/utils/FileSystemTreeUtils.ts",
|
@@ -218,7 +220,7 @@
|
|
218
220
|
"./src/components/editor/editor-group/element-generation-editor/ElementXTGenerationEditor.tsx",
|
219
221
|
"./src/components/editor/editor-group/element-generation-editor/FileGenerationEditor.tsx",
|
220
222
|
"./src/components/editor/editor-group/element-generation-editor/FileSystemViewer.tsx",
|
221
|
-
"./src/components/editor/editor-group/end-to-end-flow-editor/
|
223
|
+
"./src/components/editor/editor-group/end-to-end-flow-editor/ConnectionToQueryWorkflowEditor.tsx",
|
222
224
|
"./src/components/editor/editor-group/external-format-editor/DSL_ExternalFormat_BindingElementEditor.tsx",
|
223
225
|
"./src/components/editor/editor-group/external-format-editor/DSL_ExternalFormat_ExternalFormatConnectionEditor.tsx",
|
224
226
|
"./src/components/editor/editor-group/external-format-editor/DSL_ExternalFormat_NewSchemaSetDriver.tsx",
|
@@ -298,8 +300,7 @@
|
|
298
300
|
"./src/components/workspace-setup/CreateWorkspaceModal.tsx",
|
299
301
|
"./src/components/workspace-setup/ProjectSelectorUtils.tsx",
|
300
302
|
"./src/components/workspace-setup/WorkspaceSelectorUtils.tsx",
|
301
|
-
"./src/components/workspace-setup/WorkspaceSetup.tsx"
|
302
|
-
"./src/stores/editor/sidebar-state/end-to-end-workflow/GlobalEndToEndFlowState.tsx"
|
303
|
+
"./src/components/workspace-setup/WorkspaceSetup.tsx"
|
303
304
|
],
|
304
305
|
"include": [
|
305
306
|
"src/**/*.ts",
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"QueryConnectionWorkflowEditor.d.ts","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/end-to-end-flow-editor/QueryConnectionWorkflowEditor.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAkBH,OAAO,KAAK,EACV,2BAA2B,EAC3B,iCAAiC,EACjC,gCAAgC,EAChC,uDAAuD,EACvD,oCAAoC,EACrC,MAAM,wFAAwF,CAAC;AAWhG,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,sGAAsG,CAAC;AAMvJ,oBAAY,+BAA+B;IACzC,iBAAiB,sBAAsB;IACvC,eAAe,oBAAoB;IACnC,aAAa,kBAAkB;IAC/B,4BAA4B,iCAAiC;IAC7D,YAAY,iBAAiB;CAC9B;AAED,eAAO,MAAM,yCAAyC,WAC5C;IACN,oCAAoC,EAAE,oCAAoC,CAAC;IAC3E,2BAA2B,EAAE,2BAA2B,CAAC;CAC1D;;CAiDF,CAAC;AAEF,eAAO,MAAM,oCAAoC,WACvC;IAAE,oBAAoB,EAAE,0BAA0B,CAAA;CAAE;;CAmC7D,CAAC;AAEF,eAAO,MAAM,oCAAoC,WACvC;IACN,oCAAoC,EAAE,oCAAoC,CAAC;IAC3E,iCAAiC,EAAE,iCAAiC,CAAC;CACtE;;CAoDF,CAAC;AAEF,eAAO,MAAM,2BAA2B,WAC9B;IACN,gCAAgC,EAAE,gCAAgC,CAAC;IACnE,oCAAoC,EAAE,oCAAoC,CAAC;CAC5E;;CAuHF,CAAC;AAEF,eAAO,MAAM,2CAA2C,WAC9C;IACN,oCAAoC,EAAE,oCAAoC,CAAC;IAC3E,uDAAuD,EAAE,uDAAuD,CAAC;CAClH;;CAkDF,CAAC;AAEF,eAAO,MAAM,4BAA4B,WAC/B;IACN,oCAAoC,EAAE,oCAAoC,CAAC;CAC5E;;CA+EF,CAAC"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"QueryConnectionWorkflowEditor.js","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/end-to-end-flow-editor/QueryConnectionWorkflowEditor.tsx"],"names":[],"mappings":"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"}
|