@equinor/fusion-framework-cli 10.2.4 → 10.3.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 +513 -495
- package/dist/bin/create-dev-serve.js +4 -0
- package/dist/bin/create-dev-serve.js.map +1 -1
- package/dist/bin/public/assets/index-BYZA1fk0.js +3513 -0
- package/dist/bin/public/index.html +1 -1
- package/dist/lib/plugins/app-proxy/app-proxy-plugin.js +19 -7
- package/dist/lib/plugins/app-proxy/app-proxy-plugin.js.map +1 -1
- package/dist/lib/plugins/app-settings/index.js +47 -0
- package/dist/lib/plugins/app-settings/index.js.map +1 -0
- package/dist/lib/utils/parse-json-request.js +28 -0
- package/dist/lib/utils/parse-json-request.js.map +1 -0
- package/dist/types/lib/plugins/app-settings/index.d.ts +32 -0
- package/dist/types/lib/utils/parse-json-request.d.ts +10 -0
- package/dist/types/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +6 -6
- package/dist/bin/public/assets/index-BjyIbBhI.js +0 -3523
|
@@ -7,7 +7,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
7
7
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
|
-
import { join } from 'node:path';
|
|
11
10
|
/**
|
|
12
11
|
* Preserve token for executing proxy assets
|
|
13
12
|
*
|
|
@@ -100,19 +99,32 @@ export const appProxyPlugin = (options) => {
|
|
|
100
99
|
if (!app)
|
|
101
100
|
return;
|
|
102
101
|
// serve app config if request matches the current app and version
|
|
103
|
-
const configPath =
|
|
102
|
+
const configPath = [
|
|
103
|
+
proxyPath,
|
|
104
|
+
(_a = app.configPath) !== null && _a !== void 0 ? _a : `apps/${app.key}/builds/${app.version}/config`,
|
|
105
|
+
].join('/');
|
|
104
106
|
server.middlewares.use(configPath, (_req, res) => __awaiter(this, void 0, void 0, function* () {
|
|
105
107
|
res.setHeader('content-type', 'application/json');
|
|
106
108
|
res.end(JSON.stringify(yield app.generateConfig()));
|
|
107
109
|
}));
|
|
108
110
|
// serve app manifest if request matches the current app
|
|
109
|
-
const manifestPath =
|
|
110
|
-
server.middlewares.use(
|
|
111
|
-
|
|
112
|
-
|
|
111
|
+
const manifestPath = [proxyPath, (_b = app.manifestPath) !== null && _b !== void 0 ? _b : `apps/${app.key}`].join('/');
|
|
112
|
+
server.middlewares.use((req, res, next) => __awaiter(this, void 0, void 0, function* () {
|
|
113
|
+
var _a;
|
|
114
|
+
// We only want to match the exact path
|
|
115
|
+
const [requestPath] = ((_a = req.url) !== null && _a !== void 0 ? _a : '').split('?');
|
|
116
|
+
if (requestPath === manifestPath) {
|
|
117
|
+
res.setHeader('content-type', 'application/json');
|
|
118
|
+
res.end(JSON.stringify(yield app.generateManifest()));
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
next();
|
|
113
122
|
}));
|
|
114
123
|
// serve local bundles if request matches the current app and version
|
|
115
|
-
const bundlePath =
|
|
124
|
+
const bundlePath = [
|
|
125
|
+
proxyPath,
|
|
126
|
+
(_c = app.bundlePath) !== null && _c !== void 0 ? _c : `bundles/apps/${app.key}/${app.version}`,
|
|
127
|
+
].join('/');
|
|
116
128
|
server.middlewares.use((req, _res, next) => __awaiter(this, void 0, void 0, function* () {
|
|
117
129
|
var _a;
|
|
118
130
|
if ((_a = req.url) === null || _a === void 0 ? void 0 : _a.match(bundlePath)) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-proxy-plugin.js","sourceRoot":"","sources":["../../../../src/lib/plugins/app-proxy/app-proxy-plugin.ts"],"names":[],"mappings":";;;;;;;;;
|
|
1
|
+
{"version":3,"file":"app-proxy-plugin.js","sourceRoot":"","sources":["../../../../src/lib/plugins/app-proxy/app-proxy-plugin.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,47 @@
|
|
|
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 parseJsonFromRequest from '../../utils/parse-json-request.js';
|
|
11
|
+
/**
|
|
12
|
+
* This plugin provides a simple way to manage application settings in a local development environment.
|
|
13
|
+
*
|
|
14
|
+
* This plugin will cache the settings in memory and respond to `PUT` requests to update the settings.
|
|
15
|
+
* Restarting the development server will reset the settings to the default values.
|
|
16
|
+
*
|
|
17
|
+
* @param options - The options for configuring the app settings plugin.
|
|
18
|
+
* @returns A Vite Plugin object that can be used to configure a server.
|
|
19
|
+
*
|
|
20
|
+
* The plugin provides the following functionality:
|
|
21
|
+
* - Matches requests based on a specified path pattern.
|
|
22
|
+
* - Handles `PUT` requests to update application settings.
|
|
23
|
+
* - Responds with the current application settings in JSON format.
|
|
24
|
+
*/
|
|
25
|
+
export function appSettingsPlugin(options) {
|
|
26
|
+
var _a, _b;
|
|
27
|
+
let appSettings = (_a = options.defaultSettings) !== null && _a !== void 0 ? _a : {};
|
|
28
|
+
const pathMatch = new RegExp((_b = options.match) !== null && _b !== void 0 ? _b : '/persons/me/apps/.*/settings');
|
|
29
|
+
return {
|
|
30
|
+
name: 'app-settings',
|
|
31
|
+
configureServer(server) {
|
|
32
|
+
server.middlewares.use((req, res, next) => __awaiter(this, void 0, void 0, function* () {
|
|
33
|
+
var _a;
|
|
34
|
+
if (!((_a = req.url) === null || _a === void 0 ? void 0 : _a.match(pathMatch))) {
|
|
35
|
+
return next();
|
|
36
|
+
}
|
|
37
|
+
if (req.method === 'PUT') {
|
|
38
|
+
appSettings = yield parseJsonFromRequest(req);
|
|
39
|
+
}
|
|
40
|
+
res.setHeader('content-type', 'application/json');
|
|
41
|
+
res.end(JSON.stringify(appSettings));
|
|
42
|
+
}));
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
export default appSettingsPlugin;
|
|
47
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/plugins/app-settings/index.ts"],"names":[],"mappings":";;;;;;;;;AAEA,OAAO,oBAAoB,MAAM,mCAAmC,CAAC;AAmBrE;;;;;;;;;;;;;GAaG;AACH,MAAM,UAAU,iBAAiB,CAAC,OAAiC;;IAC/D,IAAI,WAAW,GAAG,MAAA,OAAO,CAAC,eAAe,mCAAI,EAAE,CAAC;IAChD,MAAM,SAAS,GAAG,IAAI,MAAM,CAAC,MAAA,OAAO,CAAC,KAAK,mCAAI,8BAA8B,CAAC,CAAC;IAC9E,OAAO;QACH,IAAI,EAAE,cAAc;QACpB,eAAe,CAAC,MAAM;YAClB,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,CAAO,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE;;gBAC5C,IAAI,CAAC,CAAA,MAAA,GAAG,CAAC,GAAG,0CAAE,KAAK,CAAC,SAAS,CAAC,CAAA,EAAE,CAAC;oBAC7B,OAAO,IAAI,EAAE,CAAC;gBAClB,CAAC;gBAED,IAAI,GAAG,CAAC,MAAM,KAAK,KAAK,EAAE,CAAC;oBACvB,WAAW,GAAG,MAAM,oBAAoB,CAAC,GAAG,CAAC,CAAC;gBAClD,CAAC;gBAED,GAAG,CAAC,SAAS,CAAC,cAAc,EAAE,kBAAkB,CAAC,CAAC;gBAClD,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,CAAC;YACzC,CAAC,CAAA,CAAC,CAAC;QACP,CAAC;KACJ,CAAC;AACN,CAAC;AAED,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
/**
|
|
11
|
+
* Extracts and parses JSON data from an incoming HTTP request.
|
|
12
|
+
*
|
|
13
|
+
* @param req - The incoming HTTP request object.
|
|
14
|
+
* @returns A promise that resolves to a record containing the parsed JSON data.
|
|
15
|
+
* @throws Will reject the promise if there is an error during data reception or JSON parsing.
|
|
16
|
+
*/
|
|
17
|
+
export function parseJsonFromRequest(req) {
|
|
18
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
19
|
+
return yield new Promise((resolve, reject) => {
|
|
20
|
+
let data = '';
|
|
21
|
+
req.on('data', (chunk) => (data += chunk.toString()));
|
|
22
|
+
req.on('end', () => resolve(JSON.parse(data)));
|
|
23
|
+
req.on('error', reject);
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
export default parseJsonFromRequest;
|
|
28
|
+
//# sourceMappingURL=parse-json-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parse-json-request.js","sourceRoot":"","sources":["../../../src/lib/utils/parse-json-request.ts"],"names":[],"mappings":";;;;;;;;;AAEA;;;;;;GAMG;AACH,MAAM,UAAgB,oBAAoB,CAAC,GAAoB;;QAC3D,OAAO,MAAM,IAAI,OAAO,CAA0B,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YAClE,IAAI,IAAI,GAAG,EAAE,CAAC;YACd,GAAG,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,IAAI,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;YACtD,GAAG,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YAC/C,GAAG,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;QAC5B,CAAC,CAAC,CAAC;IACP,CAAC;CAAA;AAED,eAAe,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { type Plugin } from 'vite';
|
|
2
|
+
/**
|
|
3
|
+
* Options for configuring the AppSettingsPlugin.
|
|
4
|
+
*/
|
|
5
|
+
export interface AppSettingsPluginOptions {
|
|
6
|
+
/**
|
|
7
|
+
* A string or regular expression to match specific settings.
|
|
8
|
+
* If provided, only settings that match this pattern will be considered.
|
|
9
|
+
*/
|
|
10
|
+
match?: string | RegExp;
|
|
11
|
+
/**
|
|
12
|
+
* A record of default settings to be used if no other settings are provided.
|
|
13
|
+
* The keys are setting names and the values are the default values for those settings.
|
|
14
|
+
*/
|
|
15
|
+
defaultSettings?: Record<string, unknown>;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* This plugin provides a simple way to manage application settings in a local development environment.
|
|
19
|
+
*
|
|
20
|
+
* This plugin will cache the settings in memory and respond to `PUT` requests to update the settings.
|
|
21
|
+
* Restarting the development server will reset the settings to the default values.
|
|
22
|
+
*
|
|
23
|
+
* @param options - The options for configuring the app settings plugin.
|
|
24
|
+
* @returns A Vite Plugin object that can be used to configure a server.
|
|
25
|
+
*
|
|
26
|
+
* The plugin provides the following functionality:
|
|
27
|
+
* - Matches requests based on a specified path pattern.
|
|
28
|
+
* - Handles `PUT` requests to update application settings.
|
|
29
|
+
* - Responds with the current application settings in JSON format.
|
|
30
|
+
*/
|
|
31
|
+
export declare function appSettingsPlugin(options: AppSettingsPluginOptions): Plugin;
|
|
32
|
+
export default appSettingsPlugin;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IncomingMessage } from 'node:http';
|
|
2
|
+
/**
|
|
3
|
+
* Extracts and parses JSON data from an incoming HTTP request.
|
|
4
|
+
*
|
|
5
|
+
* @param req - The incoming HTTP request object.
|
|
6
|
+
* @returns A promise that resolves to a record containing the parsed JSON data.
|
|
7
|
+
* @throws Will reject the promise if there is an error during data reception or JSON parsing.
|
|
8
|
+
*/
|
|
9
|
+
export declare function parseJsonFromRequest(req: IncomingMessage): Promise<Record<string, unknown>>;
|
|
10
|
+
export default parseJsonFromRequest;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "10.
|
|
1
|
+
export declare const version = "10.3.0";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-cli",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.3.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"Fusion",
|
|
6
6
|
"Fusion Framework",
|
|
@@ -85,19 +85,19 @@
|
|
|
85
85
|
"styled-components": "^6.0.7",
|
|
86
86
|
"typescript": "^5.5.4",
|
|
87
87
|
"@equinor/fusion-framework": "^7.2.11",
|
|
88
|
+
"@equinor/fusion-framework-app": "^9.1.15",
|
|
89
|
+
"@equinor/fusion-framework-module-app": "^6.1.0",
|
|
88
90
|
"@equinor/fusion-framework-module-bookmark": "^2.0.1",
|
|
89
|
-
"@equinor/fusion-framework-module-app": "^6.0.3",
|
|
90
91
|
"@equinor/fusion-framework-module-context": "^5.0.14",
|
|
91
|
-
"@equinor/fusion-framework-module-navigation": "^4.0.7",
|
|
92
|
-
"@equinor/fusion-framework-app": "^9.1.14",
|
|
93
92
|
"@equinor/fusion-framework-module-feature-flag": "^1.1.11",
|
|
94
|
-
"@equinor/fusion-framework-react": "^7.3.3",
|
|
95
93
|
"@equinor/fusion-framework-module-msal": "^3.1.5",
|
|
94
|
+
"@equinor/fusion-framework-module-navigation": "^4.0.7",
|
|
96
95
|
"@equinor/fusion-framework-module-services": "^5.0.0",
|
|
97
96
|
"@equinor/fusion-framework-react-components-bookmark": "^1.0.2",
|
|
97
|
+
"@equinor/fusion-framework-react": "^7.3.3",
|
|
98
|
+
"@equinor/fusion-framework-react-components-people-provider": "^1.4.14",
|
|
98
99
|
"@equinor/fusion-framework-react-module-bookmark": "^2.2.2",
|
|
99
100
|
"@equinor/fusion-observable": "^8.4.3",
|
|
100
|
-
"@equinor/fusion-framework-react-components-people-provider": "^1.4.14",
|
|
101
101
|
"@equinor/fusion-query": "^5.1.5"
|
|
102
102
|
},
|
|
103
103
|
"scripts": {
|