-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsingle-spa-react.js
311 lines (267 loc) · 8.04 KB
/
single-spa-react.js
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
/* We don't import parcel.component.js from this file intentionally. See comment
* in that file for why
*/
// React context that gives any react component the single-spa props
export let SingleSpaContext = null;
const defaultOpts = {
// required opts
React: null,
ReactDOM: null,
rootComponent: null,
loadRootComponent: null,
suppressComponentDidCatchWarning: false,
domElements: {},
// optional opts
errorBoundary: null,
domElementGetter: null,
parcelCanUpdate: true, // by default, allow parcels created with single-spa-react to be updated
};
export default function singleSpaReact(userOpts) {
if (typeof userOpts !== "object") {
throw new Error(`single-spa-react requires a configuration object`);
}
const opts = {
...defaultOpts,
...userOpts,
};
if (!opts.React) {
throw new Error(`single-spa-react must be passed opts.React`);
}
if (!opts.ReactDOM) {
throw new Error(`single-spa-react must be passed opts.ReactDOM`);
}
if (!opts.rootComponent && !opts.loadRootComponent) {
throw new Error(
`single-spa-react must be passed opts.rootComponent or opts.loadRootComponent`
);
}
if (opts.errorBoundary && typeof opts.errorBoundary !== "function") {
throw Error(
`The errorBoundary opt for single-spa-react must either be omitted or be a function that returns React elements`
);
}
if (!SingleSpaContext && opts.React.createContext) {
SingleSpaContext = opts.React.createContext();
}
const lifecycles = {
bootstrap: bootstrap.bind(null, opts),
mount: mount.bind(null, opts),
unmount: unmount.bind(null, opts),
};
if (opts.parcelCanUpdate) {
lifecycles.update = update.bind(null, opts);
}
return lifecycles;
}
function bootstrap(opts, props) {
if (opts.rootComponent) {
// This is a class or stateless function component
return Promise.resolve();
} else {
// They passed a promise that resolves with the react component. Wait for it to resolve before mounting
return opts.loadRootComponent(props).then((resolvedComponent) => {
opts.rootComponent = resolvedComponent;
});
}
}
function mount(opts, props) {
return new Promise((resolve, reject) => {
if (
!opts.suppressComponentDidCatchWarning &&
atLeastReact16(opts.React) &&
!opts.errorBoundary
) {
if (!opts.rootComponent.prototype) {
console.warn(
`single-spa-react: ${
props.name || props.appName || props.childAppName
}'s rootComponent does not implement an error boundary. If using a functional component, consider providing an opts.errorBoundary to singleSpaReact(opts).`
);
} else if (!opts.rootComponent.prototype.componentDidCatch) {
console.warn(
`single-spa-react: ${
props.name || props.appName || props.childAppName
}'s rootComponent should implement componentDidCatch to avoid accidentally unmounting the entire single-spa application.`
);
}
}
const domElementGetter = chooseDomElementGetter(opts, props);
if (typeof domElementGetter !== "function") {
throw new Error(
`single-spa-react: the domElementGetter for react application '${
props.appName || props.name
}' is not a function`
);
}
const whenFinished = function () {
resolve(this);
};
const elementToRender = getElementToRender(opts, props);
const domElement = getRootDomEl(domElementGetter, props);
const renderedComponent = reactDomRender({
elementToRender,
domElement,
whenFinished,
opts,
});
opts.domElements[props.name] = domElement;
});
}
function unmount(opts, props) {
return Promise.resolve().then(() => {
opts.ReactDOM.unmountComponentAtNode(opts.domElements[props.name]);
delete opts.domElements[props.name];
});
}
function update(opts, props) {
return new Promise((resolve, reject) => {
const whenFinished = function () {
resolve(this);
};
const elementToRender = getElementToRender(opts, props);
const renderedComponent = reactDomRender({
elementToRender,
domElement: opts.domElements[props.name],
whenFinished,
opts,
});
});
}
function getRootDomEl(domElementGetter, props) {
const el = domElementGetter(props);
if (!el) {
throw new Error(
`single-spa-react: domElementGetter function for application '${
props.appName || props.name
}' did not return a valid dom element. Please pass a valid domElement or domElementGetter via opts or props`
);
}
return el;
}
function atLeastReact16(React) {
if (
React &&
typeof React.version === "string" &&
React.version.indexOf(".") >= 0
) {
const majorVersionString = React.version.slice(
0,
React.version.indexOf(".")
);
try {
return Number(majorVersionString) >= 16;
} catch (err) {
return false;
}
} else {
return false;
}
}
function chooseDomElementGetter(opts, props) {
if (props.domElement) {
return () => props.domElement;
} else if (props.domElementGetter) {
return props.domElementGetter;
} else if (opts.domElementGetter) {
return opts.domElementGetter;
} else {
return defaultDomElementGetter(props);
}
}
function defaultDomElementGetter(props) {
const appName = props.appName || props.name;
if (!appName) {
throw Error(
`single-spa-react was not given an application name as a prop, so it can't make a unique dom element container for the react application`
);
}
const htmlId = `single-spa-application:${appName}`;
return function defaultDomEl() {
let domElement = document.getElementById(htmlId);
if (!domElement) {
domElement = document.createElement("div");
domElement.id = htmlId;
document.body.appendChild(domElement);
}
return domElement;
};
}
function reactDomRender({ opts, elementToRender, domElement, whenFinished }) {
if (opts.renderType === "createRoot") {
return opts.ReactDOM.createRoot(domElement).render(
elementToRender,
whenFinished
);
}
if (opts.renderType === "createBlockingRoot") {
return opts.ReactDOM.createBlockingRoot(domElement).render(
elementToRender,
whenFinished
);
}
if (opts.renderType === "hydrate") {
return opts.ReactDOM.hydrate(elementToRender, domElement, whenFinished);
}
// default to this if 'renderType' is null or doesn't match the other options
return opts.ReactDOM.render(elementToRender, domElement, whenFinished);
}
function getElementToRender(opts, props) {
const rootComponentElement = opts.React.createElement(
opts.rootComponent,
props
);
let elementToRender = SingleSpaContext
? opts.React.createElement(
SingleSpaContext.Provider,
{ value: props },
rootComponentElement
)
: rootComponentElement;
if (opts.errorBoundary) {
opts.errorBoundaryClass =
opts.errorBoundaryClass || createErrorBoundary(opts);
elementToRender = opts.React.createElement(
opts.errorBoundaryClass,
props,
elementToRender
);
}
return elementToRender;
}
function createErrorBoundary(opts) {
// Avoiding babel output for class syntax and super()
// to avoid bloat
function SingleSpaReactErrorBoundary(props) {
// super
opts.React.Component.apply(this, arguments);
this.state = {
caughtError: null,
caughtErrorInfo: null,
};
SingleSpaReactErrorBoundary.displayName = `SingleSpaReactErrorBoundary(${props.name})`;
}
SingleSpaReactErrorBoundary.prototype = Object.create(
opts.React.Component.prototype
);
SingleSpaReactErrorBoundary.prototype.render = function () {
if (this.state.caughtError) {
return opts.errorBoundary(
this.state.caughtError,
this.state.caughtErrorInfo,
this.props
);
} else {
return this.props.children;
}
};
SingleSpaReactErrorBoundary.prototype.componentDidCatch = function (
err,
info
) {
this.setState({
caughtError: err,
caughtErrorInfo: info,
});
};
return SingleSpaReactErrorBoundary;
}