forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreload-tree.js
72 lines (64 loc) · 2.77 KB
/
reload-tree.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
/**
* This exists for local previewing. Only.
* We load in the entire tree on startup, then that's used for things like
* sidebars and breadcrumbs and landing pages and ToC pages (and possibly
* more).
* When an individual page is requested, we always reload it from disk
* in case it has changed. But that's not feasible with all 1k+ pages.
*
* The core of this middleware calls `createTree()` but by passing the
* optional previous tree so that within `createTree` it can opt to
* re-use those that haven't changed on disk.
*
* The intention here is so that things like sidebars can refresh
* without having to restart the entire server.
*/
import path from 'path'
import languages, { languageKeys } from '../lib/languages.js'
import createTree from '../lib/create-tree.js'
import warmServer from '../lib/warm-server.js'
import { loadSiteTree, loadPages, loadPageMap } from '../lib/page-data.js'
import loadRedirects from '#src/redirects/lib/precompile.js'
const languagePrefixRegex = new RegExp(`^/(${languageKeys.join('|')})(/|$)`)
const englishPrefixRegex = /^\/en(\/|$)/
const isDev = process.env.NODE_ENV === 'development'
export default async function reloadTree(req, res, next) {
if (!isDev) return next()
// Filter out things like `/will/redirect` or `/_next/data/...`
if (!languagePrefixRegex.test(req.pagePath)) return next()
// We only bother if the loaded URL is something `/en/...`
if (!englishPrefixRegex.test(req.pagePath)) return next()
const warmed = await warmServer()
// For all the real English content, this usually takes about 30-60ms on
// an Intel MacbookPro.
const before = getMtimes(warmed.unversionedTree.en)
warmed.unversionedTree.en = await createTree(
path.join(languages.en.dir, 'content'),
undefined,
warmed.unversionedTree.en,
)
const after = getMtimes(warmed.unversionedTree.en)
// The next couple of operations are much slower (in total) than
// refrehing the tree. So we want to know if the tree changed before
// bothering.
// If refreshing of the `.en` part of the `unversionedTree` takes 40ms
// then the following operations takes about 140ms.
if (before !== after) {
warmed.siteTree = await loadSiteTree(warmed.unversionedTree)
warmed.pageList = await loadPages(warmed.unversionedTree)
warmed.pageMap = await loadPageMap(warmed.pageList)
warmed.redirects = await loadRedirects(warmed.pageList)
}
return next()
}
// Given a tree, return a number that represents the mtimes for all pages
// in the tree.
// You can use this to compute it before and after the tree is (maybe)
// mutated and if the numbers *change* you can know the tree changed.
function getMtimes(tree) {
let mtimes = tree.page.mtime
for (const child of tree.childPages || []) {
mtimes += getMtimes(child)
}
return mtimes
}