-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
index.ts
566 lines (496 loc) · 15.4 KB
/
index.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
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
import {
LOCAL_THEME_DIR,
PICKED_PKG_FIELDS,
PREFERS_COLOR_ATTR,
THEME_PREFIX,
VERSION_2_LEVEL_NAV,
} from '@/constants';
import type { IApi } from '@/types';
import { parseModuleSync } from '@umijs/bundler-utils';
import { execSync } from 'child_process';
import fs from 'fs';
import hostedGit from 'hosted-git-info';
import path from 'path';
import { deepmerge, lodash, resolve, semver, winPath } from 'umi/plugin-utils';
import { safeExcludeInMFSU } from '../derivative';
import loadTheme, { IThemeLoadResult } from './loader';
const DEFAULT_THEME_PATH = path.join(__dirname, '../../../theme-default');
/**
* get pkg theme name
*/
function getPkgThemeName(api: IApi) {
// respect env first
if (process.env.DUMI_THEME) {
const envThemePkgPath = require.resolve(
path.join(process.env.DUMI_THEME, 'package.json'),
{ paths: [api.cwd] },
);
return require(envThemePkgPath).name;
}
const validDeps = Object.assign(
{},
api.pkg.dependencies,
api.pkg.devDependencies,
);
const pkgThemeName = Object.keys(validDeps).find((pkg) =>
pkg.split('/').pop()!.startsWith(THEME_PREFIX),
);
return pkgThemeName;
}
/**
* get theme package path from package.json
*/
function getPkgThemePath(api: IApi) {
const pkgThemeName = getPkgThemeName(api);
// respect env first
if (process.env.DUMI_THEME) {
return path.resolve(api.cwd, process.env.DUMI_THEME);
}
return (
pkgThemeName &&
path.dirname(
resolve.sync(`${pkgThemeName}/package.json`, {
basedir: api.cwd,
preserveSymlinks: true,
}),
)
);
}
/**
* get exports for module
*/
function getModuleExports(modulePath: string) {
return parseModuleSync({
path: modulePath,
content: fs.readFileSync(modulePath, 'utf-8'),
})[1];
}
/**
* check if package dumi version is minor 2
*/
function checkMinor2ByPkg(pkg: IApi['pkg']) {
// for dumi local example project
if (pkg.name?.startsWith('@examples/')) return true;
const ver =
pkg.peerDependencies?.dumi || pkg.devDependencies?.dumi || '^2.0.0';
return semver.subset(ver, VERSION_2_LEVEL_NAV);
}
export default (api: IApi) => {
// load default theme
const defaultThemeData = loadTheme(DEFAULT_THEME_PATH);
// try to load theme package
const pkgThemePath = getPkgThemePath(api);
const pkgThemeData = deepmerge(
defaultThemeData,
pkgThemePath ? loadTheme(path.join(pkgThemePath, 'dist')) : {},
);
// try to read local theme
const localThemePath = path.join(api.cwd, LOCAL_THEME_DIR);
const localThemeData = fs.existsSync(localThemePath)
? loadTheme(localThemePath)
: undefined;
const themeMapKeys: ('layouts' | 'builtins' | 'slots')[] = [
'layouts',
'builtins',
'slots',
];
let originalThemeData: IThemeLoadResult;
api.describe({ key: 'dumi:theme' });
// register theme's plugin if exists
[pkgThemeData.plugin, localThemeData?.plugin].forEach((plugin) => {
if (plugin) {
api.registerPlugins([plugin]);
}
});
// skip mfsu for client api, to avoid circular resolve in mfsu mode
safeExcludeInMFSU(
api,
[
'dumi/theme-default',
// for svgr
'@ant-design/icons-svg',
getPkgThemeName(api),
]
.filter(Boolean)
.map((pkg) => new RegExp(pkg!)),
);
api.register({
key: 'modifyAppData',
// prepare themeData before umi appData, for generate layout routes
before: 'appData',
async fn(memo: any) {
// allow to modify theme data via plugin API
originalThemeData = await api.applyPlugins({
key: 'modifyTheme',
initialValue: pkgThemeData,
});
// save to service rather than appData
// because layout routes are generated before appData is created
api.service.themeData = originalThemeData;
// merge local theme data
if (localThemeData) {
api.service.themeData = deepmerge(originalThemeData, localThemeData, {
clone: true,
});
}
// append internal components, not allow override
Object.assign(api.service.themeData.builtins, {
DumiDemo: {
specifier: '{ DumiDemo }',
source: 'dumi',
},
DumiDemoGrid: {
specifier: '{ DumiDemoGrid }',
source: 'dumi',
},
Link: {
specifier: '{ Link }',
source: 'dumi',
},
});
return memo;
},
});
api.modifyAppData((memo) => {
// auto enable 2-level nav by declared dumi version, for existing projects compatibility
// ref: https://github.com/umijs/dumi/discussions/1618
memo._2LevelNavAvailable = checkMinor2ByPkg(api.pkg);
// always respect theme package declaration, for theme compatibility
if (pkgThemePath && !memo._2LevelNavAvailable) {
memo._2LevelNavAvailable = checkMinor2ByPkg(
require(path.join(pkgThemePath, 'package.json')),
);
}
return memo;
});
api.modifyConfig((memo) => {
// alias each component from local theme, as a part of final theme
if (localThemeData) {
themeMapKeys.forEach((key) => {
Object.values(localThemeData[key] || {}).forEach((item) => {
memo.alias[`dumi/theme/${key}/${item.specifier}`] = item.source;
});
});
}
// alias final theme to fall back to original theme
memo.alias['dumi/theme'] = 'dumi/theme-original';
// alias original theme to temp dir
memo.alias['dumi/theme-original'] = path.join(
api.paths.absTmpPath,
'dumi/theme',
);
// alias default theme
memo.alias['dumi/theme-default'] = DEFAULT_THEME_PATH;
// FIXME: for replace deps by MFSU in local
memo.extraBabelIncludes ??= [];
memo.extraBabelIncludes.push(
path.resolve(__dirname, '../../client/theme-api'),
);
// set automatic edit link
// why not use default config?
// because true value should be transformed to automatic edit link
const repoUrl = api.pkg.repository?.url || api.pkg.repository;
if (memo.themeConfig?.editLink !== false && typeof repoUrl === 'string') {
const hostedGitIns = hostedGit.fromUrl(repoUrl);
let branch = '';
try {
branch = execSync('git branch --show-current', {
stdio: 'pipe',
})
.toString()
.trim();
} catch {
branch = 'master';
}
if (hostedGitIns) {
memo.themeConfig ??= {};
// @ts-ignore
memo.themeConfig.editLink = `${hostedGitIns.edit(
`${api.pkg.repository.directory || ''}/{filename}`,
{ committish: branch },
)}`;
}
}
return memo;
});
// set dark mode selector as less variable
// why not use `theme` or `modifyVars`?
// because `theme` will be override by `modifyVars` in umi
// and `modifyVar` will override `theme` from user
api.chainWebpack((memo) => {
const lessRule = memo.module.rule('less');
['css', 'css-modules'].forEach((rule) => {
Object.values(lessRule.oneOf(rule).uses.entries()).forEach((loader) => {
if (loader.get('loader').includes('less-loader')) {
loader.tap((opts) => {
opts.lessOptions.modifyVars ??= {};
opts.lessOptions.modifyVars[
'dark-selector'
] = `~'[${PREFERS_COLOR_ATTR}="dark"]'`;
return opts;
});
}
});
});
return memo;
});
api.onGenerateFiles({
// execute before umi tmpFiles plugin
stage: -Infinity,
fn() {
const { globalLoading } = api.appData;
const enableNProgress = !!api.config.themeConfig.nprogress;
// replace original loading component data
api.appData.globalLoading = '@@/dumi/theme/loading';
// generate dumi internal loading component for control loading status
// also wrap user loading component
api.writeTmpFile({
noPluginDir: true,
path: 'dumi/theme/loading.tsx',
content: `${
enableNProgress
? `import nprogress from '${winPath(
path.dirname(require.resolve('nprogress/package')),
)}';
import './nprogress.css';`
: ''
}${
globalLoading
? `
import UserLoading from '${globalLoading}';`
: ''
}
import React, { useLayoutEffect, type FC } from 'react';
import { useSiteData } from 'dumi';
const DumiLoading: FC = () => {
const { setLoading } = useSiteData();
useLayoutEffect(() => {
setLoading(true);${
enableNProgress
? `
nprogress.start();`
: ''
}
return () => {
setLoading(false);${
enableNProgress
? `
nprogress.done();`
: ''
}
}
}, []);
return ${globalLoading ? '<UserLoading />' : 'null'};
}
export default DumiLoading;
`,
});
},
});
api.onGenerateFiles(() => {
// write shadow theme files to tmp dir
themeMapKeys.forEach((key) => {
Object.values(originalThemeData[key] || {}).forEach((item) => {
// skip write internal components
if (item.source === 'dumi') return;
let contents = [];
// parse exports for theme module
const exports = getModuleExports(item.source);
// export default
if (exports.includes('default')) {
contents.push(`export { default } from '${item.source}';`);
}
// export members
if (exports.some((exp) => exp !== 'default')) {
contents.push(`export * from '${item.source}';`);
}
api.writeTmpFile({
noPluginDir: true,
path: `dumi/theme/${key}/${item.specifier}.ts`,
content: contents.join('\n'),
});
});
});
const entryFile =
api.config.resolve.entryFile &&
[path.resolve(api.cwd, api.config.resolve.entryFile)].find(fs.existsSync);
const entryExports = entryFile ? getModuleExports(entryFile) : [];
const hasDefaultExport = entryExports.includes('default');
const hasNamedExport = entryExports.some((exp) => exp !== 'default');
// generate context layout
api.writeTmpFile({
noPluginDir: true,
path: 'dumi/theme/ContextWrapper.tsx',
content: `import React, { useState, useEffect, useRef } from 'react';
import { useOutlet, history } from 'dumi';
import { SiteContext } from '${winPath(
require.resolve('../../client/theme-api/context'),
)}';
import { demos, components } from '../meta';
import { locales } from '../locales/config';${
hasDefaultExport
? `\nimport entryDefaultExport from '${winPath(entryFile!)}';`
: ''
}${
hasNamedExport
? `\nimport * as entryMemberExports from '${winPath(entryFile!)}';`
: ''
}
const entryExports = {
${hasDefaultExport ? 'default: entryDefaultExport,' : ''}
${hasNamedExport ? '...entryMemberExports,' : ''}
};
export default function DumiContextWrapper() {
const outlet = useOutlet();
const [loading, setLoading] = useState(false);
const prev = useRef(history.location.pathname);
useEffect(() => {
return history.listen((next) => {
if (next.location.pathname !== prev.current) {
prev.current = next.location.pathname;
// scroll to top when route changed
document.documentElement.scrollTo(0, 0);
}
});
}, []);
return (
<SiteContext.Provider value={{
pkg: ${JSON.stringify(
lodash.pick(api.pkg, ...Object.keys(PICKED_PKG_FIELDS)),
)},
historyType: "${api.config.history?.type || 'browser'}",
entryExports,
demos,
components,
locales,
loading,
setLoading,
hostname: ${JSON.stringify(api.config.sitemap?.hostname)},
themeConfig: ${JSON.stringify(
Object.assign(
lodash.pick(api.config, 'logo', 'description', 'title'),
api.config.themeConfig,
),
)},
_2_level_nav_available: ${api.appData._2LevelNavAvailable},
}}>
{outlet}
</SiteContext.Provider>
);
}`,
});
const primaryColor =
typeof api.config?.theme === 'object'
? api.config?.theme?.['@c-primary']
: '#1677ff';
api.writeTmpFile({
noPluginDir: true,
path: 'dumi/theme/nprogress.css',
content: `
/* https://unpkg.com/browse/[email protected]/nprogress.css */
#nprogress {
pointer-events: none;
}
#nprogress .bar {
background: var;
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px ${primaryColor}, 0 0 5px ${primaryColor};
opacity: 1.0;
transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
display: block;
position: fixed;
z-index: 1031;
top: 15px;
right: 15px;
}
#nprogress .spinner-icon {
width: 18px;
height: 18px;
box-sizing: border-box;
border: solid 2px transparent;
border-top-color: ${primaryColor};
border-left-color: ${primaryColor};
border-radius: 50%;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@keyframes nprogress-spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
`,
});
});
// read prefers-color from localStorage before app render
api.addEntryCodeAhead(() => {
const { prefersColor } = api.config.themeConfig;
if (prefersColor.switch === false && prefersColor.default !== 'auto') {
return `document.documentElement.setAttribute('${PREFERS_COLOR_ATTR}', '${prefersColor.default}');`;
}
return `(function () {
var cache = typeof navigator !== 'undefined' && navigator.cookieEnabled && typeof window.localStorage !== 'undefined' && localStorage.getItem('dumi:prefers-color') || '${prefersColor.default}';
var isDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
var enums = ['light', 'dark', 'auto'];
document.documentElement.setAttribute(
'${PREFERS_COLOR_ATTR}',
cache === enums[2]
? (isDark ? enums[1] : enums[0])
: (enums.indexOf(cache) > -1 ? cache : enums[0])
);
})();`;
});
// share pluginManager with theme-api
api.addEntryImportsAhead(() => [
{
specifier: '{ getPluginManager as getDumiPluginManager }',
source: './core/plugin',
},
{
specifier: '{ setPluginManager as setDumiPluginManager }',
source: winPath(require.resolve('../../client/theme-api/utils')),
},
]);
api.addEntryCode(() => 'setDumiPluginManager(getDumiPluginManager());');
api.addRuntimePluginKey(() => [
'modifyCodeSandboxData',
'modifyStackBlitzData',
]);
// workaround for avoid oom, when developing theme package example in tnpm node_modules
if (
/*isTnpm*/ require('@umijs/core/package').__npminstall_done &&
fs.existsSync(localThemePath) &&
fs.lstatSync(localThemePath).isSymbolicLink()
) {
api.chainWebpack((memo) => {
const devThemeNodeModules = path.join(api.cwd, '../node_modules');
memo.snapshot(
deepmerge(memo.get('snapshot'), {
immutablePaths: [devThemeNodeModules],
managedPaths: [devThemeNodeModules],
}),
);
return memo;
});
}
};