@finos/legend-application-studio 28.2.6 → 28.2.7

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.
@@ -1 +1 @@
1
- {"version":3,"file":"DevToolPanel.d.ts","sourceRoot":"","sources":["../../../../src/components/editor/panel-group/DevToolPanel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAaH,eAAO,MAAM,YAAY;;CA4GvB,CAAC"}
1
+ {"version":3,"file":"DevToolPanel.d.ts","sourceRoot":"","sources":["../../../../src/components/editor/panel-group/DevToolPanel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAsBH,eAAO,MAAM,YAAY;;CAgMvB,CAAC"}
@@ -15,10 +15,11 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
15
15
  * limitations under the License.
16
16
  */
17
17
  import { observer } from 'mobx-react-lite';
18
- import { PanelFormBooleanField, Panel, PanelFormTextField, PanelForm, } from '@finos/legend-art';
19
- import { isValidUrl } from '@finos/legend-shared';
18
+ import { PanelFormBooleanField, Panel, PanelFormTextField, PanelForm, CloudDownloadIcon, PanelFormListItems, } from '@finos/legend-art';
19
+ import { ContentType, downloadFileUsingDataURI, getContentTypeFileExtension, isValidUrl, } from '@finos/legend-shared';
20
20
  import { useEditorStore } from '../EditorStoreProvider.js';
21
21
  import { LEGEND_STUDIO_SETTING_KEY } from '../../../__lib__/LegendStudioSetting.js';
22
+ import { flowResult } from 'mobx';
22
23
  export const DevToolPanel = observer(() => {
23
24
  const editorStore = useEditorStore();
24
25
  // Engine
@@ -34,10 +35,33 @@ export const DevToolPanel = observer(() => {
34
35
  const toggleArtifactGeneration = () => {
35
36
  editorStore.graphState.graphGenerationState.setEnableArtifactGeneration(!editorStore.graphState.graphGenerationState.enableArtifactGeneration);
36
37
  };
38
+ const downloadDependencyProjectGrammars = async () => {
39
+ const dependencyGrammars = await Promise.all(Array.from(editorStore.graphManagerState.graph.dependencyManager
40
+ .projectDependencyModelsIndex).map((graph) => flowResult(editorStore.graphManagerState.graphManager.graphToPureCode(graph[1], {
41
+ pretty: true,
42
+ }))));
43
+ return dependencyGrammars.join('\n');
44
+ };
45
+ const downloadProjectGrammar = async (withDependency) => {
46
+ const graphGrammar = (await Promise.all([
47
+ flowResult(editorStore.graphManagerState.graphManager.graphToPureCode(editorStore.graphManagerState.graph, { pretty: true })),
48
+ ]));
49
+ const dependencyGrammars = withDependency
50
+ ? (await Promise.all([
51
+ flowResult(downloadDependencyProjectGrammars()),
52
+ ]))
53
+ : '';
54
+ const fileName = `grammar.${getContentTypeFileExtension(ContentType.TEXT_PLAIN)}`;
55
+ downloadFileUsingDataURI(fileName, `${graphGrammar}\n${dependencyGrammars}`, ContentType.TEXT_PLAIN);
56
+ };
37
57
  return (_jsx(Panel, { children: _jsxs(PanelForm, { children: [_jsx(PanelFormBooleanField, { name: "Engine client request payload compression", prompt: "Specifies if request payload should be compressed", value: engineConfig.useClientRequestPayloadCompression, isReadOnly: false, update: toggleEngineClientRequestPayloadCompression }), _jsx(PanelFormBooleanField, { name: "Engine client request payload debug", prompt: "Specifies if request payload should be downloaded for debugging purpose", value: engineConfig.enableDebuggingPayload, isReadOnly: false, update: toggleEngineClientRequestPayloadDebugging }), _jsx(PanelFormTextField, { name: "Engine client base URL", value: engineConfig.baseUrl ?? '', isReadOnly: false, update: (value) => engineConfig.setBaseUrl(value === '' ? undefined : value), errorMessage: !isValidUrl(engineConfig.baseUrl ?? '') ? 'Invalid URL' : '' }), Boolean(editorStore.applicationStore.config.options
38
58
  .TEMPORARY__serviceRegistrationConfig.length) && (_jsx(PanelFormTextField, { name: "Engine client service registration base URL", value: engineConfig.baseUrlForServiceRegistration ?? '', isReadOnly: false, update: (value) => engineConfig.setBaseUrlForServiceRegistration(value === '' ? undefined : value), errorMessage: Boolean(engineConfig.baseUrlForServiceRegistration) &&
39
59
  !isValidUrl(engineConfig.baseUrlForServiceRegistration ?? '')
40
60
  ? 'Invalid URL'
41
- : '' })), _jsx(PanelFormBooleanField, { name: "Engine execution runner", prompt: "Use Base64 encoding for adhoc connection data URLs", value: engineConfig.useBase64ForAdhocConnectionDataUrls, isReadOnly: false, update: toggleEngineClientDataURLEncoding }), _jsx(PanelFormBooleanField, { name: "Graph builder strict mode", prompt: "Use strict-mode when building the graph (some warnings will be treated as errors)", value: editorStore.graphState.enableStrictMode, isReadOnly: false, update: toggleStrictMode }), _jsx(PanelFormBooleanField, { name: "Generate Artifact Generations", prompt: "Include generation of artifacet extensions during generation action (F10)", value: editorStore.graphState.graphGenerationState.enableArtifactGeneration, isReadOnly: false, update: toggleArtifactGeneration })] }) }));
61
+ : '' })), _jsx(PanelFormBooleanField, { name: "Engine execution runner", prompt: "Use Base64 encoding for adhoc connection data URLs", value: engineConfig.useBase64ForAdhocConnectionDataUrls, isReadOnly: false, update: toggleEngineClientDataURLEncoding }), _jsx(PanelFormBooleanField, { name: "Graph builder strict mode", prompt: "Use strict-mode when building the graph (some warnings will be treated as errors)", value: editorStore.graphState.enableStrictMode, isReadOnly: false, update: toggleStrictMode }), _jsx(PanelFormBooleanField, { name: "Generate Artifact Generations", prompt: "Include generation of artifacet extensions during generation action (F10)", value: editorStore.graphState.graphGenerationState.enableArtifactGeneration, isReadOnly: false, update: toggleArtifactGeneration }), _jsx(PanelFormListItems, { title: "Download Project Grammar", children: _jsxs("div", { className: "developer-tools__action-groups", children: [_jsxs("div", { className: "developer-tools__action-group", children: [_jsx("button", { className: "developer-tools__action-group__btn", onClick: () => {
62
+ downloadProjectGrammar(false).catch(editorStore.applicationStore.alertUnhandledError);
63
+ }, tabIndex: -1, title: "Download Project Grammar", children: _jsx(CloudDownloadIcon, {}) }), _jsx("div", { className: "developer-tools__action-group__prompt", children: "download grammar without dependency" })] }), _jsxs("div", { className: "developer-tools__action-group", children: [_jsx("button", { className: "developer-tools__action-group__btn", onClick: () => {
64
+ downloadProjectGrammar(true).catch(editorStore.applicationStore.alertUnhandledError);
65
+ }, tabIndex: -1, title: "Download Project Grammar with Dependency", children: _jsx(CloudDownloadIcon, {}) }), _jsx("div", { className: "developer-tools__action-group__prompt", children: "download grammar with dependency" })] })] }) })] }) }));
42
66
  });
43
67
  //# sourceMappingURL=DevToolPanel.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"DevToolPanel.js","sourceRoot":"","sources":["../../../../src/components/editor/panel-group/DevToolPanel.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"DevToolPanel.js","sourceRoot":"","sources":["../../../../src/components/editor/panel-group/DevToolPanel.tsx"],"names":[],"mappings":"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"}