@finos/legend-application-studio 28.18.42 → 28.18.44
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/components/editor/editor-group/function-activator/ActivatorFormComponents.d.ts +23 -0
- package/lib/components/editor/editor-group/function-activator/ActivatorFormComponents.d.ts.map +1 -0
- package/lib/components/editor/editor-group/function-activator/ActivatorFormComponents.js +34 -0
- package/lib/components/editor/editor-group/function-activator/ActivatorFormComponents.js.map +1 -0
- package/lib/components/editor/editor-group/function-activator/HostedServiceFunctionActivatorEditor.d.ts.map +1 -1
- package/lib/components/editor/editor-group/function-activator/HostedServiceFunctionActivatorEditor.js +76 -108
- package/lib/components/editor/editor-group/function-activator/HostedServiceFunctionActivatorEditor.js.map +1 -1
- package/lib/components/editor/editor-group/function-activator/SnowflakeAppFunctionActivatorEditor.d.ts.map +1 -1
- package/lib/components/editor/editor-group/function-activator/SnowflakeAppFunctionActivatorEditor.js +4 -13
- package/lib/components/editor/editor-group/function-activator/SnowflakeAppFunctionActivatorEditor.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/package.json +1 -1
- package/lib/stores/editor/editor-state/element-editor-state/function-activator/HostedServiceFunctionActivatorEditorState.d.ts +8 -3
- package/lib/stores/editor/editor-state/element-editor-state/function-activator/HostedServiceFunctionActivatorEditorState.d.ts.map +1 -1
- package/lib/stores/editor/editor-state/element-editor-state/function-activator/HostedServiceFunctionActivatorEditorState.js +15 -10
- package/lib/stores/editor/editor-state/element-editor-state/function-activator/HostedServiceFunctionActivatorEditorState.js.map +1 -1
- package/package.json +6 -6
- package/src/components/editor/editor-group/function-activator/ActivatorFormComponents.tsx +97 -0
- package/src/components/editor/editor-group/function-activator/HostedServiceFunctionActivatorEditor.tsx +347 -482
- package/src/components/editor/editor-group/function-activator/SnowflakeAppFunctionActivatorEditor.tsx +7 -42
- package/src/stores/editor/editor-state/element-editor-state/function-activator/HostedServiceFunctionActivatorEditorState.ts +18 -11
- package/tsconfig.json +1 -0
@@ -0,0 +1,23 @@
|
|
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 FunctionActivator } from '@finos/legend-graph';
|
17
|
+
export declare const ActivatorOwnershipForm: ((props: {
|
18
|
+
activator: FunctionActivator;
|
19
|
+
isReadOnly: boolean;
|
20
|
+
}) => import("react/jsx-runtime").JSX.Element) & {
|
21
|
+
displayName: string;
|
22
|
+
};
|
23
|
+
//# sourceMappingURL=ActivatorFormComponents.d.ts.map
|
package/lib/components/editor/editor-group/function-activator/ActivatorFormComponents.d.ts.map
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ActivatorFormComponents.d.ts","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/ActivatorFormComponents.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EAGL,KAAK,iBAAiB,EACvB,MAAM,qBAAqB,CAAC;AAQ7B,eAAO,MAAM,sBAAsB,WACzB;IAAE,SAAS,EAAE,iBAAiB,CAAC;IAAC,UAAU,EAAE,OAAO,CAAA;CAAE;;CAkE9D,CAAC"}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
2
|
+
/**
|
3
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*/
|
17
|
+
import { ExclamationCircleIcon } from '@finos/legend-art';
|
18
|
+
import { DeploymentOwner, UserList, } from '@finos/legend-graph';
|
19
|
+
import { observer } from 'mobx-react-lite';
|
20
|
+
import { activator_setDeploymentOwner, activator_setOwnership, } from '../../../../stores/graph-modifier/DSL_FunctionActivator_GraphModifierHelper.js';
|
21
|
+
import { useState } from 'react';
|
22
|
+
export const ActivatorOwnershipForm = observer((props) => {
|
23
|
+
const { activator, isReadOnly } = props;
|
24
|
+
const ownership = activator.ownership;
|
25
|
+
const [ownerInputValue, setOwner] = useState(ownership instanceof DeploymentOwner ? ownership.id : '');
|
26
|
+
const updateDeploymentIdentifier = (event) => {
|
27
|
+
if (!isReadOnly && ownership instanceof DeploymentOwner) {
|
28
|
+
setOwner(event.target.value);
|
29
|
+
activator_setDeploymentOwner(ownership, event.target.value);
|
30
|
+
}
|
31
|
+
};
|
32
|
+
return (_jsxs("div", { children: [_jsx("div", { className: "panel__content__form__section", children: _jsx("div", { className: "panel__content__form__section__header__label", children: "Ownership" }) }), ownership instanceof DeploymentOwner && (_jsxs("div", { className: "panel__content__form__section", children: [_jsx("div", { className: "panel__content__form__section__header__prompt", children: "Provide a deployment identifier that will own the Lambda." }), _jsx("input", { className: "panel__content__form__section__input", spellCheck: false, disabled: isReadOnly, value: ownerInputValue, onChange: updateDeploymentIdentifier })] })), ownership instanceof UserList && (_jsxs("div", { className: "project-configuration-editor__project__structure__version", children: [_jsxs("div", { className: "project-configuration-editor__project__structure__version__label", children: [_jsx("div", { className: "project-configuration-editor__project__structure__version__label__status", children: _jsx(ExclamationCircleIcon, { className: "project-configuration-editor__project__structure__version__label__status--outdated" }) }), _jsx("div", { className: "project-configuration-editor__project__structure__version__label__text", children: `User List Ownership has been deprecated` })] }), _jsx("button", { className: "project-configuration-editor__project__structure__version__update-btn", disabled: isReadOnly, onClick: () => activator_setOwnership(activator, new DeploymentOwner('', activator)), tabIndex: -1, title: `Click to Change to Deployment`, children: "Change to Deployment" })] }))] }));
|
33
|
+
});
|
34
|
+
//# sourceMappingURL=ActivatorFormComponents.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ActivatorFormComponents.js","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/ActivatorFormComponents.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EACL,eAAe,EACf,QAAQ,GAET,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EACL,4BAA4B,EAC5B,sBAAsB,GACvB,MAAM,gFAAgF,CAAC;AACxF,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEjC,MAAM,CAAC,MAAM,sBAAsB,GAAG,QAAQ,CAC5C,CAAC,KAA4D,EAAE,EAAE;IAC/D,MAAM,EAAE,SAAS,EAAE,UAAU,EAAE,GAAG,KAAK,CAAC;IACxC,MAAM,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;IAEtC,MAAM,CAAC,eAAe,EAAE,QAAQ,CAAC,GAAG,QAAQ,CAC1C,SAAS,YAAY,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CACzD,CAAC;IACF,MAAM,0BAA0B,GAE5B,CAAC,KAAK,EAAE,EAAE;QACZ,IAAI,CAAC,UAAU,IAAI,SAAS,YAAY,eAAe,EAAE,CAAC;YACxD,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;YAC7B,4BAA4B,CAAC,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC9D,CAAC;IACH,CAAC,CAAC;IAEF,OAAO,CACL,0BACE,cAAK,SAAS,EAAC,+BAA+B,YAC5C,cAAK,SAAS,EAAC,8CAA8C,0BAEvD,GACF,EACL,SAAS,YAAY,eAAe,IAAI,CACvC,eAAK,SAAS,EAAC,+BAA+B,aAC5C,cAAK,SAAS,EAAC,+CAA+C,0EAExD,EACN,gBACE,SAAS,EAAC,sCAAsC,EAChD,UAAU,EAAE,KAAK,EACjB,QAAQ,EAAE,UAAU,EACpB,KAAK,EAAE,eAAe,EACtB,QAAQ,EAAE,0BAA0B,GACpC,IACE,CACP,EACA,SAAS,YAAY,QAAQ,IAAI,CAChC,eAAK,SAAS,EAAC,2DAA2D,aACxE,eAAK,SAAS,EAAC,kEAAkE,aAC/E,cAAK,SAAS,EAAC,0EAA0E,YACvF,KAAC,qBAAqB,IAAC,SAAS,EAAC,oFAAoF,GAAG,GACpH,EACN,cAAK,SAAS,EAAC,wEAAwE,YACpF,yCAAyC,GACtC,IACF,EACN,iBACE,SAAS,EAAC,uEAAuE,EACjF,QAAQ,EAAE,UAAU,EACpB,OAAO,EAAE,GAAG,EAAE,CACZ,sBAAsB,CACpB,SAAS,EACT,IAAI,eAAe,CAAC,EAAE,EAAE,SAAS,CAAC,CACnC,EAEH,QAAQ,EAAE,CAAC,CAAC,EACZ,KAAK,EAAE,+BAA+B,qCAG/B,IACL,CACP,IACG,CACP,CAAC;AACJ,CAAC,CACF,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"HostedServiceFunctionActivatorEditor.d.ts","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/HostedServiceFunctionActivatorEditor.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;
|
1
|
+
{"version":3,"file":"HostedServiceFunctionActivatorEditor.d.ts","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/HostedServiceFunctionActivatorEditor.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAmEH,eAAO,MAAM,oCAAoC;;CAga/C,CAAC"}
|
@@ -14,24 +14,79 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
|
|
14
14
|
* See the License for the specific language governing permissions and
|
15
15
|
* limitations under the License.
|
16
16
|
*/
|
17
|
-
import { Panel, PanelHeader, PanelContent, PanelForm, PURE_FunctionIcon, LongArrowRightIcon, PanelLoadingIndicator, PanelFormBooleanField, PanelFormValidatedTextField, TimesIcon,
|
18
|
-
import {
|
17
|
+
import { Panel, PanelHeader, PanelContent, PanelForm, PURE_FunctionIcon, LongArrowRightIcon, PanelLoadingIndicator, PanelFormBooleanField, PanelFormValidatedTextField, TimesIcon, clsx, PlusIcon, } from '@finos/legend-art';
|
18
|
+
import { Profile, StereotypeExplicitReference, generateFunctionPrettyName, stub_Profile, stub_Stereotype, stub_Tag, stub_TaggedValue, validate_ServicePattern, } from '@finos/legend-graph';
|
19
19
|
import { observer } from 'mobx-react-lite';
|
20
20
|
import { useApplicationStore } from '@finos/legend-application';
|
21
21
|
import { useEditorStore } from '../../EditorStoreProvider.js';
|
22
|
-
import { HostedServiceFunctionActivatorEditorState,
|
23
|
-
import { hostedService_setAutoActivateUpdates, hostedService_setDocumentation, hostedService_setPattern, hostedService_removePatternParameter, hostedService_setStoreModel,
|
24
|
-
import {
|
25
|
-
import {
|
26
|
-
import { debounce } from '@finos/legend-shared';
|
22
|
+
import { HostedServiceFunctionActivatorEditorState, ACTIVATOR_EDITOR_TAB, } from '../../../../stores/editor/editor-state/element-editor-state/function-activator/HostedServiceFunctionActivatorEditorState.js';
|
23
|
+
import { hostedService_setAutoActivateUpdates, hostedService_setDocumentation, hostedService_setPattern, hostedService_removePatternParameter, hostedService_setStoreModel, } from '../../../../stores/graph-modifier/DSL_FunctionActivator_GraphModifierHelper.js';
|
24
|
+
import { useCallback, useEffect, useRef, useState } from 'react';
|
25
|
+
import { prettyCONSTName } from '@finos/legend-shared';
|
27
26
|
import { flowResult } from 'mobx';
|
27
|
+
import { ActivatorOwnershipForm } from './ActivatorFormComponents.js';
|
28
|
+
import { annotatedElement_addStereotype, annotatedElement_addTaggedValue, annotatedElement_deleteStereotype, annotatedElement_deleteTaggedValue, } from '../../../../stores/graph-modifier/DomainGraphModifierHelper.js';
|
29
|
+
import { CORE_DND_TYPE, } from '../../../../stores/editor/utils/DnDUtils.js';
|
30
|
+
import { useDrop } from 'react-dnd';
|
31
|
+
import { TaggedValueDragPreviewLayer, TaggedValueEditor, } from '../uml-editor/TaggedValueEditor.js';
|
32
|
+
import { StereotypeDragPreviewLayer, StereotypeSelector, } from '../uml-editor/StereotypeSelector.js';
|
28
33
|
export const HostedServiceFunctionActivatorEditor = observer(() => {
|
29
34
|
const editorStore = useEditorStore();
|
30
35
|
const applicationStore = useApplicationStore();
|
31
36
|
const editorState = editorStore.tabManagerState.getCurrentEditorState(HostedServiceFunctionActivatorEditorState);
|
37
|
+
const activatorElement = editorState.element;
|
32
38
|
const isReadOnly = editorState.isReadOnly;
|
39
|
+
const selectedTab = editorState.selectedTab;
|
40
|
+
let addButtonTitle = '';
|
41
|
+
switch (selectedTab) {
|
42
|
+
case ACTIVATOR_EDITOR_TAB.TAGGED_VALUES:
|
43
|
+
addButtonTitle = 'Add tagged value';
|
44
|
+
break;
|
45
|
+
case ACTIVATOR_EDITOR_TAB.STEREOTYPES:
|
46
|
+
addButtonTitle = 'Add stereotype';
|
47
|
+
break;
|
48
|
+
default:
|
49
|
+
break;
|
50
|
+
}
|
51
|
+
// Tagged Values and Stereotype
|
52
|
+
const add = () => {
|
53
|
+
if (!isReadOnly) {
|
54
|
+
if (selectedTab === ACTIVATOR_EDITOR_TAB.TAGGED_VALUES) {
|
55
|
+
annotatedElement_addTaggedValue(activatorElement, stub_TaggedValue(stub_Tag(stub_Profile())));
|
56
|
+
}
|
57
|
+
else if (selectedTab === ACTIVATOR_EDITOR_TAB.STEREOTYPES) {
|
58
|
+
annotatedElement_addStereotype(activatorElement, StereotypeExplicitReference.create(stub_Stereotype(stub_Profile())));
|
59
|
+
}
|
60
|
+
}
|
61
|
+
};
|
62
|
+
const handleDropTaggedValue = useCallback((item) => {
|
63
|
+
if (!isReadOnly && item.data.packageableElement instanceof Profile) {
|
64
|
+
annotatedElement_addTaggedValue(activatorElement, stub_TaggedValue(stub_Tag(item.data.packageableElement)));
|
65
|
+
}
|
66
|
+
}, [activatorElement, isReadOnly]);
|
67
|
+
const [{ isTaggedValueDragOver }, dropTaggedValueRef] = useDrop(() => ({
|
68
|
+
accept: [CORE_DND_TYPE.PROJECT_EXPLORER_PROFILE],
|
69
|
+
drop: (item) => handleDropTaggedValue(item),
|
70
|
+
collect: (monitor) => ({
|
71
|
+
isTaggedValueDragOver: monitor.isOver({ shallow: true }),
|
72
|
+
}),
|
73
|
+
}), [handleDropTaggedValue]);
|
74
|
+
const handleDropStereotype = useCallback((item) => {
|
75
|
+
if (!isReadOnly && item.data.packageableElement instanceof Profile) {
|
76
|
+
annotatedElement_addStereotype(activatorElement, StereotypeExplicitReference.create(stub_Stereotype(item.data.packageableElement)));
|
77
|
+
}
|
78
|
+
}, [activatorElement, isReadOnly]);
|
79
|
+
const [{ isStereotypeDragOver }, dropStereotypeRef] = useDrop(() => ({
|
80
|
+
accept: [CORE_DND_TYPE.PROJECT_EXPLORER_PROFILE],
|
81
|
+
drop: (item) => handleDropStereotype(item),
|
82
|
+
collect: (monitor) => ({
|
83
|
+
isStereotypeDragOver: monitor.isOver({ shallow: true }),
|
84
|
+
}),
|
85
|
+
}), [handleDropStereotype]);
|
86
|
+
const _deleteStereotype = (val) => () => annotatedElement_deleteStereotype(activatorElement, val);
|
87
|
+
const _deleteTaggedValue = (val) => () => annotatedElement_deleteTaggedValue(activatorElement, val);
|
88
|
+
const changeTab = (tab) => () => editorState.setSelectedTab(tab);
|
33
89
|
const activator = editorState.activator;
|
34
|
-
const ownership = activator.ownership;
|
35
90
|
const visitFunction = () => editorState.editorStore.graphEditorMode.openElement(activator.function.value);
|
36
91
|
const validate = () => {
|
37
92
|
flowResult(editorState.validate()).catch(applicationStore.alertUnhandledError);
|
@@ -47,9 +102,6 @@ export const HostedServiceFunctionActivatorEditor = observer(() => {
|
|
47
102
|
const toggleUseStoreModel = () => {
|
48
103
|
hostedService_setStoreModel(activator, !activator.storeModel);
|
49
104
|
};
|
50
|
-
const toggleGenerateLineage = () => {
|
51
|
-
hostedService_setGenerateLineage(activator, !activator.generateLineage);
|
52
|
-
};
|
53
105
|
const toggleAutoActivateUpdates = () => {
|
54
106
|
hostedService_setAutoActivateUpdates(activator, !activator.autoActivateUpdates);
|
55
107
|
};
|
@@ -59,88 +111,6 @@ export const HostedServiceFunctionActivatorEditor = observer(() => {
|
|
59
111
|
? patternValidationResult.messages[0]
|
60
112
|
: undefined;
|
61
113
|
};
|
62
|
-
//Ownership
|
63
|
-
const [showOwnerEditInput, setShowOwnerEditInput] = useState(false);
|
64
|
-
const [ownerInputValue, setOwnerInputValue] = useState('');
|
65
|
-
const [searchText, setSearchText] = useState('');
|
66
|
-
const [userOptions, setUserOptions] = useState([]);
|
67
|
-
const [isLoadingUsers, setIsLoadingUsers] = useState(false);
|
68
|
-
const [ownerInputs, setOwnerInputs] = useState([]);
|
69
|
-
const showAddOwnerInput = () => setShowOwnerEditInput(true);
|
70
|
-
const onOwnershipChange = (val) => {
|
71
|
-
if (val) {
|
72
|
-
editorState.setSelectedOwnership(val);
|
73
|
-
}
|
74
|
-
};
|
75
|
-
const updateDeploymentIdentifier = (event) => {
|
76
|
-
if (!isReadOnly && ownership instanceof DeploymentOwner) {
|
77
|
-
activator_setDeploymentOwner(ownership, event.target.value);
|
78
|
-
}
|
79
|
-
};
|
80
|
-
const changeUserOwnerInputValue = (event) => setOwnerInputValue(event.target.value);
|
81
|
-
const updateUser = (idx) => () => {
|
82
|
-
if (ownerInputValue &&
|
83
|
-
ownership instanceof UserList &&
|
84
|
-
!ownership.users.includes(ownerInputValue)) {
|
85
|
-
activator_updateUserOwnership(ownership, ownerInputValue, idx);
|
86
|
-
}
|
87
|
-
};
|
88
|
-
const showEditOwnerInput = (value, idx) => () => {
|
89
|
-
setOwnerInputValue(value);
|
90
|
-
setShowOwnerEditInput(idx);
|
91
|
-
};
|
92
|
-
const hideAddOrEditOwnerInput = () => {
|
93
|
-
setShowOwnerEditInput(false);
|
94
|
-
setOwnerInputValue('');
|
95
|
-
};
|
96
|
-
const deleteUser = (idx) => () => {
|
97
|
-
if (!isReadOnly && ownership instanceof UserList) {
|
98
|
-
activator_deleteValueFromUserOwnership(ownership, idx);
|
99
|
-
if (typeof showOwnerEditInput === 'number' &&
|
100
|
-
showOwnerEditInput > idx) {
|
101
|
-
setShowOwnerEditInput(showOwnerEditInput - 1);
|
102
|
-
}
|
103
|
-
}
|
104
|
-
};
|
105
|
-
const debouncedSearchUsers = useMemo(() => debounce((input) => {
|
106
|
-
setIsLoadingUsers(true);
|
107
|
-
flowResult(editorState.searchUsers(input))
|
108
|
-
.then((users) => setUserOptions(users.map((u) => ({
|
109
|
-
value: u.userId,
|
110
|
-
label: u.userId,
|
111
|
-
}))))
|
112
|
-
.then(() => setIsLoadingUsers(false))
|
113
|
-
.catch(editorState.editorStore.applicationStore.alertUnhandledError);
|
114
|
-
}, 500), [editorState]);
|
115
|
-
const onSearchTextChange = (value) => {
|
116
|
-
if (value !== searchText) {
|
117
|
-
setSearchText(value);
|
118
|
-
debouncedSearchUsers.cancel();
|
119
|
-
if (value.length >= 3) {
|
120
|
-
debouncedSearchUsers(value);
|
121
|
-
}
|
122
|
-
else if (value.length === 0) {
|
123
|
-
setUserOptions([]);
|
124
|
-
setIsLoadingUsers(false);
|
125
|
-
}
|
126
|
-
}
|
127
|
-
};
|
128
|
-
const onUserOptionChange = (options) => {
|
129
|
-
setOwnerInputs(options.map((op) => op.label));
|
130
|
-
setUserOptions([]);
|
131
|
-
debouncedSearchUsers.cancel();
|
132
|
-
setIsLoadingUsers(false);
|
133
|
-
};
|
134
|
-
const addUser = () => {
|
135
|
-
ownerInputs.forEach((value) => {
|
136
|
-
if (value &&
|
137
|
-
ownership instanceof UserList &&
|
138
|
-
!ownership.users.includes(value)) {
|
139
|
-
activator_addUserOwner(ownership, value);
|
140
|
-
}
|
141
|
-
});
|
142
|
-
hideAddOrEditOwnerInput();
|
143
|
-
};
|
144
114
|
//Pattern
|
145
115
|
const patternRef = useRef(null);
|
146
116
|
const [pattern, setPattern] = useState(activator.pattern);
|
@@ -157,20 +127,18 @@ export const HostedServiceFunctionActivatorEditor = observer(() => {
|
|
157
127
|
patternRef.current?.focus();
|
158
128
|
}, [editorState]);
|
159
129
|
return (_jsx("div", { className: "hosted-service-function-activator-editor", children: _jsxs(Panel, { children: [_jsx(PanelHeader, { title: "Rest Service Application" }), _jsx(PanelLoadingIndicator, { isLoading: Boolean(editorState.validateState.isInProgress ||
|
160
|
-
editorState.deployState.isInProgress) }), _jsxs(
|
161
|
-
|
162
|
-
},
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
MINIMUM_HOSTED_SERVICE_OWNERS &&
|
174
|
-
showOwnerEditInput !== true && (_jsxs("div", { className: "service-editor__owner__validation", title: `${MINIMUM_HOSTED_SERVICE_OWNERS} owners required`, children: [_jsx(ErrorIcon, {}), _jsxs("div", { className: "service-editor__owner__validation-label", children: ["Service requires at least", ' ', MINIMUM_HOSTED_SERVICE_OWNERS, " owners"] })] })), showOwnerEditInput !== true && (_jsx("div", { className: "panel__content__form__section__list__new-item__add", children: _jsx("button", { className: "panel__content__form__section__list__new-item__add-btn btn btn--dark", disabled: isReadOnly, onClick: showAddOwnerInput, tabIndex: -1, title: "Add owner", children: "Add Value" }) }))] })] }) }))] }) })] })] }) }));
|
130
|
+
editorState.deployState.isInProgress) }), _jsxs("div", { className: "panel__header function-editor__tabs__header", children: [_jsx("div", { className: "function-editor__tabs", children: Object.values(ACTIVATOR_EDITOR_TAB).map((tab) => (_jsx("div", { onClick: changeTab(tab), className: clsx('function-editor__tab', {
|
131
|
+
'function-editor__tab--active': tab === selectedTab,
|
132
|
+
}), children: prettyCONSTName(tab) }, tab))) }), selectedTab !== ACTIVATOR_EDITOR_TAB.DEFINITION && (_jsx("button", { className: "panel__header__action", disabled: isReadOnly, onClick: add, tabIndex: -1, title: addButtonTitle, children: _jsx(PlusIcon, {}) }))] }), _jsxs(PanelContent, { children: [selectedTab === ACTIVATOR_EDITOR_TAB.DEFINITION && (_jsxs("div", { children: [_jsxs("div", { className: "hosted-service-function-activator-editor__header", children: [_jsx("div", { className: "hosted-service-function-activator-editor__header__label", children: "Rest Service Activator" }), _jsxs("div", { className: "hosted-service-function-activator-editor__header__actions", children: [_jsx("button", { className: "hosted-service-function-activator-editor__header__actions__action hosted-service-function-activator-editor__header__actions__action--primary", onClick: validate, disabled: editorState.validateState.isInProgress, tabIndex: -1, title: "Click Validate to verify your activator before deployment", children: "Validate" }), _jsx("button", { className: "hosted-service-function-activator-editor__header__actions__action hosted-service-function-activator-editor__header__actions__action--primary", onClick: deploy, disabled: editorState.deployState.isInProgress, title: "Deploy to sandbox", tabIndex: -1, children: "Deploy to Sandbox" })] })] }), _jsx(PanelForm, { children: _jsx(PanelFormValidatedTextField, { ref: patternRef, name: "URL Pattern", isReadOnly: isReadOnly, className: "service-editor__pattern__input", errorMessageClassName: "service-editor__pattern__input", prompt: _jsxs(_Fragment, { children: ["Specifies the URL pattern of the service (e.g. /myService/", _jsx("span", { className: "service-editor__pattern__example__param", children: `{param}` }), ")"] }), update: (value) => {
|
133
|
+
updatePattern(value ?? '');
|
134
|
+
}, validate: getValidationMessage, value: pattern }) }), _jsx(PanelForm, { children: _jsxs("div", { className: "panel__content__form__section service-editor__parameters", children: [_jsx("div", { className: "panel__content__form__section__header__label", children: "Parameters" }), _jsx("div", { className: "panel__content__form__section__header__prompt", children: "URL parameters (each must be surrounded by curly braces) will be passed as arguments for the execution query. Note that if the service is configured to use multi-execution, one of the URL parameters must be chosen as the execution key." }), _jsxs("div", { className: "service-editor__parameters__list", children: [!activator.patternParameters.length && (_jsx("div", { className: "service-editor__parameters__list__empty", children: "No parameter" })), Boolean(activator.patternParameters.length) &&
|
135
|
+
activator.patternParameters.map((parameter) => (_jsxs("div", { className: "service-editor__parameter", children: [_jsx("div", { className: "service-editor__parameter__text", children: parameter }), _jsx("div", { className: "service-editor__parameter__actions", children: _jsx("button", { className: "service-editor__parameter__action", disabled: isReadOnly, onClick: removePatternParameter(parameter), title: "Remove parameter", tabIndex: -1, children: _jsx(TimesIcon, {}) }) })] }, parameter)))] })] }) }), _jsxs(PanelForm, { children: [_jsx("div", { className: "panel__content__form__section", children: _jsx("div", { className: "panel__content__form__section__header__label", children: "Function" }) }), _jsx("div", { className: "hosted-service-function-activator-editor__configuration__items", children: _jsxs("div", { className: "hosted-service-function-activator-editor__configuration__item", children: [_jsx("div", { className: "btn--sm hosted-service-function-activator-editor__configuration__item__label", children: _jsx(PURE_FunctionIcon, {}) }), _jsx("input", { className: "panel__content__form__section__input", spellCheck: false, disabled: true, value: generateFunctionPrettyName(activator.function.value, {
|
136
|
+
fullPath: true,
|
137
|
+
spacing: false,
|
138
|
+
}) }), _jsx("button", { className: "btn--dark btn--sm hosted-service-function-activator-editor__configuration__item__btn", onClick: visitFunction, tabIndex: -1, title: "See Function", children: _jsx(LongArrowRightIcon, {}) })] }) })] }), _jsx(PanelForm, { children: _jsxs("div", { className: "panel__content__form__section", children: [_jsx("div", { className: "panel__content__form__section__header__label", children: "Documentation" }), _jsx("div", { className: "panel__content__form__section__header__prompt", children: `Provide a brief description of the service's functionalities and usage` }), _jsx("textarea", { className: "panel__content__form__section__textarea service-editor__documentation__input", spellCheck: false, disabled: isReadOnly, value: activator.documentation, onChange: changeDocumentation })] }) }), _jsx(PanelForm, { children: _jsx(PanelFormBooleanField, { isReadOnly: isReadOnly, value: activator.autoActivateUpdates, name: "Auto Activate Updates", prompt: "Specifies if the new generation should be automatically activated;\n only valid when latest revision is selected upon service\n registration", update: toggleAutoActivateUpdates }) }), _jsx(PanelForm, { children: _jsx(PanelFormBooleanField, { isReadOnly: isReadOnly, value: activator.storeModel, name: "Store Model", prompt: "Use Store Model (slower)", update: toggleUseStoreModel }) }), _jsx(PanelForm, { children: _jsx(ActivatorOwnershipForm, { activator: activator, isReadOnly: isReadOnly }) })] })), selectedTab === ACTIVATOR_EDITOR_TAB.TAGGED_VALUES && (_jsxs("div", { ref: dropTaggedValueRef, className: clsx('panel__content__lists', {
|
139
|
+
'panel__content__lists--dnd-over': isTaggedValueDragOver && !isReadOnly,
|
140
|
+
}), children: [_jsx(TaggedValueDragPreviewLayer, {}), activatorElement.taggedValues.map((taggedValue) => (_jsx(TaggedValueEditor, { annotatedElement: activatorElement, taggedValue: taggedValue, deleteValue: _deleteTaggedValue(taggedValue), isReadOnly: isReadOnly, darkTheme: true }, taggedValue._UUID)))] })), selectedTab === ACTIVATOR_EDITOR_TAB.STEREOTYPES && (_jsxs("div", { ref: dropStereotypeRef, className: clsx('panel__content__lists', {
|
141
|
+
'panel__content__lists--dnd-over': isStereotypeDragOver && !isReadOnly,
|
142
|
+
}), children: [_jsx(StereotypeDragPreviewLayer, {}), activatorElement.stereotypes.map((stereotype) => (_jsx(StereotypeSelector, { annotatedElement: activatorElement, stereotype: stereotype, deleteStereotype: _deleteStereotype(stereotype), isReadOnly: isReadOnly, darkTheme: true }, stereotype.value._UUID)))] }))] })] }) }));
|
175
143
|
});
|
176
144
|
//# sourceMappingURL=HostedServiceFunctionActivatorEditor.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"HostedServiceFunctionActivatorEditor.js","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/HostedServiceFunctionActivatorEditor.tsx"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"HostedServiceFunctionActivatorEditor.js","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/HostedServiceFunctionActivatorEditor.tsx"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"SnowflakeAppFunctionActivatorEditor.d.ts","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/SnowflakeAppFunctionActivatorEditor.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;
|
1
|
+
{"version":3,"file":"SnowflakeAppFunctionActivatorEditor.d.ts","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/SnowflakeAppFunctionActivatorEditor.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAoCH,eAAO,MAAM,mCAAmC;;CAuR9C,CAAC"}
|
package/lib/components/editor/editor-group/function-activator/SnowflakeAppFunctionActivatorEditor.js
CHANGED
@@ -15,22 +15,21 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
15
15
|
* limitations under the License.
|
16
16
|
*/
|
17
17
|
import { Panel, PanelHeader, PanelContent, PanelForm, PanelFormTextField, PURE_FunctionIcon, LongArrowRightIcon, PanelLoadingIndicator, PURE_ConnectionIcon, CustomSelectorInput, createFilter, DataAccessIcon, } from '@finos/legend-art';
|
18
|
-
import { generateFunctionPrettyName, RelationalDatabaseConnection, DatabaseType,
|
18
|
+
import { generateFunctionPrettyName, RelationalDatabaseConnection, DatabaseType, SnowflakePermissionScheme, } from '@finos/legend-graph';
|
19
19
|
import { observer } from 'mobx-react-lite';
|
20
20
|
import { useApplicationStore } from '@finos/legend-application';
|
21
21
|
import { useEditorStore } from '../../EditorStoreProvider.js';
|
22
22
|
import { SnowflakeAppFunctionActivatorEdtiorState } from '../../../../stores/editor/editor-state/element-editor-state/function-activator/SnowflakeAppFunctionActivatorEditorState.js';
|
23
23
|
import { flowResult } from 'mobx';
|
24
|
-
import { useRef
|
24
|
+
import { useRef } from 'react';
|
25
25
|
import { buildRelationalDatabaseConnectionOption, } from '../connection-editor/RelationalDatabaseConnectionEditor.js';
|
26
|
-
import {
|
26
|
+
import { ActivatorOwnershipForm } from './ActivatorFormComponents.js';
|
27
27
|
export const SnowflakeAppFunctionActivatorEditor = observer(() => {
|
28
28
|
const editorStore = useEditorStore();
|
29
29
|
const applicationStore = useApplicationStore();
|
30
30
|
const editorState = editorStore.tabManagerState.getCurrentEditorState(SnowflakeAppFunctionActivatorEdtiorState);
|
31
31
|
const isReadOnly = editorState.isReadOnly;
|
32
32
|
const activator = editorState.activator;
|
33
|
-
const ownership = activator.ownership;
|
34
33
|
const connectionSelectorRef = useRef(null);
|
35
34
|
const connectionFilterOption = createFilter({
|
36
35
|
ignoreCase: true,
|
@@ -88,14 +87,6 @@ export const SnowflakeAppFunctionActivatorEditor = observer(() => {
|
|
88
87
|
const deploy = () => {
|
89
88
|
flowResult(editorState.deployToSandbox()).catch(applicationStore.alertUnhandledError);
|
90
89
|
};
|
91
|
-
//Ownership
|
92
|
-
const [ownerInputValue, setOwner] = useState(activator.ownership.id);
|
93
|
-
const updateDeploymentIdentifier = (event) => {
|
94
|
-
if (!isReadOnly) {
|
95
|
-
setOwner(event.target.value);
|
96
|
-
activator_setDeploymentOwner(ownership, event.target.value);
|
97
|
-
}
|
98
|
-
};
|
99
90
|
return (_jsx("div", { className: "snowflake-app-function-activator-editor", children: _jsxs(Panel, { children: [_jsx(PanelHeader, { title: "Snowflake Application" }), _jsx(PanelLoadingIndicator, { isLoading: Boolean(editorState.validateState.isInProgress ||
|
100
91
|
editorState.deployState.isInProgress) }), _jsxs(PanelContent, { children: [_jsxs("div", { className: "snowflake-app-function-activator-editor__header", children: [_jsx("div", { className: "snowflake-app-function-activator-editor__header__label", children: "Snowflake Activator Metadata" }), _jsxs("div", { className: "snowflake-app-function-activator-editor__header__actions", children: [_jsx("button", { className: "snowflake-app-function-activator-editor__header__actions__action snowflake-app-function-activator-editor__header__actions__action--primary", onClick: validate, disabled: editorState.validateState.isInProgress, tabIndex: -1, title: "Click Validate to verify your activator before deployment", children: "Validate" }), _jsx("button", { className: "snowflake-app-function-activator-editor__header__actions__action snowflake-app-function-activator-editor__header__actions__action--primary", onClick: deploy, disabled: editorState.deployState.isInProgress, title: "Deploy to sandbox", tabIndex: -1, children: "Deploy to Sandbox" })] })] }), _jsxs(PanelForm, { children: [_jsx("div", { className: "panel__content__form__section", children: _jsx("div", { className: "panel__content__form__section__header__label", children: "Function" }) }), _jsx("div", { className: "snowflake-app-function-activator-editor__configuration__items", children: _jsxs("div", { className: "snowflake-app-function-activator-editor__configuration__item", children: [_jsx("div", { className: "btn--sm snowflake-app-function-activator-editor__configuration__item__label", children: _jsx(PURE_FunctionIcon, {}) }), _jsx("input", { className: "panel__content__form__section__input", spellCheck: false, disabled: true, value: generateFunctionPrettyName(activator.function.value, {
|
101
92
|
fullPath: true,
|
@@ -109,6 +100,6 @@ export const SnowflakeAppFunctionActivatorEditor = observer(() => {
|
|
109
100
|
value: activator.permissionScheme,
|
110
101
|
}
|
111
102
|
: null, darkMode: !applicationStore.layoutService
|
112
|
-
.TEMPORARY__isLightColorThemeEnabled, placeholder: "Choose a Permission Scheme" })] }) })] }), _jsx(PanelForm, { children: _jsx(PanelFormTextField, { value: activator.usageRole, isReadOnly: isReadOnly, name: "Usage Role", placeholder: "Specify the usage role (optional)", update: (value) => editorState.updateUsageRole(value) }) }), _jsx(PanelForm, { children: _jsxs("div", { className: "panel__content__form__section", children: [_jsx("div", { className: "panel__content__form__section__header__label", children: "Description" }), _jsx("div", { className: "panel__content__form__section__header__prompt", children: `Provide a brief description of Snowflake App` }), _jsx("textarea", { className: "panel__content__form__section__textarea service-editor__documentation__input", spellCheck: false, disabled: isReadOnly, value: activator.description, onChange: changeDescription })] }) }), _jsx(PanelForm, { children:
|
103
|
+
.TEMPORARY__isLightColorThemeEnabled, placeholder: "Choose a Permission Scheme" })] }) })] }), _jsx(PanelForm, { children: _jsx(PanelFormTextField, { value: activator.usageRole, isReadOnly: isReadOnly, name: "Usage Role", placeholder: "Specify the usage role (optional)", update: (value) => editorState.updateUsageRole(value) }) }), _jsx(PanelForm, { children: _jsxs("div", { className: "panel__content__form__section", children: [_jsx("div", { className: "panel__content__form__section__header__label", children: "Description" }), _jsx("div", { className: "panel__content__form__section__header__prompt", children: `Provide a brief description of Snowflake App` }), _jsx("textarea", { className: "panel__content__form__section__textarea service-editor__documentation__input", spellCheck: false, disabled: isReadOnly, value: activator.description, onChange: changeDescription })] }) }), _jsx(PanelForm, { children: _jsx(ActivatorOwnershipForm, { activator: activator, isReadOnly: isReadOnly }) })] })] }) }));
|
113
104
|
});
|
114
105
|
//# sourceMappingURL=SnowflakeAppFunctionActivatorEditor.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"SnowflakeAppFunctionActivatorEditor.js","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/SnowflakeAppFunctionActivatorEditor.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAEL,KAAK,EACL,WAAW,EACX,YAAY,EACZ,SAAS,EACT,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,qBAAqB,EACrB,mBAAmB,EACnB,mBAAmB,EACnB,YAAY,EACZ,cAAc,GACf,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAEL,0BAA0B,EAC1B,4BAA4B,EAC5B,YAAY,EACZ,
|
1
|
+
{"version":3,"file":"SnowflakeAppFunctionActivatorEditor.js","sourceRoot":"","sources":["../../../../../src/components/editor/editor-group/function-activator/SnowflakeAppFunctionActivatorEditor.tsx"],"names":[],"mappings":"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"}
|
package/lib/index.css
CHANGED
package/lib/package.json
CHANGED
@@ -18,7 +18,7 @@ import { type GeneratorFn, ActionState } from '@finos/legend-shared';
|
|
18
18
|
import type { EditorStore } from '../../../EditorStore.js';
|
19
19
|
import { ElementEditorState } from '../ElementEditorState.js';
|
20
20
|
import { User } from '@finos/legend-server-sdlc';
|
21
|
-
declare enum HostedServiceOwnershipType {
|
21
|
+
export declare enum HostedServiceOwnershipType {
|
22
22
|
DEPLOYMENT_OWNERSHIP = "deploymentOwnership",
|
23
23
|
USERLIST_OWNERSHIP = "userListOwnership"
|
24
24
|
}
|
@@ -29,6 +29,11 @@ export declare const OWNERSHIP_OPTIONS: {
|
|
29
29
|
label: string;
|
30
30
|
value: HostedServiceOwnershipType;
|
31
31
|
}[];
|
32
|
+
export declare enum ACTIVATOR_EDITOR_TAB {
|
33
|
+
DEFINITION = "DEFINITION",
|
34
|
+
TAGGED_VALUES = "TAGGED_VALUES",
|
35
|
+
STEREOTYPES = "STEREOTYPES"
|
36
|
+
}
|
32
37
|
export type HostedServiceOwnerOption = {
|
33
38
|
label: string;
|
34
39
|
value: string;
|
@@ -36,12 +41,13 @@ export type HostedServiceOwnerOption = {
|
|
36
41
|
export declare class HostedServiceFunctionActivatorEditorState extends ElementEditorState {
|
37
42
|
readonly validateState: ActionState;
|
38
43
|
readonly deployState: ActionState;
|
44
|
+
selectedTab: ACTIVATOR_EDITOR_TAB;
|
39
45
|
constructor(editorStore: EditorStore, element: HostedService);
|
46
|
+
setSelectedTab(tab: ACTIVATOR_EDITOR_TAB): void;
|
40
47
|
get activator(): HostedService;
|
41
48
|
updateDocumentation(val: string): void;
|
42
49
|
updatePattern(val: string): void;
|
43
50
|
storeModel(val: boolean): void;
|
44
|
-
generateLineage(val: boolean): void;
|
45
51
|
get selectedOwnership(): HostedServiceOwnerOption | undefined;
|
46
52
|
setSelectedOwnership(o: HostedServiceOwnerOption): void;
|
47
53
|
validate(): GeneratorFn<void>;
|
@@ -49,5 +55,4 @@ export declare class HostedServiceFunctionActivatorEditorState extends ElementEd
|
|
49
55
|
searchUsers(name: string): GeneratorFn<User[]>;
|
50
56
|
reprocess(newElement: HostedService, editorStore: EditorStore): HostedServiceFunctionActivatorEditorState;
|
51
57
|
}
|
52
|
-
export {};
|
53
58
|
//# sourceMappingURL=HostedServiceFunctionActivatorEditorState.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"HostedServiceFunctionActivatorEditorState.d.ts","sourceRoot":"","sources":["../../../../../../src/stores/editor/editor-state/element-editor-state/function-activator/HostedServiceFunctionActivatorEditorState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAEL,aAAa,EAId,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,KAAK,WAAW,EAChB,WAAW,EAIZ,MAAM,sBAAsB,CAAC;AAE9B,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAE9D,OAAO,EAAE,IAAI,EAAE,MAAM,2BAA2B,CAAC;AAGjD,
|
1
|
+
{"version":3,"file":"HostedServiceFunctionActivatorEditorState.d.ts","sourceRoot":"","sources":["../../../../../../src/stores/editor/editor-state/element-editor-state/function-activator/HostedServiceFunctionActivatorEditorState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAEL,aAAa,EAId,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,KAAK,WAAW,EAChB,WAAW,EAIZ,MAAM,sBAAsB,CAAC;AAE9B,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAE9D,OAAO,EAAE,IAAI,EAAE,MAAM,2BAA2B,CAAC;AAGjD,oBAAY,0BAA0B;IACpC,oBAAoB,wBAAwB;IAC5C,kBAAkB,sBAAsB;CACzC;AACD,eAAO,MAAM,6BAA6B,IAAI,CAAC;AAC/C,eAAO,MAAM,wBAAwB,eAAe,CAAC;AACrD,eAAO,MAAM,sBAAsB,cAAc,CAAC;AAElD,eAAO,MAAM,iBAAiB;;;GAK7B,CAAC;AAEF,oBAAY,oBAAoB;IAC9B,UAAU,eAAe;IACzB,aAAa,kBAAkB;IAC/B,WAAW,gBAAgB;CAC5B;AAED,MAAM,MAAM,wBAAwB,GAAG;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,qBAAa,yCAA0C,SAAQ,kBAAkB;IAC/E,QAAQ,CAAC,aAAa,cAAwB;IAC9C,QAAQ,CAAC,WAAW,cAAwB;IAE5C,WAAW,EAAE,oBAAoB,CAAC;gBAEtB,WAAW,EAAE,WAAW,EAAE,OAAO,EAAE,aAAa;IAqB5D,cAAc,CAAC,GAAG,EAAE,oBAAoB,GAAG,IAAI;IAI/C,IAAI,SAAS,IAAI,aAAa,CAQ7B;IAED,mBAAmB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAItC,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIhC,UAAU,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;IAI9B,IAAI,iBAAiB,IAAI,wBAAwB,GAAG,SAAS,CAc5D;IAED,oBAAoB,CAAC,CAAC,EAAE,wBAAwB,GAAG,IAAI;IA2BtD,QAAQ,IAAI,WAAW,CAAC,IAAI,CAAC;IAkB7B,eAAe,IAAI,WAAW,CAAC,IAAI,CAAC;IAkBpC,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,WAAW,CAAC,IAAI,EAAE,CAAC;IAc/C,SAAS,CACP,UAAU,EAAE,aAAa,EACzB,WAAW,EAAE,WAAW,GACvB,yCAAyC;CAM7C"}
|