-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrev-docs.js
62 lines (51 loc) · 2.1 KB
/
rev-docs.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
import fs from 'fs-extra';
import ora from 'ora';
import { basename as getFileName } from 'path';
import { singularize } from 'inflected';
import path from 'path';
import glob from 'glob';
const docsPath = '../ember-api-docs-data';
function revProjVersionFiles(project, ver) {
let opProgress = ora(`Revving ${project}:${ver} files`).start();
const projDocsDir = path.resolve(`${docsPath}/json-docs/${project}`);
const revIndexFolder = path.resolve(`${docsPath}/rev-index`);
fs.mkdirpSync(revIndexFolder);
const destination = `${revIndexFolder}/${project}-${ver}.json`;
fs.copySync(`${projDocsDir}/${ver}/project-versions/${project}-${ver}.json`, destination);
opProgress.text = `Revving ${project}:${ver}`;
const projVerRevFile = `${revIndexFolder}/${project}-${ver}.json`;
let projVerRevContent = fs.readJsonSync(projVerRevFile);
projVerRevContent.meta = {};
Object.keys(projVerRevContent.data.relationships).forEach(k => {
if (Array.isArray(projVerRevContent.data.relationships[k].data)) {
projVerRevContent.data.relationships[k].data.forEach(({ type, id }) => {
if (!projVerRevContent.meta[type]) {
projVerRevContent.meta[type] = {};
}
projVerRevContent.meta[type][id] = '';
});
} else if (k !== 'project') {
let d = projVerRevContent.data.relationships[k].data;
if (!projVerRevContent.meta[d.type]) {
projVerRevContent.meta[d.type] = {};
}
projVerRevContent.meta[d.type][d.id] = '';
}
});
projVerRevContent.meta['missing'] = {};
const projVerDir = `${projDocsDir}/${ver}`;
glob
.sync(`${projVerDir}/**/*.json`)
.filter(f => !f.includes('project-versions'))
.map(f => {
let fileShortName = f.replace(`${projVerDir}/`, '').replace('.json', '');
let [fileObjType, entityName] = fileShortName.split('/');
projVerRevContent.meta[singularize(fileObjType)][entityName] = getFileName(f).replace(
'.json',
'',
);
});
fs.writeJsonSync(projVerRevFile, projVerRevContent, { spaces: 2 });
opProgress.succeed('Revving done!');
}
export default revProjVersionFiles;