deno.land / x / pagic@v1.6.3 / src / Pagic.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
import { React, fs, path, colors, EventEmitter } from '../deps.ts';
import { pick, unique, sortByInsert, importDefault, logger, walk, getPagicConfigPath, importPlugin, importTheme, serve, getGitBranch,} from './utils/mod.ts';import type { PagePropsSidebar, PagicConfigSidebar } from './plugins/sidebar.tsx';import type { PagePropsBlog } from './plugins/blog.tsx';import type { GaProps } from './plugins/ga_component.tsx';import type { GitalkProps } from './plugins/gitalk_component.tsx';
// #region typesexport interface PagicConfig { // base srcDir: string; outDir: string; include?: string[]; exclude?: string[]; root: string; theme: string; plugins: string[]; watch: boolean; serve: boolean; port: number;
// theme config title?: string; description?: string; head?: React.ReactElement | null; github?: string; tocAd?: React.ReactElement; tools?: { editOnGitHub: boolean; backToTop: boolean; }; branch?: string; footer?: React.ReactElement;
// plugins nav?: { text: string; link: string; icon?: string; target?: '_blank' | string; popover?: React.ReactElement; align?: 'left' | 'right'; }[]; sidebar?: PagicConfigSidebar; md?: { anchorLevel?: (1 | 2 | 3 | 4 | 5 | 6)[]; tocEnabled?: boolean; tocLevel?: (1 | 2 | 3 | 4 | 5 | 6)[]; katexMacros?: Record<string, string>; }; ga?: GaProps; gitalk?: GitalkProps; blog?: { root: string; social?: { github: string; email: string; twitter: string; v2ex: string; zhihu: string; }; }; i18n?: { languages: { code: string; name: string; root: string }[]; overrides?: Record<string, any>; resources?: Record<string, { translation: Record<string, string> }>; };
[key: string]: any;}
export interface PagicThemeConfig { files: [];}
export interface PagicPlugin { name: string; insert?: string; fn: (ctx: Pagic) => Promise<void>;}
export type PagicLayout<T = Record<string, any>> = React.FC<PageProps & T>;
export interface PageProps { // md title: string; content: React.ReactElement | null; contentTitle?: React.ReactElement; contentBody?: React.ReactElement; toc?: React.ReactElement | null; author?: string; contributors?: string[]; date?: Date | string; updated?: Date | string | null; excerpt?: string; cover?: string; tags?: string[]; categories?: string[];
// init config: PagicConfig; pagePath: string; layoutPath: string; outputPath: string; head: React.ReactElement | null; script: React.ReactElement | null; footer: React.ReactElement | null;
// script loading?: boolean;
// other plugins sidebar?: PagePropsSidebar; prev?: PagePropsSidebar[0]; next?: PagePropsSidebar[0]; ga?: React.ReactElement; gitalk?: React.ReactElement; blog?: PagePropsBlog; language?: { code: string; name: string; root: string };
[key: string]: any;}// #endregion
export default class Pagic extends EventEmitter { // #region properties public static defaultConfig: PagicConfig = { srcDir: '.', outDir: 'dist', include: undefined, exclude: [ // Dot files '**/.*', // Node common files '**/package.json', '**/package-lock.json', '**/node_modules', 'pagic.config.ts', 'pagic.config.tsx', // https://docs.npmjs.com/using-npm/developers.html#keeping-files-out-of-your-package '**/config.gypi', '**/CVS', '**/npm-debug.log',
// ${config.outDir} will be added later ], root: '/', theme: 'default', plugins: ['clean', 'init', 'md', 'tsx', 'script', 'layout', 'out'], watch: false, serve: false, port: 8000, footer: React.createElement( 'footer', {}, 'Powered by&nbsp;', React.createElement( 'a', { href: 'https://github.com/xcatliu/pagic', target: '_blank', }, ['Pagic'], ), ), }; // foo.md public static REGEXP_PAGE = /[\/\\][^_][^\/\\]*\.(md|tsx)$/; // /_layout.tsx /_sidebar.tsx public static REGEXP_LAYOUT = /[\/\\]_[^\/\\]+\.tsx$/;
// @ts-ignore public pagicConfigPath: string; // @ts-ignore public config: PagicConfig = {};
/** Pages that need to be build */ public pagePaths: string[] = []; public layoutPaths: string[] = []; public staticPaths: string[] = []; /** Files that need to be write */ public writeFiles: Record<string, string> = {}; /** A map stored all pageProps */ public pagePropsMap: Record<string, PageProps> = {}; public rebuilding = true;
public projectConfig: Partial<PagicConfig> = {}; private runtimeConfig: Partial<PagicConfig> = {};
private changedPaths: string[] = []; private timeoutHandler: number | undefined = undefined; // #endregion
public constructor(config: Partial<PagicConfig> = {}) { super(); this.runtimeConfig = config; }
public async build() { await this.rebuild(); if (this.config.serve) { this.serve(); } if (this.config.watch) { this.watch(); }
this.emit('buildFinish'); }
public async generateThemeMod() { this.config = { ...Pagic.defaultConfig, exclude: [...Pagic.defaultConfig.exclude!, 'mod.ts'], };
await this.initPaths(); await Deno.writeTextFile( './mod.ts', `export default {\n files: [\n${[...this.staticPaths, ...this.layoutPaths] .map((filePath) => ` '${filePath}'`) .join(',\n')}\n ]\n};\n`, ); }
public getConfig(pagePath?: string) { if (typeof pagePath === 'undefined') { return this.config; } return this.pagePropsMap[pagePath].config; }
private async rebuild() { this.rebuilding = true; this.pagePropsMap = {}; this.writeFiles = {};
await this.initConfig(); await this.initPaths(); await this.runPlugins(); }
/** Deep merge defaultConfig, projectConfig and runtimeConfig, then sort plugins */ private async initConfig() { this.pagicConfigPath = await getPagicConfigPath(); this.projectConfig = await importDefault(this.pagicConfigPath, { reload: true, }); let config = { ...Pagic.defaultConfig, ...this.projectConfig, ...this.runtimeConfig, }; if (typeof config.branch === 'undefined') { const branch = await getGitBranch(); config.branch = branch; } config.exclude = unique([ ...(Pagic.defaultConfig.exclude ?? []), ...(this.projectConfig.exclude ?? []), ...(this.runtimeConfig.exclude ?? []), config.outDir, ]); config.plugins = unique([ ...Pagic.defaultConfig.plugins, ...(this.projectConfig.plugins ?? []), ...(this.runtimeConfig.plugins ?? []), ]); this.config = config; }
private async serve() { serve({ serveDir: this.config.outDir, root: this.config.root, port: this.config.port, }); logger.success( 'Serve', colors.underline(this.config.outDir), `on http://127.0.0.1:${this.config.port}${this.config.root}`, ); }
private async watch() { logger.success('Watch', colors.underline(this.config.srcDir)); const watcher = Deno.watchFs([this.config.srcDir, this.pagicConfigPath]); for await (const event of watcher) { // pagic.config.ts modified, rebuild if (event.kind === 'modify' && event.paths.includes(this.pagicConfigPath)) { clearTimeout(this.timeoutHandler); this.timeoutHandler = setTimeout(async () => { this.rebuild(); }, 100); continue; } let eventPaths = event.paths.map((eventPath) => path.relative(this.config.srcDir, eventPath)); this.config.include?.forEach((glob) => { eventPaths = eventPaths.filter( (eventPath) => path.globToRegExp(glob).test(eventPath) || path.globToRegExp(`${glob}/**`).test(eventPath), ); }); this.config.exclude?.forEach((glob) => { eventPaths = eventPaths.filter( (eventPath) => !path.globToRegExp(glob).test(eventPath) && !path.globToRegExp(`${glob}/**`).test(eventPath), ); }); this.handleFileChange(eventPaths); } }
private async handleFileChange(filePaths: string[]) { if (filePaths.length === 0) return; this.changedPaths = unique([...this.changedPaths, ...filePaths]); clearTimeout(this.timeoutHandler); this.timeoutHandler = setTimeout(async () => { this.rebuilding = false; this.pagePaths = []; this.staticPaths = []; for (const changedPath of this.changedPaths) { const fullChangedPath = path.resolve(this.config.srcDir, changedPath); if (!fs.existsSync(fullChangedPath)) { logger.warn(`${changedPath} removed, start rebuild`); this.rebuilding = true; break; } else if (Deno.statSync(fullChangedPath).isDirectory) { logger.warn(`Directory ${colors.underline(changedPath)} changed, start rebuild`); this.rebuilding = true; break; } else if (Pagic.REGEXP_LAYOUT.test(fullChangedPath)) { logger.warn(`Layout ${changedPath} changed, start rebuild`); this.rebuilding = true; break; } else if (Pagic.REGEXP_PAGE.test(fullChangedPath)) { this.pagePaths.push(changedPath); } else { this.staticPaths.push(changedPath); } } if (this.rebuilding) { await this.rebuild(); } else { await this.runPlugins(); } this.changedPaths = []; }, 100); }
private async initPaths() { const { files: themeFiles } = await importTheme(this.config.theme);
this.pagePaths = await walk(this.config.srcDir, { ...pick(this.config, ['include', 'exclude']), match: [Pagic.REGEXP_PAGE], }); this.layoutPaths = unique([ ...(await walk(this.config.srcDir, { ...pick(this.config, ['include', 'exclude']), match: [Pagic.REGEXP_LAYOUT], })), ...themeFiles.filter((filename) => Pagic.REGEXP_LAYOUT.test(`/${filename}`)), ]).sort(); this.staticPaths = unique([ ...(await walk(this.config.srcDir, { ...pick(this.config, ['include', 'exclude']), skip: [Pagic.REGEXP_PAGE, Pagic.REGEXP_LAYOUT], })), ...themeFiles.filter( (filename) => !Pagic.REGEXP_PAGE.test(`/${filename}`) && !Pagic.REGEXP_LAYOUT.test(`/${filename}`), ), ]).sort(); }
private async runPlugins() { if (this.pagePaths.length === 0 && this.staticPaths.length === 0) return;
let sortedPlugins: PagicPlugin[] = []; for (let pluginName of this.config.plugins) { if (pluginName.startsWith('-')) { continue; } let plugin = await importPlugin(pluginName); sortedPlugins.push(plugin); } sortedPlugins = sortByInsert(sortedPlugins); const removedPlugins = this.config.plugins.filter((pluginName) => pluginName.startsWith('-')); sortedPlugins = sortedPlugins.filter((plugin) => !removedPlugins.includes(`-${plugin.name}`));
for (let plugin of sortedPlugins) { logger.success('Plugin', plugin.name, 'start'); await plugin.fn(this); } }}
pagic

Version Info

Tagged at
11 months ago