-
Notifications
You must be signed in to change notification settings - Fork 359
/
Copy pathpug.js
120 lines (109 loc) · 3.21 KB
/
pug.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
#!/usr/bin/env node
'use strict'
const args = process.argv.slice(2)
const fs = require('fs')
const path = require('path')
const mkdirp = require('mkdirp')
const pug = require('pug')
const src = './pug/'
const dest = './public/'
const pkg = require(path.resolve(__dirname, '../package.json'))
const beautify = require('js-beautify').html
const jsbOptions = {
indent_size: 2,
indent_inner_html: true,
unformatted: [''],
content_unformatted: ['textarea'],
extra_liners: ['']
}
const version = args[0];
const basename = path.basename
const dirname = path.dirname
const resolve = path.resolve
const normalize = path.normalize
const join = path.join
const relative = path.relative
const extension = path.extname
const walkSync = (dir, filelist = []) => {
fs.readdirSync(dir).forEach(file => {
filelist = fs.statSync(path.join(dir, file)).isDirectory()
? walkSync(path.join(dir, file), filelist)
: filelist.concat(path.join(dir, file))
})
return filelist
}
const isPug = (filename) => {
return extension(filename) === '.pug' ? true : false
}
const compile = (filename, basedir) => {
const levels = filename.replace(`pug${path.sep}views${path.sep}`, '').replace(`pug${path.sep}pages${path.sep}`, '').split(`${path.sep}`).length
const base = (levels) => {
let path = './'
while (levels > 1) {
levels = levels - 1;
path = path + '../'
}
return path
}
const fn = pug.compileFile(filename, {
basedir: basedir,
pretty: true,
})
const html = fn({
base: base(levels)
});
return html
}
// Build html files
const compileHtml = () => {
// Build index
if (version === 'ajax') {
const html = compile('./pug/layout/index.pug', './pug/layout/')
fs.writeFile(resolve(dest, 'index.html'), beautify(html, jsbOptions), function(err) {
if(err) {
return console.log(err);
}
console.log('index.html file was saved!');
})
}
// Build views
const views = walkSync('./pug/views/')
views.forEach((view) => {
if (isPug(view)) {
const html = compile(view, './pug/layout/')
let file
if (version === 'ajax') {
file = view.replace(`pug${path.sep}`, '').replace('.pug', '.html')
} else {
file = view.replace(`pug${path.sep}views${path.sep}`, '').replace('.pug', '.html')
}
// Create tree
mkdirp.sync(resolve(dest, dirname(file)))
// Create HTML file
fs.writeFile(resolve(dest, file), beautify(html, jsbOptions), function(err) {
if(err) {
return console.log(err)
}
console.log(file + ' file was saved!')
})
}
})
// Build pages
const pages = walkSync('./pug/pages')
pages.forEach((page) => {
if (isPug(page)) {
const html = compile(page, './pug/layout/')
const file = page.replace(`pug${path.sep}pages${path.sep}`, '').replace('.pug', '.html')
// Create tree
mkdirp.sync(resolve(dest, dirname(file)))
// Create HTML file
fs.writeFile(resolve(dest, file), beautify(html, jsbOptions), function(err) {
if(err) {
return console.log(err)
}
console.log(file + ' file was saved!')
})
}
})
}
compileHtml()