deno.land / x / mongoose@6.7.5 / scripts / website.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
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
'use strict';
Error.stackTraceLimit = Infinity;
const acquit = require('acquit');const fs = require('fs');const path = require('path');const pug = require('pug');const pkg = require('../package.json');const transform = require('acquit-require');
// using "__dirname" and ".." to have a consistent CWD, this script should not be runnable, even when not being in the root of the project// also a consistent root path so that it is easy to change later when the script should be movedconst cwd = path.resolve(__dirname, '..');
const isMain = require.main === module;
let jobs = [];try { jobs = require('../docs/data/jobs.json');} catch (err) {}
let opencollectiveSponsors = [];try { opencollectiveSponsors = require('../docs/data/opencollective.json');} catch (err) {}
require('acquit-ignore')();
const { marked: markdown } = require('marked');const highlight = require('highlight.js');const { promisify } = require("util");const renderer = { heading: function(text, level, raw, slugger) { const slug = slugger.slug(raw); return `<h${level} id="${slug}"> <a href="#${slug}"> ${text} </a> </h${level}>\n`; }};markdown.setOptions({ highlight: function(code, language) { if (!language) { language = 'javascript'; } if (language === 'no-highlight') { return code; } return highlight.highlight(code, { language }).value; }});markdown.use({ renderer });
const testPath = path.resolve(cwd, 'test')
const tests = [ ...acquit.parse(fs.readFileSync(path.join(testPath, 'geojson.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/transactions.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'schema.alias.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'model.middleware.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/date.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/lean.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/cast.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/findoneandupdate.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/custom-casting.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/getters-setters.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/virtuals.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/defaults.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/discriminators.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/promises.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/schematypes.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/validation.test.js')).toString()), ...acquit.parse(fs.readFileSync(path.join(testPath, 'docs/schemas.test.js')).toString())];
function getVersion() { return require('../package.json').version;}
function getLatestLegacyVersion(startsWith) { const hist = fs.readFileSync(path.join(cwd, 'CHANGELOG.md'), 'utf8').replace(/\r/g, '\n').split('\n');
for (const rawLine of hist) { const line = (rawLine || '').trim(); if (!line) { continue; } const match = /^\s*([^\s]+)\s/.exec(line); if (match && match[1] && match[1].startsWith(startsWith)) { return match[1]; } }
throw new Error('no match found');}
// use last releasepkg.version = getVersion();pkg.latest5x = getLatestLegacyVersion('5.');pkg.latest4x = getLatestLegacyVersion('4.');
// Create api dir if it doesn't already existtry { fs.mkdirSync(path.join(cwd, './docs/api'));} catch (err) {} // eslint-disable-line no-empty
require('../docs/splitApiDocs');const filemap = Object.assign({}, require('../docs/source'), require('../docs/tutorials'), require('../docs/typescript'));const files = Object.keys(filemap);
const wrapMarkdown = (md, baseLayout) => `extends ${baseLayout}
append style link(rel="stylesheet", href="/docs/css/inlinecpc.css") script(type="text/javascript" src="/docs/js/native.js") style. p { line-height: 1.5em }
block content <a class="edit-docs-link" href="#{editLink}" target="_blank"> <img src="/docs/images/pencil.svg" /> </a> :markdown${md.split('\n').map(line => ' ' + line).join('\n')}`;
const cpc = `<script> _native.init("CK7DT53U",{ targetClass: 'native-inline' });</script>
<div class="native-inline"> <a href="#native_link#"><span class="sponsor">Sponsor</span> #native_company# — #native_desc#</a></div>`;
async function pugify(filename, options) { let newfile = undefined; options = options || {}; options.package = pkg;
const _editLink = 'https://github.com/Automattic/mongoose/blob/master' + filename.replace(cwd, ''); options.editLink = options.editLink || _editLink;
let contents = fs.readFileSync(path.resolve(cwd, filename)).toString();
if (options.acquit) { contents = transform(contents, tests); } if (options.markdown) { const lines = contents.split('\n'); lines.splice(2, 0, cpc); contents = lines.join('\n'); contents = wrapMarkdown(contents, path.relative(path.dirname(filename), path.join(cwd, 'docs/layout'))); newfile = filename.replace('.md', '.html'); }
options.filename = filename; options.filters = { markdown: function(block) { return markdown.parse(block); } };
newfile = newfile || filename.replace('.pug', '.html'); options.outputUrl = newfile.replace(cwd, ''); options.jobs = jobs;
options.opencollectiveSponsors = opencollectiveSponsors;
const str = await promisify(pug.render)(contents, options).catch(console.error);
if (typeof str !== "string") { return; } await fs.promises.writeFile(newfile, str).catch((err) => { console.error('could not write', err.stack); }).then(() => { console.log('%s : rendered ', new Date(), newfile); });}
// extra function to start watching for file-changes, without having to call this file directly with "watch"function startWatch() { files.forEach((file) => { const filepath = path.resolve(cwd, file); fs.watchFile(filepath, { interval: 1000 }, (cur, prev) => { if (cur.mtime > prev.mtime) { pugify(filepath, filemap[file]); } }); });
fs.watchFile(path.join(cwd, 'docs/layout.pug'), { interval: 1000 }, (cur, prev) => { if (cur.mtime > prev.mtime) { console.log('docs/layout.pug modified, reloading all files'); pugifyAllFiles(true); } });}
async function pugifyAllFiles(noWatch) { await Promise.all(files.map(async (file) => { const filename = path.join(cwd, file); await pugify(filename, filemap[file]); }));
// enable watch after all files have been done once, and not in the loop to use less-code // only enable watch if main module AND having argument "--watch" if (!noWatch && isMain && process.argv[2] === '--watch') { startWatch(); }}
exports.default = pugify;exports.pugify = pugify;exports.startWatch = startWatch;exports.pugifyAllFiles = pugifyAllFiles;exports.cwd = cwd;
// only run the following code if this file is the main module / entry fileif (isMain) { pugifyAllFiles();}
mongoose

Version Info

Tagged at
a year ago