mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
88 lines
2.1 KiB
TypeScript
88 lines
2.1 KiB
TypeScript
import { task, series } from 'gulp';
|
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from 'fs';
|
|
import { isAbsolute, join, resolve, sep } from 'path';
|
|
|
|
import './example';
|
|
import { structure as DOCS } from '../../../../docs/structure';
|
|
import { DOCS_DIST } from '../config';
|
|
|
|
task(
|
|
'docs',
|
|
series(
|
|
'generate-doc-json-and-parse-themes',
|
|
'find-full-examples',
|
|
),
|
|
);
|
|
task('create-docs-dirs', (done) => {
|
|
const docsStructure = flatten('docs', routesTree(DOCS));
|
|
createDirsStructure(docsStructure);
|
|
|
|
done();
|
|
});
|
|
|
|
function routesTree(structure) {
|
|
return structure
|
|
.filter((page: any) => ['section', 'page', 'tabs'].includes(page.type))
|
|
.map((page: any) => {
|
|
if (page.type === 'tabs') {
|
|
page.children = ['overview', 'api', 'theme', 'examples']
|
|
.map(name => ({ name, type: 'page'}));
|
|
}
|
|
return page;
|
|
})
|
|
.map((page: any) => {
|
|
return {
|
|
path: prepareSlag(page.name),
|
|
children: page.children ? routesTree(page.children) : [],
|
|
}
|
|
});
|
|
}
|
|
|
|
function prepareSlag(name) {
|
|
return name.replace(/[^a-zA-Z0-9\s]+/g, '')
|
|
.replace(/\s/g, '-')
|
|
.toLowerCase();
|
|
}
|
|
|
|
function flatten(root, arr) {
|
|
let res: any[] = [];
|
|
arr.forEach((item: any) => {
|
|
const path = `${root}/${item.path}`;
|
|
res.push(path);
|
|
if (item.children) {
|
|
res = res.concat(flatten(path, item.children));
|
|
}
|
|
});
|
|
|
|
return res;
|
|
}
|
|
|
|
function createDirsStructure(dirs) {
|
|
const index = readFileSync(join(DOCS_DIST, 'index.html'), 'utf8');
|
|
dirs.forEach((dir: any) => {
|
|
const fullPath = join(DOCS_DIST, dir);
|
|
if (!existsSync(fullPath)) {
|
|
mkDirByPathSync(fullPath);
|
|
}
|
|
|
|
writeFileSync(join(fullPath, 'index.html'), index);
|
|
});
|
|
}
|
|
|
|
function mkDirByPathSync(targetDir, {isRelativeToScript = false} = {}) {
|
|
const initDir = isAbsolute(targetDir) ? sep : '';
|
|
const baseDir = isRelativeToScript ? __dirname : '.';
|
|
|
|
targetDir.split(sep).reduce((parentDir, childDir) => {
|
|
const curDir = resolve(baseDir, parentDir, childDir);
|
|
try {
|
|
mkdirSync(curDir);
|
|
} catch (err) {
|
|
if (err.code !== 'EEXIST') {
|
|
throw err;
|
|
}
|
|
}
|
|
|
|
return curDir;
|
|
}, initDir);
|
|
}
|