-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.js
100 lines (72 loc) · 2.74 KB
/
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
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
// Imports ____________________________________________________________________
const fs = require('fs');
const path = require('path');
const _parse = JSON.parse;
// Variables __________________________________________________________________
const paths = {
CSS: [
'snippets/css.json',
],
SCSS: [
'snippets/scss.json',
'src/snippets/scss.funcs.ts',
],
};
const excludes = [];
const description = `## CSS and SCSS Snippets
Complete list of all CSS and SCSS snippets for Visual Studio Code. The rules for all these snippets are explained in the [README.md](./README.md)`;
const findComments = /"(?:[^"\r\n\\]*(?:\\.)*)*"|(\/\*(?:.|[\r\n])*?\*\/|\/\/[^\r\n]*|export[\s\r\n]+default[\s\r\n]*|;)|,[\s\r\n]*?([\]}])/g;
const findMultipleSpaces = /\s+/g;
const findQuote = /`/g;
const findPipe = /\|/g;
// Initialize _________________________________________________________________
// Exports ____________________________________________________________________
module.exports = {
snippets: {
watch: Object.values(paths).flat(),
task: async () => {
const contents = [description];
const prefixes = {};
const duplicates = [];
for (const [headline, pathnames] of Object.entries(paths)) {
contents.push(`
### ${headline}
| Prefix | Snippet |
| -----: | ------- |`);
let json = {};
for (const pathname of pathnames) {
const result = parse(fs.readFileSync(path.join(process.cwd(), pathname), 'utf-8'))
json = { ...json, ...result };
}
const snippets = [];
for (const snippet of Object.values(json)) {
const prefix = snippet.prefix;
if (!prefix) continue;
if (prefix !== '___') snippets.push(formatSnippet(snippet));
if (!excludes.includes(headline)) {
if (!prefixes[prefix]) prefixes[prefix] = [];
prefixes[prefix].push(snippet.body.join(''));
}
}
contents.push(snippets.sort((a, b) => a.localeCompare(b, 'en', { sensitivity: 'base' })).join('\n'));
}
for (const [prefix, values] of Object.entries(prefixes)) {
if (values.length > 1) duplicates.push(`${prefix}: ${values.join(' | ')}`);
}
console.log(duplicates.join('\n'));
console.log(`\nFound ${duplicates.length} duplicated prefixes\n`);
fs.writeFileSync(path.join(process.cwd(), 'SNIPPETS.md'), contents.join('\n'), 'utf-8');
}
}
}
// Functions __________________________________________________________________
function formatSnippet (snippet) {
const body = snippet.body.join(' ')
.replace(findMultipleSpaces, ' ')
.replace(findQuote, '\`')
.replace(findPipe, '\\|');
return `| \`${snippet.prefix}\` | \`${body}\` |`;
}
function parse (json, ...args) {
return _parse(json.replace(findComments, (match, comment, close) => comment ? '' : close || match), ...args);
}