This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 261
/
index.js
97 lines (86 loc) · 2.78 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
/*
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
var React = require('react');
var ReactDOMServer = require('react-dom/server');
var beautifyHTML = require('js-beautify').html;
var assign = require('object-assign');
var _escaperegexp = require('lodash.escaperegexp');
var DEFAULT_OPTIONS = {
doctype: '<!DOCTYPE html>',
beautify: false,
transformViews: true,
babel: {
presets: [
'@babel/preset-react',
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
},
],
],
plugins: ['@babel/transform-flow-strip-types'],
},
};
function createEngine(engineOptions) {
var registered = false;
var moduleDetectRegEx;
engineOptions = 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')(
assign({only: [].concat(options.settings.views)}, engineOptions.babel)
);
registered = true;
}
try {
var markup = engineOptions.doctype;
var component = require(filename);
// Transpiled ES6 may export components as { default: Component }
component = component.default || component;
markup += ReactDOMServer.renderToStaticMarkup(
React.createElement(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(function(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;