-
Notifications
You must be signed in to change notification settings - Fork 466
/
Copy pathPlasmicRootProvider.tsx
403 lines (365 loc) · 11.1 KB
/
PlasmicRootProvider.tsx
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import { PlasmicDataSourceContextValue } from "@plasmicapp/data-sources-context";
import { PageParamsProvider } from "@plasmicapp/host";
import { AssetModule, ComponentMeta, Split } from "@plasmicapp/loader-core";
import { PlasmicQueryDataProvider } from "@plasmicapp/query";
import * as React from "react";
import { InternalPlasmicComponentLoader } from "./loader-client";
import { ComponentRenderData, PlasmicComponentLoader } from "./loader-shared";
import { MaybeWrap, useForceUpdate } from "./utils";
import {
ensureVariationCookies,
getGlobalVariantsFromSplits,
mergeGlobalVariantsSpec,
} from "./variation";
export interface PlasmicRootContextValue extends PlasmicDataSourceContextValue {
globalVariants?: GlobalVariantSpec[];
globalContextsProps?: Record<string, any>;
loader: InternalPlasmicComponentLoader;
variation?: Record<string, string>;
translator?: PlasmicTranslator;
Head?: React.ComponentType<any>;
Link?: React.ComponentType<any>;
disableLoadingBoundary?: boolean;
suspenseFallback?: React.ReactNode;
}
const PlasmicRootContext = React.createContext<
PlasmicRootContextValue | undefined
>(undefined);
export interface GlobalVariantSpec {
name: string;
projectId?: string;
value: any;
}
export type PlasmicTranslator = (
str: string,
opts?: {
components?: {
[key: string]: React.ReactElement | React.ReactFragment;
};
}
) => React.ReactNode;
/**
* PlasmicRootProvider should be used at the root of your page
* or application.
*/
export function PlasmicRootProvider(
props: {
/**
* The global PlasmicComponentLoader instance you created via
* initPlasmicLoader().
*/
loader: PlasmicComponentLoader;
/**
* Global variants to activate for Plasmic components
*/
globalVariants?: GlobalVariantSpec[];
children?: React.ReactNode;
/**
* If true, will skip rendering css
*/
skipCss?: boolean;
/**
* If true, will skip installing fonts
*/
skipFonts?: boolean;
/**
* If you have pre-fetched component data via PlasmicComponentLoader,
* you can pass them in here; PlasmicComponent will avoid fetching
* component data that have already been pre-fetched.
*/
prefetchedData?: ComponentRenderData;
/**
* If you have pre-fetched data that are needed by usePlasmicQueryData(),
* then pass in the pre-fetched cache here, mapping query key to fetched data.
*/
prefetchedQueryData?: Record<string, any>;
/**
* Specifies whether usePlasmicQueryData() should be operating in suspense mode
* (throwing promises).
*/
suspenseForQueryData?: boolean;
/**
* Override your Global Contexts Provider props. This is a map from
* globalContextComponentNameProps to object of props to use for that
* component.
*/
globalContextsProps?: Record<string, any>;
/**
* Specifies a mapping of split id to slice id that should be activated
*/
variation?: Record<string, string>;
/**
* Translator function to be used for text blocks
*/
translator?: PlasmicTranslator;
/**
* Head component to use in PlasmicHead component (e.g. Head from next/head
* or Helmet from react-helmet).
*/
Head?: React.ComponentType<any>;
/**
* Link component to use. Can be any component that takes in props passed
* to an <a/> tag.
*/
Link?: React.ComponentType<any>;
/**
* Page route without params substitution (e.g. /products/[slug]).
*/
pageRoute?: string;
/**
* Page path parameters (e.g. {slug: "foo"} if page path is
* /products/[slug] and URI is /products/foo).
*/
pageParams?: Record<string, string | string[] | undefined>;
/**
* Page query parameters (e.g. {q: "foo"} if page path is
* /some/path?q=foo).
*/
pageQuery?: Record<string, string | string[] | undefined>;
/**
* Whether the internal Plasmic React.Suspense boundaries should be removed
*/
disableLoadingBoundary?: boolean;
/**
* Whether the root React.Suspense boundary should be removed
*/
disableRootLoadingBoundary?: boolean;
/**
* Fallback value for React.Suspense boundary
*/
suspenseFallback?: React.ReactNode;
} & PlasmicDataSourceContextValue
) {
const {
globalVariants,
prefetchedData,
children,
skipCss,
skipFonts,
prefetchedQueryData,
suspenseForQueryData,
globalContextsProps,
variation,
translator,
Head,
Link,
pageRoute,
pageParams,
pageQuery,
suspenseFallback,
disableLoadingBoundary,
disableRootLoadingBoundary,
} = props;
const loader = (props.loader as any)
.__internal as InternalPlasmicComponentLoader;
if (prefetchedData) {
loader.registerPrefetchedBundle(prefetchedData.bundle);
}
const [splits, setSplits] = React.useState<Split[]>(loader.getActiveSplits());
const forceUpdate = useForceUpdate();
const watcher = React.useMemo(
() => ({
onDataFetched: () => {
setSplits(loader.getActiveSplits());
forceUpdate();
},
}),
[loader, forceUpdate]
);
React.useEffect(() => {
loader.subscribePlasmicRoot(watcher);
return () => loader.unsubscribePlasmicRoot(watcher);
}, [watcher, loader]);
const currentContextValue = React.useContext(PlasmicRootContext);
const { user, userAuthToken, isUserLoading, authRedirectUri } = props;
const value = React.useMemo<PlasmicRootContextValue>(() => {
// Fallback to the value in `currentContextValue` if none is provided
const withCurrentContextValueFallback = <
K extends keyof PlasmicRootContextValue
>(
v: PlasmicRootContextValue[K],
key: K
): PlasmicRootContextValue[K] => {
return (v !== undefined ? v : currentContextValue?.[key])!;
};
return {
globalVariants: [
...mergeGlobalVariantsSpec(
globalVariants ?? [],
getGlobalVariantsFromSplits(splits, variation ?? {})
),
...(currentContextValue?.globalVariants ?? []),
],
globalContextsProps: {
...(currentContextValue?.globalContextsProps ?? {}),
...(globalContextsProps ?? {}),
},
loader: withCurrentContextValueFallback(loader, "loader"),
variation: {
...(currentContextValue?.variation ?? {}),
...(variation ?? {}),
},
translator: withCurrentContextValueFallback(translator, "translator"),
Head: withCurrentContextValueFallback(Head, "Head"),
Link: withCurrentContextValueFallback(Link, "Link"),
user: withCurrentContextValueFallback(user, "user"),
userAuthToken: withCurrentContextValueFallback(
userAuthToken,
"userAuthToken"
),
isUserLoading: withCurrentContextValueFallback(
isUserLoading,
"isUserLoading"
),
authRedirectUri: withCurrentContextValueFallback(
authRedirectUri,
"authRedirectUri"
),
suspenseFallback: withCurrentContextValueFallback(
suspenseFallback,
"suspenseFallback"
),
disableLoadingBoundary: withCurrentContextValueFallback(
disableLoadingBoundary,
"disableLoadingBoundary"
),
};
}, [
globalVariants,
variation,
globalContextsProps,
loader,
splits,
translator,
Head,
Link,
user,
userAuthToken,
isUserLoading,
authRedirectUri,
suspenseFallback,
disableLoadingBoundary,
currentContextValue,
]);
React.useEffect(() => {
ensureVariationCookies(variation);
loader.trackRender({
renderCtx: {
// We track the provider as a single entity
rootComponentId: "provider",
teamIds: loader.getTeamIds(),
projectIds: loader.getProjectIds(),
},
variation: value.variation,
});
}, [loader, value]);
const reactMajorVersion = +React.version.split(".")[0];
const shouldDisableRootLoadingBoundary =
disableRootLoadingBoundary ??
loader.getBundle().disableRootLoadingBoundaryByDefault;
return (
<PlasmicQueryDataProvider
prefetchedCache={prefetchedQueryData}
suspense={suspenseForQueryData}
>
<PlasmicRootContext.Provider value={value}>
{!skipCss && (
<PlasmicCss
loader={loader}
prefetchedData={prefetchedData}
skipFonts={skipFonts}
/>
)}
<PageParamsProvider
route={pageRoute}
params={pageParams}
query={pageQuery}
>
<MaybeWrap
cond={!shouldDisableRootLoadingBoundary && reactMajorVersion >= 18}
wrapper={(contents) => (
<React.Suspense fallback={suspenseFallback ?? "Loading..."}>
{contents}
</React.Suspense>
)}
>
{children}
</MaybeWrap>
</PageParamsProvider>
</PlasmicRootContext.Provider>
</PlasmicQueryDataProvider>
);
}
/**
* Inject all css modules as <style/> tags. We can't use the usual styleInjector postcss
* uses because that doesn't work on the server side for SSR.
*/
const PlasmicCss = React.memo(function PlasmicCss(props: {
loader: InternalPlasmicComponentLoader;
prefetchedData?: ComponentRenderData;
skipFonts?: boolean;
}) {
const { loader, prefetchedData, skipFonts } = props;
const [useScopedCss, setUseScopedCss] = React.useState(!!prefetchedData);
const builtCss = buildCss(loader, {
scopedCompMetas:
useScopedCss && prefetchedData
? prefetchedData.bundle.components
: undefined,
skipFonts,
});
const forceUpdate = useForceUpdate();
const watcher = React.useMemo(
() => ({
onDataFetched: () => {
// If new data has been fetched, then use all the fetched css
setUseScopedCss(false);
forceUpdate();
},
}),
[loader, forceUpdate]
);
React.useEffect(() => {
loader.subscribePlasmicRoot(watcher);
return () => loader.unsubscribePlasmicRoot(watcher);
}, [watcher, loader]);
return <style dangerouslySetInnerHTML={{ __html: builtCss }} />;
});
function buildCss(
loader: InternalPlasmicComponentLoader,
opts: {
scopedCompMetas?: ComponentMeta[];
skipFonts?: boolean;
}
) {
const { scopedCompMetas, skipFonts } = opts;
const cssFiles =
scopedCompMetas &&
new Set<string>([
"entrypoint.css",
...scopedCompMetas.map((c) => c.cssFile),
]);
const cssModules = loader
.getLookup()
.getCss()
.filter((f) => !cssFiles || cssFiles.has(f.fileName));
const getPri = (fileName: string) => (fileName === "entrypoint.css" ? 0 : 1);
const compareModules = (a: AssetModule, b: AssetModule) =>
getPri(a.fileName) !== getPri(b.fileName)
? getPri(a.fileName) - getPri(b.fileName)
: a.fileName.localeCompare(b.fileName);
cssModules.sort(compareModules);
const remoteFonts = loader.getLookup().getRemoteFonts();
// Make sure the @import statements come at the front of css
return `
${
skipFonts
? ""
: remoteFonts.map((f) => `@import url('${f.url}');`).join("\n")
}
${cssModules.map((mod) => mod.source).join("\n")}
`;
}
export function usePlasmicRootContext() {
return React.useContext(PlasmicRootContext);
}