@module-federation/nextjs-mf 7.0.6 → 7.0.8
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 +31 -0
- package/package.json +3 -3
- package/src/default-delegate.js +234 -2
- package/src/default-delegate.js.map +1 -1
- package/utils/index.d.ts +2 -1
- package/utils/index.js +2 -1
- package/utils/index.js.map +1 -1
- package/importDelegatedModule.d.ts +0 -3
- package/importDelegatedModule.js +0 -7
- package/importDelegatedModule.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,37 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [7.0.8](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.7...nextjs-mf-7.0.8) (2023-08-14)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `utils` updated to version `2.0.6`
|
|
10
|
+
* `node` updated to version `1.0.7`
|
|
11
|
+
* `utils` updated to version `2.0.6`
|
|
12
|
+
* `node` updated to version `1.0.7`
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* workaround to self ref module error in prod ([e134caa](https://github.com/module-federation/nextjs-mf/commit/e134caa9a914da6a226e73dc877a108456b1053f))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [7.0.7](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.6...nextjs-mf-7.0.7) (2023-08-11)
|
|
21
|
+
|
|
22
|
+
### Dependency Updates
|
|
23
|
+
|
|
24
|
+
* `utils` updated to version `2.0.5`
|
|
25
|
+
* `node` updated to version `1.0.6`
|
|
26
|
+
* `utils` updated to version `2.0.5`
|
|
27
|
+
* `node` updated to version `1.0.6`
|
|
28
|
+
* `node` updated to version `1.0.6`
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* improve import ordering ([#1199](https://github.com/module-federation/nextjs-mf/issues/1199)) ([7354ed2](https://github.com/module-federation/nextjs-mf/commit/7354ed2b412bd9fd8745778e5212e10e8a3bf17f))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
5
36
|
## [7.0.6](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.5...nextjs-mf-7.0.6) (2023-07-19)
|
|
6
37
|
|
|
7
38
|
### Dependency Updates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/nextjs-mf",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"fast-glob": "^3.2.11",
|
|
22
22
|
"node-fetch": "2.6.9",
|
|
23
23
|
"webpack-sources": "^3.2.3",
|
|
24
|
-
"@module-federation/node": "1.0.
|
|
25
|
-
"@module-federation/utilities": "2.0.
|
|
24
|
+
"@module-federation/node": "1.0.7",
|
|
25
|
+
"@module-federation/utilities": "2.0.6"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"next": "^12 || ^13",
|
package/src/default-delegate.js
CHANGED
|
@@ -1,13 +1,245 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
3
|
+
let pure = {};
|
|
4
|
+
try {
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
pure = process.env['REMOTES'] || {};
|
|
7
|
+
}
|
|
8
|
+
catch (e) {
|
|
9
|
+
// not in webpack bundle
|
|
10
|
+
}
|
|
11
|
+
const remoteVars = pure;
|
|
12
|
+
const extractUrlAndGlobal = (urlAndGlobal) => {
|
|
13
|
+
const index = urlAndGlobal.indexOf('@');
|
|
14
|
+
if (index <= 0 || index === urlAndGlobal.length - 1) {
|
|
15
|
+
throw new Error(`Invalid request "${urlAndGlobal}"`);
|
|
16
|
+
}
|
|
17
|
+
return [urlAndGlobal.substring(index + 1), urlAndGlobal.substring(0, index)];
|
|
18
|
+
};
|
|
19
|
+
const loadScript = (keyOrRuntimeRemoteItem) => {
|
|
20
|
+
const runtimeRemotes = getRuntimeRemotes();
|
|
21
|
+
// 1) Load remote container if needed
|
|
22
|
+
let asyncContainer;
|
|
23
|
+
const reference = typeof keyOrRuntimeRemoteItem === 'string'
|
|
24
|
+
? runtimeRemotes[keyOrRuntimeRemoteItem]
|
|
25
|
+
: keyOrRuntimeRemoteItem;
|
|
26
|
+
if (reference.asyncContainer) {
|
|
27
|
+
asyncContainer =
|
|
28
|
+
typeof reference.asyncContainer.then === 'function'
|
|
29
|
+
? reference.asyncContainer
|
|
30
|
+
: // @ts-ignore
|
|
31
|
+
reference.asyncContainer();
|
|
32
|
+
}
|
|
33
|
+
else {
|
|
34
|
+
// This casting is just to satisfy typescript,
|
|
35
|
+
// In reality remoteGlobal will always be a string;
|
|
36
|
+
const remoteGlobal = reference.global;
|
|
37
|
+
// Check if theres an override for container key if not use remote global
|
|
38
|
+
const containerKey = reference.uniqueKey
|
|
39
|
+
? reference.uniqueKey
|
|
40
|
+
: remoteGlobal;
|
|
41
|
+
const __webpack_error__ = new Error();
|
|
42
|
+
// @ts-ignore
|
|
43
|
+
if (!globalThis.__remote_scope__) {
|
|
44
|
+
// create a global scope for container, similar to how remotes are set on window in the browser
|
|
45
|
+
// @ts-ignore
|
|
46
|
+
globalThis.__remote_scope__ = {
|
|
47
|
+
// @ts-ignore
|
|
48
|
+
_config: {},
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
// @ts-ignore
|
|
52
|
+
const globalScope =
|
|
53
|
+
// @ts-ignore
|
|
54
|
+
typeof window !== 'undefined' ? window : globalThis.__remote_scope__;
|
|
55
|
+
if (typeof window === 'undefined') {
|
|
56
|
+
globalScope['_config'][containerKey] = reference.url;
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
// to match promise template system, can be removed once promise template is gone
|
|
60
|
+
if (!globalScope['remoteLoading']) {
|
|
61
|
+
globalScope['remoteLoading'] = {};
|
|
62
|
+
}
|
|
63
|
+
if (globalScope['remoteLoading'][containerKey]) {
|
|
64
|
+
return globalScope['remoteLoading'][containerKey];
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
// @ts-ignore
|
|
68
|
+
asyncContainer = new Promise(function (resolve, reject) {
|
|
69
|
+
function resolveRemoteGlobal() {
|
|
70
|
+
const asyncContainer = globalScope[remoteGlobal];
|
|
71
|
+
return resolve(asyncContainer);
|
|
72
|
+
}
|
|
73
|
+
if (typeof globalScope[remoteGlobal] !== 'undefined') {
|
|
74
|
+
return resolveRemoteGlobal();
|
|
75
|
+
}
|
|
76
|
+
__webpack_require__.l(reference.url, function (event) {
|
|
77
|
+
if (typeof globalScope[remoteGlobal] !== 'undefined') {
|
|
78
|
+
return resolveRemoteGlobal();
|
|
79
|
+
}
|
|
80
|
+
const errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
|
81
|
+
const realSrc = event && event.target && event.target.src;
|
|
82
|
+
__webpack_error__.message =
|
|
83
|
+
'Loading script failed.\n(' +
|
|
84
|
+
errorType +
|
|
85
|
+
': ' +
|
|
86
|
+
realSrc +
|
|
87
|
+
' or global var ' +
|
|
88
|
+
remoteGlobal +
|
|
89
|
+
')';
|
|
90
|
+
__webpack_error__.name = 'ScriptExternalLoadError';
|
|
91
|
+
__webpack_error__.type = errorType;
|
|
92
|
+
__webpack_error__.request = realSrc;
|
|
93
|
+
reject(__webpack_error__);
|
|
94
|
+
}, containerKey);
|
|
95
|
+
}).catch(function (err) {
|
|
96
|
+
console.error('container is offline, returning fake remote');
|
|
97
|
+
console.error(err);
|
|
98
|
+
return {
|
|
99
|
+
fake: true,
|
|
100
|
+
// @ts-ignore
|
|
101
|
+
get: (arg) => {
|
|
102
|
+
console.warn('faking', arg, 'module on, its offline');
|
|
103
|
+
return Promise.resolve(() => {
|
|
104
|
+
return {
|
|
105
|
+
__esModule: true,
|
|
106
|
+
default: () => {
|
|
107
|
+
return null;
|
|
108
|
+
},
|
|
109
|
+
};
|
|
110
|
+
});
|
|
111
|
+
},
|
|
112
|
+
//eslint-disable-next-line
|
|
113
|
+
init: () => { },
|
|
114
|
+
};
|
|
115
|
+
});
|
|
116
|
+
if (typeof window !== 'undefined') {
|
|
117
|
+
globalScope['remoteLoading'][containerKey] = asyncContainer;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
return asyncContainer;
|
|
121
|
+
};
|
|
122
|
+
const getRuntimeRemotes = () => {
|
|
123
|
+
try {
|
|
124
|
+
const runtimeRemotes = Object.entries(remoteVars).reduce(function (acc, item) {
|
|
125
|
+
const [key, value] = item;
|
|
126
|
+
// if its an object with a thenable (eagerly executing function)
|
|
127
|
+
if (typeof value === 'object' && typeof value.then === 'function') {
|
|
128
|
+
acc[key] = { asyncContainer: value };
|
|
129
|
+
}
|
|
130
|
+
// if its a function that must be called (lazily executing function)
|
|
131
|
+
else if (typeof value === 'function') {
|
|
132
|
+
// @ts-ignore
|
|
133
|
+
acc[key] = { asyncContainer: value };
|
|
134
|
+
}
|
|
135
|
+
// if its a delegate module, skip it
|
|
136
|
+
else if (typeof value === 'string' && value.startsWith('internal ')) {
|
|
137
|
+
const [request, query] = value.replace('internal ', '').split('?');
|
|
138
|
+
if (query) {
|
|
139
|
+
const remoteSyntax = new URLSearchParams(query).get('remote');
|
|
140
|
+
if (remoteSyntax) {
|
|
141
|
+
const [url, global] = extractUrlAndGlobal(remoteSyntax);
|
|
142
|
+
acc[key] = { global, url };
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
// if its just a string (global@url)
|
|
147
|
+
else if (typeof value === 'string') {
|
|
148
|
+
const [url, global] = extractUrlAndGlobal(value);
|
|
149
|
+
acc[key] = { global, url };
|
|
150
|
+
}
|
|
151
|
+
// we dont know or currently support this type
|
|
152
|
+
else {
|
|
153
|
+
//@ts-ignore
|
|
154
|
+
console.warn('remotes process', process.env.REMOTES);
|
|
155
|
+
throw new Error(`[mf] Invalid value received for runtime_remote "${key}"`);
|
|
156
|
+
}
|
|
157
|
+
return acc;
|
|
158
|
+
}, {});
|
|
159
|
+
return runtimeRemotes;
|
|
160
|
+
}
|
|
161
|
+
catch (err) {
|
|
162
|
+
console.warn('Unable to retrieve runtime remotes: ', err);
|
|
163
|
+
}
|
|
164
|
+
return {};
|
|
165
|
+
};
|
|
166
|
+
const importDelegatedModule = async (keyOrRuntimeRemoteItem) => {
|
|
167
|
+
// @ts-ignore
|
|
168
|
+
return loadScript(keyOrRuntimeRemoteItem)
|
|
169
|
+
.then((asyncContainer) => {
|
|
170
|
+
return asyncContainer;
|
|
171
|
+
})
|
|
172
|
+
.then((asyncContainer) => {
|
|
173
|
+
// most of this is only needed because of legacy promise based implementation
|
|
174
|
+
// can remove proxies once we remove promise based implementations
|
|
175
|
+
if (typeof window === 'undefined') {
|
|
176
|
+
if (!Object.hasOwnProperty.call(keyOrRuntimeRemoteItem, 'globalThis')) {
|
|
177
|
+
return asyncContainer;
|
|
178
|
+
}
|
|
179
|
+
// return asyncContainer;
|
|
180
|
+
//TODO: need to solve chunk flushing with delegated modules
|
|
181
|
+
return {
|
|
182
|
+
get: function (arg) {
|
|
183
|
+
//@ts-ignore
|
|
184
|
+
return asyncContainer.get(arg).then((f) => {
|
|
185
|
+
const m = f();
|
|
186
|
+
const result = {
|
|
187
|
+
__esModule: m.__esModule,
|
|
188
|
+
};
|
|
189
|
+
for (const prop in m) {
|
|
190
|
+
if (typeof m[prop] === 'function') {
|
|
191
|
+
Object.defineProperty(result, prop, {
|
|
192
|
+
get: function () {
|
|
193
|
+
return function () {
|
|
194
|
+
//@ts-ignore
|
|
195
|
+
if (globalThis.usedChunks)
|
|
196
|
+
//@ts-ignore
|
|
197
|
+
globalThis.usedChunks.add(
|
|
198
|
+
//@ts-ignore
|
|
199
|
+
`${keyOrRuntimeRemoteItem.global}->${arg}`);
|
|
200
|
+
//eslint-disable-next-line prefer-rest-params
|
|
201
|
+
return m[prop](...arguments);
|
|
202
|
+
};
|
|
203
|
+
},
|
|
204
|
+
enumerable: true,
|
|
205
|
+
});
|
|
206
|
+
}
|
|
207
|
+
else {
|
|
208
|
+
Object.defineProperty(result, prop, {
|
|
209
|
+
get: () => {
|
|
210
|
+
//@ts-ignore
|
|
211
|
+
if (globalThis.usedChunks)
|
|
212
|
+
//@ts-ignore
|
|
213
|
+
globalThis.usedChunks.add(
|
|
214
|
+
//@ts-ignore
|
|
215
|
+
`${keyOrRuntimeRemoteItem.global}->${arg}`);
|
|
216
|
+
return m[prop];
|
|
217
|
+
},
|
|
218
|
+
enumerable: true,
|
|
219
|
+
});
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
if (m.then) {
|
|
223
|
+
return Promise.resolve(() => result);
|
|
224
|
+
}
|
|
225
|
+
return () => result;
|
|
226
|
+
});
|
|
227
|
+
},
|
|
228
|
+
init: asyncContainer.init,
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
else {
|
|
232
|
+
return asyncContainer;
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
};
|
|
4
236
|
// eslint-disable-next-line no-async-promise-executor
|
|
5
237
|
module.exports = new Promise(async (resolve, reject) => {
|
|
6
238
|
// eslint-disable-next-line no-undef
|
|
7
239
|
const currentRequest = new URLSearchParams(__resourceQuery).get('remote');
|
|
8
240
|
// @ts-ignore
|
|
9
241
|
const [global, url] = currentRequest.split('@');
|
|
10
|
-
|
|
242
|
+
importDelegatedModule({
|
|
11
243
|
global,
|
|
12
244
|
url: url + '?' + Date.now(),
|
|
13
245
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default-delegate.js","sourceRoot":"","sources":["../../../../packages/nextjs-mf/src/default-delegate.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"default-delegate.js","sourceRoot":"","sources":["../../../../packages/nextjs-mf/src/default-delegate.ts"],"names":[],"mappings":"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"}
|
package/utils/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export { extractUrlAndGlobal,
|
|
1
|
+
export { extractUrlAndGlobal, } from '@module-federation/utilities/src/utils/pure';
|
|
2
|
+
export { injectScript, } from '@module-federation/utilities/src/utils/common';
|
|
2
3
|
export { flushChunks } from '@module-federation/node/utils';
|
|
3
4
|
export { FlushedChunks } from './flushedChunks';
|
|
4
5
|
export type { FlushedChunksProps } from './flushedChunks';
|
package/utils/index.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.revalidate = exports.FlushedChunks = exports.flushChunks = exports.injectScript = exports.extractUrlAndGlobal = void 0;
|
|
4
|
+
var pure_1 = require("@module-federation/utilities/src/utils/pure");
|
|
5
|
+
Object.defineProperty(exports, "extractUrlAndGlobal", { enumerable: true, get: function () { return pure_1.extractUrlAndGlobal; } });
|
|
4
6
|
var common_1 = require("@module-federation/utilities/src/utils/common");
|
|
5
|
-
Object.defineProperty(exports, "extractUrlAndGlobal", { enumerable: true, get: function () { return common_1.extractUrlAndGlobal; } });
|
|
6
7
|
Object.defineProperty(exports, "injectScript", { enumerable: true, get: function () { return common_1.injectScript; } });
|
|
7
8
|
// @ts-ignore
|
|
8
9
|
var utils_1 = require("@module-federation/node/utils");
|
package/utils/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/nextjs-mf/utils/index.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/nextjs-mf/utils/index.ts"],"names":[],"mappings":";;;AACA,oEAEqD;AADnD,2GAAA,mBAAmB,OAAA;AAErB,wEAEuD;AADrD,sGAAA,YAAY,OAAA;AAEd,aAAa;AACb,uDAA4D;AAAnD,oGAAA,WAAW,OAAA;AACpB,iDAAgD;AAAvC,8GAAA,aAAa,OAAA;AAGf,MAAM,UAAU,GAAG,GAAG,EAAE;IAC7B,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE;QACjC,OAAO,CAAC,KAAK,CAAC,8CAA8C,CAAC,CAAC;QAC9D,OAAO,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;KAC/B;IACD,aAAa;IACb,OAAO,MAAM,CAAC,+BAA+B,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE;QAC5D,OAAO,KAAK,CAAC,UAAU,EAAE,CAAC;IAC5B,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AATW,QAAA,UAAU,cASrB"}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { importDelegatedModule as importDelegate } from "@module-federation/utilities/src/utils/importDelegatedModule";
|
|
2
|
-
export declare const importDelegatedModule: (keyOrRuntimeRemoteItem: string | import("./utilities").RuntimeRemote) => Promise<any>;
|
|
3
|
-
export default importDelegate;
|
package/importDelegatedModule.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.importDelegatedModule = void 0;
|
|
4
|
-
const importDelegatedModule_1 = require("@module-federation/utilities/src/utils/importDelegatedModule");
|
|
5
|
-
exports.importDelegatedModule = importDelegatedModule_1.importDelegatedModule;
|
|
6
|
-
exports.default = importDelegatedModule_1.importDelegatedModule;
|
|
7
|
-
//# sourceMappingURL=importDelegatedModule.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"importDelegatedModule.js","sourceRoot":"","sources":["../../../packages/nextjs-mf/importDelegatedModule.ts"],"names":[],"mappings":";;;AAAA,wGAAqH;AACxG,QAAA,qBAAqB,GAAG,6CAAc,CAAC;AACpD,kBAAe,6CAAc,CAAC"}
|