-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathbuild-pages.js
85 lines (75 loc) · 2.46 KB
/
build-pages.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
//
// This file builds out the general web pages (like the about page). A simple
// static site generator. It uses `partials` and `layouts`.
//
var fs = require('fs')
var path = require('path')
var locale = require('./locale.js')
var Handlebars = require('handlebars')
var langs = locale.getAvaiableLocales()
var layout = fs.readFileSync(path.normalize(path.join(__dirname, '..', 'resources', 'layouts', 'page.hbs'))).toString()
var input = ''
var output = ''
for (var lang in langs) {
input = path.join(locale.getLocaleResourcesPath(langs[ lang ]), 'pages')
output = path.join(locale.getLocaleBuiltPath(langs[ lang ]), 'pages')
// If folder not exist, create it
try {
fs.accessSync(output)
} catch (e) {
fs.mkdirSync(output)
}
var pageFiles = fs.readdirSync(input)
buildPages(pageFiles, langs[ lang ])
}
function buildPages (files, lang) {
files.forEach(function construct (file) {
if (!file.match('html')) return
var final = ''
if (file === 'index.html') {
final = buildIndex(file, lang)
} else {
var content = {
header: buildHeader(file, lang),
footer: buildFooter(file, lang),
body: fs.readFileSync(path.join(input, file)).toString()
}
var template = Handlebars.compile(layout)
final = template(content)
}
fs.writeFileSync(path.join(output, file), final)
})
console.log('Built ' + lang + ' pages!')
}
function buildFooter (filename, lang) {
var source = fs.readFileSync(getPartial('footer', lang)).toString()
var template = Handlebars.compile(source)
return template()
}
function buildHeader (filename, lang) {
var source = fs.readFileSync(getPartial('header', lang)).toString()
var template = Handlebars.compile(source)
var contents = {
pageTitle: filename.replace(/.html/, ''),
localemenu: new Handlebars.SafeString(locale.getLocaleMenu(lang)),
lang: lang
}
return template(contents)
}
function buildIndex (file, lang) {
var source = fs.readFileSync(path.join(input, file)).toString()
var template = Handlebars.compile(source)
var content = {
localemenu: new Handlebars.SafeString(locale.getLocaleMenu(lang))
}
return template(content)
}
function getPartial (filename, lang) {
try {
var pos = path.join(locale.getLocaleResourcesPath(lang), 'partials/' + filename + '.html')
fs.statSync(pos)
return pos
} catch (e) {
return path.join(locale.getLocaleResourcesPath(locale.getFallbackLocale()), 'partials/' + filename + '.html')
}
}