-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
52 lines (42 loc) · 1.5 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
var React = require('react');
var beautifyHtml = require('js-beautify').html;
var nodeCoffeeJsx = require('node-cjsx');
var nodeJsx = require('node-jsx');
var _merge = require('lodash.merge');
var DEFAULT_OPTIONS = {
extension: '.cjsx',
doctype: '<!DOCTYPE html>',
beautify: false
};
function createEngine(engineOptions) {
engineOptions = _merge(DEFAULT_OPTIONS, engineOptions);
nodeCoffeeJsx.transform();
nodeJsx.install({ extension: '.jsx', harmony: true });
var moduleDetectRegEx = new RegExp('\\' + engineOptions.extension + '$');
function renderFile(filename, options, cb) {
try {
var markup = engineOptions.doctype;
var component = React.createFactory(require(filename));
markup += React.renderToStaticMarkup(component(options));
} catch (e) {
return cb(e);
}
if (engineOptions.beautify) {
// NOTE: This will screw up some things where whitespace is important
markup = beautifyHtml(markup);
}
if (options.settings.env === 'development') {
// Remove all files from the module cache that use our extension. If we're
// using .js, this could be sloooow. On the plus side, we can now make changes
// to our views without needing to restart the server.
Object.keys(require.cache).forEach(function(module) {
if (moduleDetectRegEx.test(require.cache[module].filename)) {
delete require.cache[module];
}
});
}
cb(null, markup);
}
return renderFile;
}
exports.createEngine = createEngine;