@equinor/fusion-framework-cli 9.10.1 → 9.11.0
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/CHANGELOG.md +6 -0
- package/dist/bin/dev-portal/ContextSelector/ContextSelector.js +26 -0
- package/dist/bin/dev-portal/ContextSelector/ContextSelector.js.map +1 -0
- package/dist/bin/dev-portal/ContextSelector/index.js +2 -0
- package/dist/bin/dev-portal/ContextSelector/index.js.map +1 -0
- package/dist/bin/dev-portal/ContextSelector/useContextResolver.js +137 -0
- package/dist/bin/dev-portal/ContextSelector/useContextResolver.js.map +1 -0
- package/dist/bin/dev-portal/Header.js +1 -1
- package/dist/bin/dev-portal/Header.js.map +1 -1
- package/dist/bin/public/assets/{index-C29gzu5T.js → index-BBPkK1B1.js} +675 -538
- package/dist/bin/public/index.html +1 -1
- package/dist/types/bin/dev-portal/ContextSelector/ContextSelector.d.ts +3 -0
- package/dist/types/bin/dev-portal/ContextSelector/index.d.ts +1 -0
- package/dist/types/bin/dev-portal/ContextSelector/useContextResolver.d.ts +9 -0
- package/dist/types/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +8 -7
- package/dist/bin/dev-portal/ContextSelector.js +0 -134
- package/dist/bin/dev-portal/ContextSelector.js.map +0 -1
- package/dist/types/bin/dev-portal/ContextSelector.d.ts +0 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ContextSelector } from './ContextSelector';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IContextProvider } from '@equinor/fusion-framework-module-context';
|
|
2
|
+
import '@equinor/fusion-framework-app';
|
|
3
|
+
import { ContextResult, ContextResolver } from '@equinor/fusion-react-context-selector';
|
|
4
|
+
export declare const useContextResolver: () => {
|
|
5
|
+
resolver: ContextResolver | null;
|
|
6
|
+
provider: IContextProvider | null;
|
|
7
|
+
currentContext: ContextResult;
|
|
8
|
+
};
|
|
9
|
+
export default useContextResolver;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "9.
|
|
1
|
+
export declare const version = "9.11.0";
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '9.
|
|
1
|
+
export const version = '9.11.0';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-cli",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.11.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"Fusion",
|
|
6
6
|
"Fusion Framework",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"@equinor/eds-core-react": "^0.36.0",
|
|
28
28
|
"@equinor/eds-icons": "^0.21.0",
|
|
29
29
|
"@equinor/eds-tokens": "^0.9.2",
|
|
30
|
+
"@equinor/fusion-wc-chip": "^1.2.1",
|
|
30
31
|
"@equinor/fusion-wc-person": "^2.6.5",
|
|
31
32
|
"@types/adm-zip": "^0.5.0",
|
|
32
33
|
"@types/semver": "^7.5.0",
|
|
@@ -50,9 +51,9 @@
|
|
|
50
51
|
"vite-plugin-restart": "^0.4.0",
|
|
51
52
|
"vite-tsconfig-paths": "^4.2.0",
|
|
52
53
|
"@equinor/fusion-framework-app": "^9.0.1",
|
|
54
|
+
"@equinor/fusion-framework-react-components-people-provider": "^1.3.1",
|
|
53
55
|
"@equinor/fusion-framework-module-feature-flag": "^1.1.0",
|
|
54
|
-
"@equinor/fusion-observable": "^8.2.0"
|
|
55
|
-
"@equinor/fusion-framework-react-components-people-provider": "^1.3.1"
|
|
56
|
+
"@equinor/fusion-observable": "^8.2.0"
|
|
56
57
|
},
|
|
57
58
|
"devDependencies": {
|
|
58
59
|
"@equinor/fusion-react-context-selector": "^0.6.3",
|
|
@@ -73,14 +74,14 @@
|
|
|
73
74
|
"typescript": "^5.4.2",
|
|
74
75
|
"@equinor/fusion-framework": "^7.1.1",
|
|
75
76
|
"@equinor/fusion-framework-app": "^9.0.1",
|
|
76
|
-
"@equinor/fusion-framework-module-app": "^5.3.0",
|
|
77
|
-
"@equinor/fusion-framework-module-context": "^5.0.0",
|
|
78
77
|
"@equinor/fusion-framework-module-bookmark": "^1.2.0",
|
|
78
|
+
"@equinor/fusion-framework-module-app": "^5.3.0",
|
|
79
79
|
"@equinor/fusion-framework-module-http": "^5.2.0",
|
|
80
|
-
"@equinor/fusion-framework-module-navigation": "^4.0.0",
|
|
81
80
|
"@equinor/fusion-framework-module-msal": "^3.1.0",
|
|
82
|
-
"@equinor/fusion-framework-module-
|
|
81
|
+
"@equinor/fusion-framework-module-context": "^5.0.0",
|
|
82
|
+
"@equinor/fusion-framework-module-navigation": "^4.0.0",
|
|
83
83
|
"@equinor/fusion-framework-react": "^7.0.1",
|
|
84
|
+
"@equinor/fusion-framework-module-services": "^4.0.1",
|
|
84
85
|
"@equinor/fusion-framework-react-components-bookmark": "^0.4.1",
|
|
85
86
|
"@equinor/fusion-framework-react-module-bookmark": "^2.1.1",
|
|
86
87
|
"@equinor/fusion-query": "^4.1.0"
|
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
-
});
|
|
9
|
-
};
|
|
10
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
11
|
-
import { useCallback, useMemo, useState } from 'react';
|
|
12
|
-
import { useFramework } from '@equinor/fusion-framework-react';
|
|
13
|
-
import { useCurrentApp } from '@equinor/fusion-framework-react/app';
|
|
14
|
-
import { useObservableState, useObservableSubscription } from '@equinor/fusion-observable/react';
|
|
15
|
-
import { EMPTY } from 'rxjs';
|
|
16
|
-
import { ContextProvider, ContextSearch, } from '@equinor/fusion-react-context-selector';
|
|
17
|
-
import { styled } from 'styled-components';
|
|
18
|
-
const Styled = {
|
|
19
|
-
ContextSelectorWrapper: styled.div `
|
|
20
|
-
min-width: 25rem;
|
|
21
|
-
width: fit-content;
|
|
22
|
-
`,
|
|
23
|
-
};
|
|
24
|
-
const mapper = (src) => {
|
|
25
|
-
return src.map((i) => {
|
|
26
|
-
var _a, _b;
|
|
27
|
-
return {
|
|
28
|
-
id: i.id,
|
|
29
|
-
title: i.title,
|
|
30
|
-
subTitle: (_a = i.type) === null || _a === void 0 ? void 0 : _a.id,
|
|
31
|
-
graphic: ((_b = i.type) === null || _b === void 0 ? void 0 : _b.id) === 'OrgChart' ? 'list' : undefined,
|
|
32
|
-
};
|
|
33
|
-
});
|
|
34
|
-
};
|
|
35
|
-
const singleItem = (props) => {
|
|
36
|
-
return Object.assign({ id: 'no-such-item', title: 'Change me' }, props);
|
|
37
|
-
};
|
|
38
|
-
const noPreselect = [];
|
|
39
|
-
const processError = (err) => {
|
|
40
|
-
if (err.name === 'QueryClientError') {
|
|
41
|
-
return processError(err.cause);
|
|
42
|
-
}
|
|
43
|
-
if (err.name === 'FusionContextSearchError') {
|
|
44
|
-
const error = err;
|
|
45
|
-
return [
|
|
46
|
-
singleItem({
|
|
47
|
-
id: error.name,
|
|
48
|
-
title: error.title,
|
|
49
|
-
subTitle: error.description,
|
|
50
|
-
graphic: 'error_outlined',
|
|
51
|
-
isDisabled: true,
|
|
52
|
-
}),
|
|
53
|
-
];
|
|
54
|
-
}
|
|
55
|
-
return [
|
|
56
|
-
singleItem({
|
|
57
|
-
title: 'Unexpected error occurred',
|
|
58
|
-
subTitle: 'Please try again or report the issue in Services@Equinor',
|
|
59
|
-
graphic: 'error_outlined',
|
|
60
|
-
isDisabled: true,
|
|
61
|
-
}),
|
|
62
|
-
];
|
|
63
|
-
};
|
|
64
|
-
const useQueryContext = () => {
|
|
65
|
-
const framework = useFramework();
|
|
66
|
-
const { value: currentContext } = useObservableState(useMemo(() => framework.modules.context.currentContext$, [framework.modules.context]));
|
|
67
|
-
const preselected = useMemo(() => (currentContext ? mapper([currentContext]) : noPreselect), [currentContext]);
|
|
68
|
-
const [provider, setProvider] = useState(null);
|
|
69
|
-
const { currentApp } = useCurrentApp();
|
|
70
|
-
const instance$ = useMemo(() => (currentApp === null || currentApp === void 0 ? void 0 : currentApp.instance$) || EMPTY, [currentApp]);
|
|
71
|
-
const onContextProviderChange = useCallback((modules) => {
|
|
72
|
-
const contextProvider = modules.context;
|
|
73
|
-
if (contextProvider) {
|
|
74
|
-
setProvider(contextProvider);
|
|
75
|
-
}
|
|
76
|
-
}, [setProvider]);
|
|
77
|
-
const clearContextProvider = useCallback(() => setProvider(null), [setProvider]);
|
|
78
|
-
useObservableSubscription(instance$, onContextProviderChange, clearContextProvider);
|
|
79
|
-
const minLength = 3;
|
|
80
|
-
const resolver = useMemo(() => ({
|
|
81
|
-
searchQuery: (search) => __awaiter(void 0, void 0, void 0, function* () {
|
|
82
|
-
if (!provider) {
|
|
83
|
-
return [];
|
|
84
|
-
}
|
|
85
|
-
if (search.length < minLength) {
|
|
86
|
-
return [
|
|
87
|
-
singleItem({
|
|
88
|
-
id: 'min-length',
|
|
89
|
-
title: `Type ${minLength - search.length} more chars to search`,
|
|
90
|
-
isDisabled: true,
|
|
91
|
-
}),
|
|
92
|
-
];
|
|
93
|
-
}
|
|
94
|
-
try {
|
|
95
|
-
const result = yield provider.queryContextAsync(search);
|
|
96
|
-
if (result.length) {
|
|
97
|
-
return mapper(result);
|
|
98
|
-
}
|
|
99
|
-
return [
|
|
100
|
-
singleItem({
|
|
101
|
-
id: 'no-results',
|
|
102
|
-
title: 'No results found',
|
|
103
|
-
graphic: 'info_circle',
|
|
104
|
-
isDisabled: true,
|
|
105
|
-
}),
|
|
106
|
-
];
|
|
107
|
-
}
|
|
108
|
-
catch (e) {
|
|
109
|
-
const err = e;
|
|
110
|
-
console.log('ContextResolver query was cancelled');
|
|
111
|
-
return processError(err);
|
|
112
|
-
}
|
|
113
|
-
}),
|
|
114
|
-
initialResult: preselected,
|
|
115
|
-
}), [provider, preselected]);
|
|
116
|
-
const setContext = useCallback((e) => {
|
|
117
|
-
var _a;
|
|
118
|
-
if ((_a = e.nativeEvent.detail) === null || _a === void 0 ? void 0 : _a.selected.length) {
|
|
119
|
-
framework.modules.context.setCurrentContextByIdAsync(e.nativeEvent.detail.selected[0].id);
|
|
120
|
-
}
|
|
121
|
-
}, [framework]);
|
|
122
|
-
const clearContext = useCallback(() => {
|
|
123
|
-
if (!framework)
|
|
124
|
-
return;
|
|
125
|
-
framework.modules.context.clearCurrentContext();
|
|
126
|
-
}, [framework]);
|
|
127
|
-
return [resolver, setContext, preselected === null || preselected === void 0 ? void 0 : preselected[0], clearContext];
|
|
128
|
-
};
|
|
129
|
-
export const ContextSelector = () => {
|
|
130
|
-
const [resolver, setContext, currentContext, clearContext] = useQueryContext();
|
|
131
|
-
return (_jsx(ContextProvider, { resolver: resolver, children: _jsx(Styled.ContextSelectorWrapper, { children: _jsx(ContextSearch, { id: "context-selector-header", placeholder: "Search for context", initialText: "Start typing to search", dropdownHeight: "300px", variant: "header", onSelect: setContext, autofocus: true, onClearContext: clearContext, previewItem: currentContext !== null && currentContext !== void 0 ? currentContext : null, value: currentContext === null || currentContext === void 0 ? void 0 : currentContext.title, selectedId: currentContext === null || currentContext === void 0 ? void 0 : currentContext.title }) }) }));
|
|
132
|
-
};
|
|
133
|
-
export default ContextSelector;
|
|
134
|
-
//# sourceMappingURL=ContextSelector.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ContextSelector.js","sourceRoot":"","sources":["../../../src/bin/dev-portal/ContextSelector.tsx"],"names":[],"mappings":"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"}
|