forked from codecombat/codecombat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile-static-templates.js
165 lines (148 loc) · 5.79 KB
/
compile-static-templates.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
/*
* decaffeinate suggestions:
* DS101: Remove unnecessary use of Array.from
* DS102: Remove unnecessary code created because of implicit returns
* DS207: Consider shorter variations of null checks
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
let WebpackStaticStuff;
const pug = require('pug');
const path = require('path');
const cheerio = require('cheerio');
const en = require('./app/locale/en');
const zh = require('./app/locale/zh-HANS');
const basePath = path.resolve('./app');
const _ = require('lodash');
const fs = require('fs');
// TODO: stop webpack build on error (e.g. http://dev.topheman.com/how-to-fail-webpack-build-on-error/)
const compile = function(contents, locals, filename, cb) {
// console.log "Compile", filename, basePath
let str;
const outFile = filename.replace(/.static.pug$/, '.html');
// console.log {outFile, filename, basePath}
let out = pug.compileClientWithDependenciesTracked(contents, {
filename: path.join(basePath, 'templates/static', filename),
basedir: basePath
}
);
const outFn = pug.compile(contents, {
filename: path.join(basePath, 'templates/static', filename),
basedir: basePath
});
const translate = function(key, chinaInfra) {
let type = 'text';
const html = /^\[html\]/.test(key);
if (html) { key = key.substring(6); }
if (html) { type = 'html'; }
const content = /^\[content\]/.test(key);
if (content) { key = key.substring(9); }
if (content) { type = 'content'; }
let t = chinaInfra ? zh.translation : en.translation;
//TODO: Replace with _.property when we get modern lodash
const translationPath = key.split(/[.]/);
while (translationPath.length > 0) {
const k = translationPath.shift();
t = t[k];
if (t == null) { return key; }
}
return out = {
text: t,
type
};
};
const i18n = function(k,v) {
if (Array.from(k).includes('i18n')) { return k.i18n.en[a]; }
return k[v];
};
try {
locals = _.merge({_, i18n}, locals, require('./static-mock'));
// NOTE: do NOT add more build env-driven feature flags here if at all possible.
// NOTE: instead, use showingStaticPagesWhileLoading (in static-mock) to delay/hide UI until features flags loaded
locals.me.useDexecure = () => !(locals.chinaInfra != null ? locals.chinaInfra : false);
locals.me.useSocialSignOn = () => !(locals.chinaInfra != null ? locals.chinaInfra : false);
locals.me.useGoogleAnalytics = () => !(locals.chinaInfra != null ? locals.chinaInfra : false);
locals.me.useStripe = () => !(locals.chinaInfra != null ? locals.chinaInfra : false);
str = outFn(locals);
} catch (error) {
const e = error;
console.log("Compile", filename, basePath);
console.log('ERROR', e.message);
throw new Error(e.message);
return cb(e.message);
}
const c = cheerio.load(str);
const elms = c('[data-i18n]');
elms.each(function(i, e) {
i = c(this);
const t = translate(i.data('i18n'), locals.chinaInfra);
if (t.type === 'html') {
return i.html(t.text);
} else if (t.type === 'content') {
return i.attr("content", t.text);
} else {
return i.text(t.text);
}
});
const deps = ['static-mock.coffee'].concat(out.dependencies);
// console.log "Wrote to #{outFile}", deps
// console.log {outFile}
if (!fs.existsSync(path.resolve('./public'))) {
fs.mkdirSync(path.resolve('./public'));
}
if (!fs.existsSync(path.resolve('./public/templates'))) {
fs.mkdirSync(path.resolve('./public/templates'));
}
if (!fs.existsSync(path.resolve('./public/templates/static'))) {
fs.mkdirSync(path.resolve('./public/templates/static'));
}
fs.writeFileSync(path.join(path.resolve('./public/templates/static'), outFile), c.html());
return cb();
};
// cb(null, [{filename: outFile, content: c.html()}], deps) # old brunch callback
module.exports = (WebpackStaticStuff = function(options) {
if (options == null) { options = {}; }
this.options = options;
this.prevTemplates = {};
return null; // Need this for webpack to be happy
});
WebpackStaticStuff.prototype.apply = function(compiler) {
// Compile the static files
compiler.plugin('emit', (compilation, callback) => {
const files = fs.readdirSync(path.resolve('./app/templates/static'));
const promises = [];
for (let filename of Array.from(files)) {
const relativeFilePath = path.join(path.resolve('./app/templates/static/'), filename);
const content = fs.readFileSync(path.resolve('./app/templates/static/'+filename)).toString();
if (this.prevTemplates[filename] === content) {
continue;
}
this.prevTemplates[filename] = content;
const locals = _.merge({}, this.options.locals, {
chunkPaths: _.zipObject.apply(null, _.zip(compilation.chunks.map(c=> [
c.name,
compiler.options.output.chunkFilename.replace('[name]',c.name).replace('[chunkhash]',c.renderedHash)
])))
});
try {
compile(content, locals, filename, _.noop);
console.log(`\nCompiled static file: ${filename}`);
} catch (err) {
console.log(`\nError compiling ${filename}:`, err);
return callback(`\nError compiling ${filename}:`, err);
}
}
return callback();
});
// Watch the static template files for changes
return compiler.plugin('after-emit', (compilation, callback) => {
const files = fs.readdirSync(path.resolve('./app/templates/static'));
const compilationFileDependencies = new Set(compilation.fileDependencies);
_.forEach(files, filename => {
const absoluteFilePath = path.join(path.resolve('./app/templates/static/'), filename);
if (!compilationFileDependencies.has(absoluteFilePath)) {
return compilation.fileDependencies.push(absoluteFilePath);
}
});
return callback();
});
};