forked from mesosphere/dcos-docs-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
207 lines (183 loc) · 6.32 KB
/
index.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
// Packages
const fs = require("fs");
const minimatch = require("minimatch");
const Metalsmith = require("metalsmith");
const markdown = require("metalsmith-markdownit");
const layouts = require("metalsmith-layouts");
const assets = require("metalsmith-assets");
const dataLoader = require("metalsmith-data-loader");
const ignore = require("metalsmith-ignore");
const watch = require("metalsmith-watch");
const serve = require("metalsmith-serve");
const anchor = require("markdown-it-anchor");
const attrs = require("markdown-it-attrs");
const timer = require("metalsmith-timer");
const consolidate = require("consolidate");
const pug = require("pug");
// Local Plugins
const hierarchy = require("./plugins/metalsmith-hierarchy");
const headings = require("./plugins/metalsmith-headings");
const algolia = require("./plugins/metalsmith-algolia");
const inPlace = require("./plugins/metalsmith-in-place-dcos");
const includeContent = require("./plugins/metalsmith-include-content-dcos");
const shortcodes = require("./plugins/metalsmith-shortcodes");
const webpack = require("./plugins/metalsmith-webpack");
const Utils = require("./core/utils");
// Configs
const configData = fs.readFileSync("config.json");
const config = JSON.parse(configData);
// Environment Variables
const DOCS_ENV = process.env.DOCS_ENV;
const METALSMITH_SKIP_SECTIONS = (config[DOCS_ENV] || {}).DO_NOT_BUILD || [];
//
// Metalsmith
//
const MS = Metalsmith(__dirname);
// These are available in the layouts as js variables
MS.metadata({
url: "https://docs.d2iq.com",
siteTitle: "D2iQ Docs",
siteDescription:
"Welcome to the documentation pages for D2iQ. Visit one of the product " +
"pages to get started.",
copyright: `© ${new Date().getFullYear()} D2iQ, Inc. All rights reserved.`,
env: process.env.NODE_ENV,
dcosCNDocsLatest: "2.1",
dcosDocsLatest: "2.2",
dispatchDocsLatest: "1.4",
kommanderDocsLatest: "2.1",
konvoyDocsLatest: "2.1",
kaptainDocsLatest: "1.3.0",
Utils,
});
MS.use(timer("Init"));
// Source
// Where metalsmith looks for all files
MS.source("./pages");
// Destination
// Where metalsmith will put the output code
MS.destination("./build");
// Don't Clean
// Cleaning removes the destination directory before writing to it
// I imagine cleaning makes watching take a long time, but untested for now
MS.clean(false);
if (process.env.NODE_ENV === "development") {
// remove all most mesosphere-files to speed up the dev end
MS.use((files, _, done) => {
Object.keys(files).forEach((file) => {
if (
minimatch(file, "mesosphere/dcos/**/*.md") &&
// we need these to build the landingpage
file != "mesosphere/dcos/index.md" &&
file != `mesosphere/dcos/${MS._metadata.dcosDocsLatest}/index.md`
) {
delete files[file];
}
});
done();
});
}
MS.use(ignore(METALSMITH_SKIP_SECTIONS));
MS.use(timer("Ignore"));
MS.use(assets({ source: "assets", destination: "assets" }));
MS.use(timer("Assets"));
// Load model data from external .json/.yaml files
// For example (in your Front Matter):
// model: path/to/my.yml (access content in my.yml as model.foo.bar)
// Can also specify multiple named models:
// model:
// data1: path/to/my.json (access content in my.json as model.data1.foo.bar)
// data2: path/to/my.yml (access content in my.yml as model.data2.foo.bar)
MS.use(dataLoader({ dataProperty: "model", match: "**/*.md" }));
MS.use(timer("Dataloader"));
// Load raw content via '#include' directives before rendering any mustache or markdown.
// For example (in your content):
// #include path/to/file.tmpl
// Style as a C-like include statement. Must be on its own line.
MS.use(includeContent({ pattern: "^#include ([^ \n]+)$", match: "**/*.md*" }));
MS.use(timer("IncludeContent"));
// Process any mustache templating in files.
// For example (in your Front Matter):
// render: mustache
MS.use(inPlace({ renderProperty: "render", match: "**/*.md" }));
MS.use(timer("Mustache"));
// Folder Hierarchy
MS.use(hierarchy);
MS.use(timer("Hierarchy"));
// Shortcodes
MS.use(shortcodes({ files: [".md"], shortcodes: require("./shortcodes") }));
MS.use(timer("Shortcodes"));
// Markdown
MS.use(
markdown({ smartList: false, typographer: true, html: true })
.use(anchor, {
permalink: true,
renderPermalink: (slug, opts, state, idx) => {
const linkTokens = [
Object.assign(new state.Token("link_open", "a", 1), {
attrs: [
["class", opts.permalinkClass],
["href", opts.permalinkHref(slug, state)],
["aria-hidden", "true"],
],
}),
Object.assign(new state.Token("html_block", "", 0), {
content: opts.permalinkSymbol,
}),
new state.Token("link_close", "a", -1),
];
state.tokens[idx + 1].children.unshift(...linkTokens);
},
permalinkClass: "content__anchor",
permalinkSymbol: '<i data-feather="bookmark"></i>',
permalinkBefore: true,
})
.use(attrs)
);
MS.use(timer("Markdown"));
// Headings
MS.use(headings());
MS.use(timer("Headings"));
// Layouts
MS.use((files, ms, done) => {
// we want to use pugs cache for the duration of one (re-)build. we need to clear it inbetween to
// have changes to layouts propagate directly. unfortunately there's no convenience for that and
// we have to reach into pug and consolidate directly for now.
consolidate.clearCache();
pug.cache = {};
return layouts({ engine: "pug", cache: true })(files, ms, done);
});
MS.use(timer("Layouts"));
// Search Indexing
if (process.env.ALGOLIA_UPDATE === "true") {
MS.use(algolia);
MS.use(timer("Algolia"));
}
// Enable watching
// The keys represent the files to watch, the values are the files that will
// be updated. ONLY the files that are being updated will be accessible to
// during the rebuild. We must include the layouts when rerendering a page thus.
if (process.env.NODE_ENV === "development") {
MS.use(
watch({
paths: {
"layouts/**/*": "**/*",
"pages/404/index.md": true,
"pages/dkp/**/*.md": true,
},
livereload: true,
})
);
MS.use(timer("Watch"));
}
// Serve
if (process.env.NODE_ENV === "development") {
MS.use(serve({ host: "0.0.0.0", port: 3000 }));
MS.use(timer("Webserver"));
}
MS.use(webpack);
MS.use(timer("Webpack"));
// Build
MS.build((err, files) => {
if (err) throw err;
});