-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
180 lines (166 loc) · 5.69 KB
/
index.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
const fs = require('fs')
const path = require('path')
const watch = require('node-watch')
const EventEmitter = require('events')
const changeEmitter = new EventEmitter()
changeEmitter.setMaxListeners(10 ** 30)
const Handlebars = require('handlebars')
const sass = require('sass')
const htmlMinify = require('html-minifier').minify
if (!fs.existsSync('.ENV')) {
fs.copyFileSync('EXAMPLE.ENV', '.ENV')
console.log('Created .ENV file from example')
}
require('dotenv').config()
const args = {
watch: process.argv.indexOf('--watch') > -1,
serve: process.argv.indexOf('--serve') > -1
}
// Config using config.js and ENV vars
const config = require('./config')
Object.entries(process.env).forEach(entry => {
const key = entry[0]
const val = entry[1]
if (!key.match(/^BUILD_/)) return
config[key.replace(/^BUILD_/, '')] = val
})
// Render Templates
function renderTemplate (renderer, path) {
try {
return renderer(config)
} catch (error) {
console.log(error)
console.log(`\x1b[31mHandlebars compile error: ${path}\nSee traceback above for more information.\x1b[0m`)
return config.hbs_compile_error_msg
}
}
// Register Handlbars Partial Views
function recursivePartials (folderName) {
fs.readdirSync(folderName).forEach(function (file) {
// For each file in directory, get name and stat
const fullName = path.join(folderName, file).replace(/\\/g, '/')
const stat = fs.lstatSync(fullName)
if (stat.isDirectory()) {
// Folders
recursivePartials(fullName)
} else {
const routeName = fullName.replace(/^partials\//g, '')
const partialName = routeName.replace(/\.hbs$/, '')
const template = fs.readFileSync('./partials/' + routeName, 'utf-8')
const renderer = Handlebars.compile(template)
Handlebars.registerPartial(partialName, renderer)
}
})
}
recursivePartials('partials')
Handlebars.registerHelper('getJsonContext', function (data, options) {
return options.fn(JSON.parse(data))
})
function buildApp () {
// Clear the docs directory
if (fs.existsSync('docs')) fs.rmSync('docs', { recursive: true })
function recursiveRoutes (folderName) {
fs.readdirSync(folderName).forEach(function (file) {
// For each file in directory, get name and stat
const fullName = path.join(folderName, file)
const stat = fs.lstatSync(fullName)
if (stat.isDirectory()) {
// Folders
recursiveRoutes(fullName)
} else {
const routeName = fullName.replace(/^views/g, '')
// Create directory if it doesn't exist
const dir = folderName.replace(/^views/g, 'docs')
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir, {
recursive: true
})
}
if (routeName.match(/\.(hbs)$/)) {
// Handlebars files
const template = fs.readFileSync('./views' + routeName, 'utf-8')
const renderer = Handlebars.compile(template)
const html = renderTemplate(renderer, './views' + routeName)
let minified = null
if (routeName.replace(/\.hbs$/, '').match(/\.html$/)) {
minified = htmlMinify(html, {
collapseWhitespace: true,
minifyJS: true,
minifyCSS: true
})
}
try {
fs.writeFileSync('./docs' + routeName.replace(/\.hbs$/, ''), minified || html)
} catch (error) {
console.log(error)
}
} else if (routeName.match(/\.s[ac]ss$/)) {
const result = sass.renderSync({ file: './views' + routeName, outputStyle: 'compressed' })
try {
fs.writeFileSync('./docs' + routeName.replace(/\.s[ac]ss$/, '.css'), result.css)
} catch (error) {
console.log(error)
console.log(`\x1b[31mSass CSS compile error: ${path}\nSee traceback above for more information.\x1b[0m`)
}
} else {
// Copy other (static) files
try {
fs.copyFileSync('./views' + routeName, './docs' + routeName)
} catch (error) {
console.log(error)
}
}
}
})
}
recursiveRoutes('views')
}
buildApp()
if (args.watch) {
// Watch changes
watch('partials', { recursive: true }, function (evt, name) {
if (evt !== 'remove') {
const stat = fs.lstatSync(name)
if (stat.isDirectory()) return
}
console.log(`\x1b[32mChange detected, rebuilding... (${evt + ' ' + name}) \x1b[0m`)
const partialName = name.replace(/^partials\/|\.hbs$/g, '')
// Update Partial by re-registering it
if (evt !== 'remove') {
const template = fs.readFileSync(name, 'utf-8')
const renderer = Handlebars.compile(template)
Handlebars.registerPartial(partialName, renderer)
}
// Rebuild the app using the template
buildApp()
})
watch('views', { recursive: true }, function (evt, name) {
console.log(`\x1b[32mChange detected, rebuilding... (${evt + ' ' + name}) \x1b[0m`)
buildApp()
})
}
if (args.serve) {
const express = require('express')
const http = require('http')
const app = express()
app.use(express.static('./docs', { extensions: ['html'] }))
app.use(function (req, res) {
try {
fs.readFile('./docs/404.html', function (error, content) {
if (error) {
res.writeHead(500, { 'Content-Type': 'text/plain' })
res.end('Internal Server Error', 'utf-8')
} else {
res.writeHead(404, { 'Content-Type': 'text/html' })
res.end(content, 'utf-8')
}
})
} catch (error) {
// Error is handled in function
// This is to catch the exception thrown by fs.readFile
}
})
http.createServer(app).listen(5700, () => {
console.log('\x1b[36mListening on port 5700\x1b[0m')
})
}