forked from JonDum/jshtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
157 lines (124 loc) · 3.66 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
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
/*!
* jshtml
* Copyright(c) 2011 Elmer Bulthuis <[email protected]>
* MIT Licensed
*/
var fs = require('fs');
var assert = require('assert');
var JsHtmlParser = require('./lib/jshtml/Parser');
var tools = require('./lib/tools');
var sjs = require('sjs');
var cache = {};
function compile(template, options) {
return function(locals) {
var buffer = '';
var atEnd = false;
function write() {
var argumentCount = arguments.length;
for(var argumentIndex = 0; argumentIndex < argumentCount; argumentIndex++){
var argument = arguments[argumentIndex];
buffer += tools.str(argument);
}
}
function end() {
write.apply(this, arguments);
atEnd = true;
}
compileAsync(template, options).call(this, write, end, locals);
assert.ok(atEnd, 'not ended');
return buffer;
}
}
function render(template, options) {
var options = tools.extend({}, options);
var fn = options.filename
? (cache[options.filename] || (cache[options.filename] = compile(template, options)))
: compile(template, options)
;
return fn.call(options.scope, options.locals || {});
}
var cacheAsync = {};
function compileAsync(template, options) {
var fnSrc = '';
var parser = new JsHtmlParser(function(data) {
//console.log(data);
fnSrc += data;
}, options);
parser.end(template);
if(options.with) {
fnSrc = '{' + fnSrc + '}';
var contextList = Array.isArray()
? options.with
: [options.with]
;
contextList.forEach(function(context){
fnSrc = 'with(' + context + ')' + fnSrc;
});
}
console.log(fnSrc);
var fn = new Function('write', 'end', 'tag', 'writePartial', 'writeBody', 'tools', 'locals', sjs.parse(fnSrc, options));
return function(writeCallback, endCallback, locals) {
function tag(tagName) {
var tagAttributeSetList = [];
var tagContentList = [];
var argumentCount = arguments.length;
var hasContent = false;
for(var argumentIndex = 1; argumentIndex < argumentCount; argumentIndex++){
var argument = arguments[argumentIndex];
switch(typeof argument) {
case 'object':
tagAttributeSetList.push(argument);
break;
default:
hasContent = true;
tagContentList.push(argument);
}
}
writeCallback.call(this, '<', tagName);
tagAttributeSetList.forEach(function(tagAttributeSet) {
writeCallback.call(this, ' ', tools.htmlAttributeEncode(tagAttributeSet));
});
if(hasContent) {
writeCallback.call(this, '>');
tagContentList.forEach(function(tagContent) {
switch(typeof tagContent) {
case 'function':
tagContent();
break;
default:
writeCallback.call(this, tools.htmlLiteralEncode(tagContent));
}
});
writeCallback.call(this, '</', tagName, '>');
}
else{
writeCallback.call(this, ' />');
}
}
function writePartial() {
writeCallback.call(this, locals.partial.apply(this, arguments));
}
function writeBody() {
writeCallback.call(this, locals.body);
}
fn.call(this, writeCallback, endCallback, tag, writePartial, writeBody, tools, locals);
};
}
function renderAsync(writeCallback, endCallback, template, options) {
var options = tools.extend({}, options);
var fn = options.filename
? (cacheAsync[options.filename] || (cacheAsync[options.filename] = compileAsync(template, options)))
: compileAsync(template, options)
;
fn.call(options.scope, writeCallback, endCallback, options.locals || {});
}
//require
require.extensions['.jshtml'] = function(module, fileName) {
var template = fs.readFileSync(fileName, 'utf-8');
module.exports = compileAsync(template, {});
}
//exports
exports.compileAsync = compileAsync;
exports.renderAsync = renderAsync;
exports.compile = compile;
exports.render = render;