-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
86 lines (75 loc) · 2.43 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
const { h } = require('preact');
const renderToString = require('preact-render-to-string');
const beautifyHTML = require('js-beautify').html;
const _escaperegexp = require('lodash.escaperegexp');
const DEFAULT_OPTIONS = {
doctype: '<!DOCTYPE html>',
beautify: false,
transformViews: true,
babel: {
presets: [
'preact',
[
'env',
{
targets: {
node: 'current',
},
},
],
],
},
};
function createEngine(engineOptions) {
let registered = false;
let moduleDetectRegEx;
engineOptions = Object.assign({}, DEFAULT_OPTIONS, engineOptions || {});
function renderFile(filename, options, cb) {
// Defer babel registration until the first request so we can grab the view path.
if (!moduleDetectRegEx) {
// Path could contain regexp characters so escape it first.
// options.settings.views could be a single string or an array
moduleDetectRegEx = new RegExp(
[]
.concat(options.settings.views)
.map(viewPath => '^' + _escaperegexp(viewPath))
.join('|')
);
}
if (engineOptions.transformViews && !registered) {
// Passing a RegExp to Babel results in an issue on Windows so we'll just
// pass the view path.
require('babel-register')(
Object.assign({ only: options.settings.views }, engineOptions.babel)
);
registered = true;
}
let markup;
try {
markup = engineOptions.doctype;
let component = require(filename);
// Transpiled ES6 may export components as { default: Component }
component = component.default || component;
markup += renderToString(h(component, options));
} catch (e) {
return cb(e);
} finally {
if (options.settings.env === 'development') {
// Remove all files from the module cache that are in the view folder.
Object.keys(require.cache).forEach(module => {
if (moduleDetectRegEx.test(require.cache[module].filename)) {
delete require.cache[module];
}
});
}
}
if (engineOptions.beautify) {
// NOTE: This will screw up some things where whitespace is important, and be
// subtly different than prod.
markup = beautifyHTML(markup);
}
cb(null, markup);
}
return renderFile;
}
exports.createEngine = createEngine;