-
-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathembedded.ts
366 lines (309 loc) · 10.6 KB
/
embedded.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
import type * as IndexModule from './index';
function getRuntime(): typeof IndexModule {
// @ts-ignore
const runtime = __webpack_require__.federation.runtime as typeof IndexModule;
if (!runtime) {
throw new Error(
'Federation runtime accessed before instantiation or installation',
);
}
return runtime;
}
export const registerGlobalPlugins: typeof IndexModule.registerGlobalPlugins = (
...args
) => {
return getRuntime().registerGlobalPlugins(...args);
};
export const getRemoteEntry: typeof IndexModule.getRemoteEntry = (...args) => {
return getRuntime().getRemoteEntry(...args);
};
export const getRemoteInfo: typeof IndexModule.getRemoteInfo = (...args) => {
return getRuntime().getRemoteInfo(...args);
};
export const loadScript: typeof IndexModule.loadScript = (...args) => {
return getRuntime().loadScript(...args);
};
export const loadScriptNode: typeof IndexModule.loadScriptNode = (...args) => {
return getRuntime().loadScriptNode(...args);
};
export const init: typeof IndexModule.init = (...args) => {
return getRuntime().init(...args);
};
export const loadRemote: typeof IndexModule.loadRemote = (...args) => {
return getRuntime().loadRemote(...args);
};
export const loadShare: typeof IndexModule.loadShare = (...args) => {
return getRuntime().loadShare(...args);
};
export const loadShareSync: typeof IndexModule.loadShareSync = (...args) => {
return getRuntime().loadShareSync(...args);
};
export const preloadRemote: typeof IndexModule.preloadRemote = (...args) => {
return getRuntime().preloadRemote(...args);
};
export const registerRemotes: typeof IndexModule.registerRemotes = (
...args
) => {
return getRuntime().registerRemotes(...args);
};
export const registerPlugins: typeof IndexModule.registerPlugins = (
...args
) => {
return getRuntime().registerPlugins(...args);
};
export const getInstance: typeof IndexModule.getInstance = (...args) => {
return getRuntime().getInstance(...args);
};
export class FederationHost implements IndexModule.FederationHost {
private _instance: IndexModule.FederationHost | null = null;
private _args: ConstructorParameters<typeof IndexModule.FederationHost>;
constructor(
...args: ConstructorParameters<typeof IndexModule.FederationHost>
) {
this._args = args;
const RealFederationHost = getRuntime().FederationHost;
this._instance = new RealFederationHost(...this._args);
}
private _getInstance(): IndexModule.FederationHost {
if (!this._instance) {
const RealFederationHost = getRuntime().FederationHost;
this._instance = new RealFederationHost(...this._args);
}
return this._instance;
}
get options() {
return this._getInstance().options;
}
set options(value) {
this._getInstance().options = value;
}
get hooks() {
return this._getInstance().hooks;
}
get version() {
return this._getInstance().version;
}
get name() {
return this._getInstance().name;
}
get moduleCache() {
return this._getInstance().moduleCache;
}
get snapshotHandler() {
return this._getInstance().snapshotHandler;
}
get sharedHandler() {
return this._getInstance().sharedHandler;
}
get remoteHandler() {
return this._getInstance().remoteHandler;
}
get shareScopeMap() {
return this._getInstance().shareScopeMap;
}
get loaderHook() {
return this._getInstance().loaderHook;
}
get bridgeHook() {
return this._getInstance().bridgeHook;
}
initOptions(...args: Parameters<IndexModule.FederationHost['initOptions']>) {
return this._getInstance().initOptions(...args);
}
loadShare<T>(...args: Parameters<IndexModule.FederationHost['loadShare']>) {
return this._getInstance().loadShare<T>(...args);
}
loadShareSync<T>(
...args: Parameters<IndexModule.FederationHost['loadShareSync']>
) {
return this._getInstance().loadShareSync<T>(...args);
}
initializeSharing(
...args: Parameters<IndexModule.FederationHost['initializeSharing']>
) {
return this._getInstance().initializeSharing(...args);
}
initRawContainer(
...args: Parameters<IndexModule.FederationHost['initRawContainer']>
) {
return this._getInstance().initRawContainer(...args);
}
loadRemote<T>(...args: Parameters<IndexModule.FederationHost['loadRemote']>) {
return this._getInstance().loadRemote<T>(...args);
}
preloadRemote(
...args: Parameters<IndexModule.FederationHost['preloadRemote']>
) {
return this._getInstance().preloadRemote(...args);
}
initShareScopeMap(
...args: Parameters<IndexModule.FederationHost['initShareScopeMap']>
) {
return this._getInstance().initShareScopeMap(...args);
}
registerPlugins(
...args: Parameters<IndexModule.FederationHost['registerPlugins']>
) {
return this._getInstance().registerPlugins(...args);
}
registerRemotes(
...args: Parameters<IndexModule.FederationHost['registerRemotes']>
) {
return this._getInstance().registerRemotes(...args);
}
formatOptions(
...args: Parameters<IndexModule.FederationHost['formatOptions']>
) {
//@ts-ignore
return this._getInstance().formatOptions(...args);
}
}
export interface ModuleInterface {
remoteInfo: IndexModule.Module['remoteInfo'];
inited: IndexModule.Module['inited'];
lib: IndexModule.Module['lib'];
host: IndexModule.Module['host'];
getEntry(
...args: Parameters<IndexModule.Module['getEntry']>
): ReturnType<IndexModule.Module['getEntry']>;
get(
...args: Parameters<IndexModule.Module['get']>
): ReturnType<IndexModule.Module['get']>;
}
export class Module implements ModuleInterface {
private _instance: IndexModule.Module | null = null;
private _args: ConstructorParameters<typeof IndexModule.Module>;
constructor(...args: ConstructorParameters<typeof IndexModule.Module>) {
this._args = args;
}
private _getInstance(): IndexModule.Module {
if (!this._instance) {
const RealModule = getRuntime().Module;
this._instance = new RealModule(...this._args);
}
return this._instance;
}
get remoteInfo() {
return this._getInstance().remoteInfo;
}
set remoteInfo(value) {
this._getInstance().remoteInfo = value;
}
get inited() {
return this._getInstance().inited;
}
set inited(value) {
this._getInstance().inited = value;
}
get lib() {
return this._getInstance().lib;
}
set lib(value) {
this._getInstance().lib = value;
}
get host() {
return this._getInstance().host;
}
set host(value) {
this._getInstance().host = value;
}
async getEntry(...args: Parameters<IndexModule.Module['getEntry']>) {
return this._getInstance().getEntry(...args);
}
async get(...args: Parameters<IndexModule.Module['get']>) {
return this._getInstance().get(...args);
}
private wraperFactory(
...args: Parameters<IndexModule.Module['wraperFactory']>
) {
//@ts-ignore
return this._getInstance().wraperFactory(...args);
}
}
//maybe use proxy?
//export class Module implements ModuleInterface {
// private _instance: IndexModule.Module | null = null;
// private _args: ConstructorParameters<typeof IndexModule.Module>;
// constructor(...args: ConstructorParameters<typeof IndexModule.Module>) {
// this._args = args;
// return new Proxy(this, {
// get(target, prop) {
// if (prop in target) {
// return target[prop as keyof Module];
// }
// const instance = target._getInstance();
// const value = instance[prop as keyof IndexModule.Module];
// return typeof value === 'function' ? value.bind(instance) : value;
// },
// set(target, prop, value) {
// const instance = target._getInstance();
// instance[prop as keyof IndexModule.Module] = value;
// return true;
// },
// });
// }
// private _getInstance(): IndexModule.Module {
// if (!this._instance) {
// const RealModule = getRuntime().Module;
// this._instance = new RealModule(...this._args);
// }
// return this._instance;
// }
// // Keep only the methods that have custom logic
// private wraperFactory(...args: Parameters<IndexModule.Module['wraperFactory']>) {
// return this._getInstance().wraperFactory(...args);
// }
// }
//export class FederationHost implements IndexModule.FederationHost {
// private _instance: IndexModule.FederationHost | null = null;
// private _args: ConstructorParameters<typeof IndexModule.FederationHost>;
// constructor(...args: ConstructorParameters<typeof IndexModule.FederationHost>) {
// this._args = args;
// return new Proxy(this, {
// get(target, prop) {
// if (prop in target) {
// return target[prop as keyof FederationHost];
// }
// const instance = target._getInstance();
// const value = instance[prop as keyof IndexModule.FederationHost];
// return typeof value === 'function' ? value.bind(instance) : value;
// },
// set(target, prop, value) {
// const instance = target._getInstance();
// instance[prop as keyof IndexModule.FederationHost] = value;
// return true;
// },
// });
// }
// private _getInstance(): IndexModule.FederationHost {
// if (!this._instance) {
// const RealFederationHost = getRuntime().FederationHost;
// this._instance = new RealFederationHost(...this._args);
// }
// return this._instance;
// }
// // Keep only the methods that have custom logic
// formatOptions(...args: Parameters<IndexModule.FederationHost['formatOptions']>) {
// return this._getInstance().formatOptions(...args);
// }
// }
//function createRuntimeFunction<T extends keyof typeof IndexModule>(
// name: T
// ): typeof IndexModule[T] {
// return (...args: any[]) => {
// return getRuntime()[name](...args);
// };
// }
// export const registerGlobalPlugins = createRuntimeFunction('registerGlobalPlugins');
// export const getRemoteEntry = createRuntimeFunction('getRemoteEntry');
// export const getRemoteInfo = createRuntimeFunction('getRemoteInfo');
// export const loadScript = createRuntimeFunction('loadScript');
// export const loadScriptNode = createRuntimeFunction('loadScriptNode');
// export const init = createRuntimeFunction('init');
// export const loadRemote = createRuntimeFunction('loadRemote');
// export const loadShare = createRuntimeFunction('loadShare');
// export const loadShareSync = createRuntimeFunction('loadShareSync');
// export const preloadRemote = createRuntimeFunction('preloadRemote');
// export const registerRemotes = createRuntimeFunction('registerRemotes');
// export const registerPlugins = createRuntimeFunction('registerPlugins');
// export const getInstance = createRuntimeFunction('getInstance');