-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.js
140 lines (120 loc) · 3.63 KB
/
build.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
var handlebars = require('handlebars'),
fs = require('fs'),
rmrf = require('rimraf'),
mkdirp = require('mkdirp'),
ncp = require('ncp').ncp,
path = require('path'),
templateManifest = require('./templates/manifest'),
baseTemplatePath = './templates',
baseDistPath = './dist',
templates = {},
faqData = require('./data/faqs'),
urlData = require('./data/urls')
// generate handlebars templates from the templateManifest,
// and register each one as partials
;(function(){
var key, relPath, templatePath, source
for(key in templateManifest){
relPath = templateManifest[key]
templatePath = path.join(baseTemplatePath, relPath)
source = fs.readFileSync(templatePath, 'utf-8')
templates[key] = handlebars.compile(source)
handlebars.registerPartial(key, templates[key])
}
})()
// transform the faq.json answers into handlebar templates
;(function(){
for(var key in faqData){
var qa = faqData[key], answer = qa.answer
if(typeof answer == 'string'){
qa.answer = handlebars.compile(answer)
} else if(Array.isArray(answer)){
qa.answer = answer.map(function(a){
return handlebars.compile(a)
})
}
}
})()
// Enable {{#wrap with='templateKey'}} in templates.
// The wrapper must embed {{{__wrapped_content}}} for this to work.
handlebars.registerHelper('wrap', function(options){
// render the wrapped template first..
var wrappedContent = options.fn(this)
var wrapperTemplate = templates[options.hash['with']]
// ...then call the wrapper, using the wrapped template's
// output as the input to __wrapped_content
var data = options.data.root
data['__wrapped_content'] = wrappedContent
return wrapperTemplate(data)
})
function getUrl(name) {
return urlData[name] || '#todo'
}
// creates <a target="_blank" href="...">{{...}}</a>
// where the href is based on a mapping from urls.json
handlebars.registerHelper('link', function(context, options){
var url = getUrl(context)
var attribs = {
target: '_blank'
}
for(var key in options.hash){
attribs[key] = options.hash[key]
}
var s = "<a href=\"" + url + "\""
for(var key in attribs){
s += ' '
s += key
s += '="'
s += attribs[key]
s += '"'
}
s += '>'
s += options.fn(this)
s += "</a>"
return s
})
// similar to the link helper, but just returns the url
handlebars.registerHelper('url', function(context, options){
return getUrl(context)
})
handlebars.registerHelper('trackDownloadLink', function(context, options){
return "trackLink('" + (getUrl(context)) + "', 'Download');"
})
// clean the 'dist' directory
rmrf.sync(baseDistPath)
mkdirp.sync(baseDistPath)
// runs a template function to generate an output file
function generateTemplateOutput(templateName, outputRelPath, templateData){
templateData = templateData || {}
var output = templates[templateName](templateData),
outputPath = path.join(baseDistPath, outputRelPath)
fs.writeFileSync(outputPath, output, 'utf-8')
}
// generate dist/index.html
generateTemplateOutput('index', 'index.html', {
pageTitle: "Code Pulse | Real-Time Code Coverage",
navLinks: require('./data/index-navigation'),
includes: [
{css: "deps/carousel.css"},
{css: "deps/overview.css"},
{css: "deps/features.css"},
{css: "deps/why.css"},
{css: 'deps/how.css'},
{js: 'deps/latest-version.js'},
{js: 'deps/jquerypp.hover.js'},
{js: 'deps/how.js'},
{js: 'deps/footer.js'}
]
})
// generate dist/faq.html
generateTemplateOutput('faq', 'faq.html', {
pageTitle: "Code Pulse | FAQ",
faqs: faqData,
includes: [
{js: 'deps/faq.js'}
]
})
// generate dist/deps/* by copying the static-deps folder (async!)
ncp('./static-deps', path.join(baseDistPath, '/deps'), function(err, result){
// blank callback function for now...
})