forked from marko-js/marko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
express.js
49 lines (39 loc) · 1.37 KB
/
express.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
require('./runtime/env-init');
var assign = require('object-assign');
var express = module.parent.require('express');
patchResponse(express.response);
delete require.cache[__filename];
module.exports = function markoAppMiddleware() {
var sacrificialApp = express();
sacrificialApp.once('mount', function onmount(parent) {
// Patch the response
patchResponse(parent.response);
// Remove sacrificial express app
parent._router.stack.pop();
});
return sacrificialApp;
}
function patchResponse(response) {
response.marko = response.marko || function(template, data) {
if(typeof template === 'string') {
throw new Error(
'res.marko does not take a template name or path like res.render. ' +
'Instead you should use `require(\'./path/to/template.marko\')` ' +
'and pass the loaded template to this function.'
);
}
var res = this;
var req = res.req;
var app = res.app;
var $global = assign({ app, req, res }, app.locals, res.locals);
if (data) {
data = assign(data, {
$global: assign($global, data.$global)
});
} else {
data = { $global };
}
res.set({ 'content-type': 'text/html; charset=utf-8' });
template.render(data, res);
};
}