forked from ankitskvmdam/clean-jsdoc-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clean-jsdoc-theme-helper.js
181 lines (135 loc) · 3.83 KB
/
clean-jsdoc-theme-helper.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
const has = require('lodash/has');
const klawSync = require('klaw-sync');
const path = require('path')
const fse = require('fs-extra')
const showdown = require('showdown');
const mdToHTMLConverter = new showdown.Converter();
function lsSync(dir, opts = {}) {
const depth = has(opts, 'depth') ? opts.depth : -1;
const files = klawSync(dir, {
depthLimit: depth,
filter: (f) => !path.basename(f.path).startsWith('.'),
nodir: true,
});
return files.map((f) => f.path);
};
function copyToOutputFolder(filePath, outdir) {
const resolvedPath = path.resolve(filePath);
const filename = path.basename(resolvedPath);
const out = path.join(outdir, filename);
fse.copyFileSync(resolvedPath, out);
}
function copyToOutputFolderFromArray(filePathArray, outdir) {
const outputList = [];
if (Array.isArray(filePathArray)) {
for (const filePath of filePathArray) {
copyToOutputFolder(filePath, outdir);
outputList.push(path.basename(filePath));
}
}
return outputList;
}
function buildFooter(themeOpts) {
var footer = themeOpts.footer;
return footer;
}
function moduleHeader(themeOpts) {
var displayModuleHeader = themeOpts.displayModuleHeader || false;
return displayModuleHeader;
}
function getFavicon(themeOpts) {
var favicon = themeOpts.favicon || undefined;
return favicon;
}
// function copy
function createDynamicStyleSheet(themeOpts) {
var styleClass = themeOpts.create_style || undefined;
/* prettier-ignore-start */
return styleClass;
}
function createDynamicsScripts(themeOpts) {
var scripts = themeOpts.add_scripts || undefined;
return scripts;
}
function returnPathOfScriptScr(themeOpts) {
var scriptPath = themeOpts.add_script_path || undefined;
return scriptPath;
}
function returnPathOfStyleSrc(themeOpts) {
var stylePath = themeOpts.add_style_path || undefined;
return stylePath;
}
function includeCss(themeOpts, outdir) {
var stylePath = themeOpts.include_css || undefined;
if (stylePath) {
stylePath = copyToOutputFolderFromArray(stylePath, outdir);
}
return stylePath;
}
function resizeable(themeOpts) {
var resizeOpts = themeOpts.resizeable || {};
return resizeOpts;
}
function codepen(themeOpts) {
var codepenOpts = themeOpts.codepen || {};
return codepenOpts;
}
function includeScript(themeOpts, outdir) {
var scriptPath = themeOpts.include_js || undefined;
if (scriptPath) {
scriptPath = copyToOutputFolderFromArray(scriptPath, outdir);
}
return scriptPath;
}
function getMetaTagData(themeOpts) {
var meta = themeOpts.meta || undefined;
return meta;
}
function getTheme(themeOpts) {
var theme = themeOpts.default_theme || 'dark';
return theme;
}
function getBaseURL(themeOpts) {
return themeOpts.base_url;
}
function copyStaticFolder(themeOpts, outdir) {
const staticDir = themeOpts.static_dir || undefined;
if (staticDir) {
for (const dir of staticDir) {
const output = path.join(outdir, dir);
fse.copySync(dir, output);
}
}
}
/**
* Currently for some reason yields markdown is
* not processed by jsdoc. So, we are processing it here
*
* @param {Array<{type: string, description: string}>} yields
*/
function getProcessedYield(yields) {
if (!Array.isArray(yields)) return [];
return yields.map((y) => ({
...y,
description: mdToHTMLConverter.makeHtml(y.description),
}));
}
module.exports = {
buildFooter,
moduleHeader,
codepen,
createDynamicStyleSheet,
createDynamicsScripts,
getBaseURL,
getFavicon,
getMetaTagData,
getTheme,
includeCss,
includeScript,
resizeable,
returnPathOfScriptScr,
returnPathOfStyleSrc,
copyStaticFolder,
getProcessedYield,
lsSync
}