-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.js
150 lines (129 loc) · 2.75 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
/**
* Expose `render()`.`
*/
exports = module.exports = render;
/**
* Expose `compile()`.
*/
exports.compile = compile;
/**
* Render the given mustache `str` with `obj`.
*
* @param {String} str
* @param {Object} obj
* @return {String}
* @api public
*/
function render(str, obj) {
obj = obj || {};
var fn = compile(str);
return fn(obj);
}
/**
* Compile the given `str` to a `Function`.
*
* @param {String} str
* @return {Function}
* @api public
*/
function compile(str) {
var js = [];
var toks = parse(str);
var tok;
for (var i = 0; i < toks.length; ++i) {
tok = toks[i];
if (i % 2 == 0) {
js.push('"' + tok.replace(/"/g, '\\"') + '"');
} else {
switch (tok[0]) {
case '/':
tok = tok.slice(1);
js.push(' }) + ');
break;
case '^':
tok = tok.slice(1);
assertProperty(tok);
js.push(' + section(obj, "' + tok + '", true, function(obj){ return ');
break;
case '#':
tok = tok.slice(1);
assertProperty(tok);
js.push(' + section(obj, "' + tok + '", false, function(obj){ return ');
break;
case '!':
tok = tok.slice(1);
assertProperty(tok);
js.push(' + obj.' + tok + ' + ');
break;
default:
assertProperty(tok);
js.push(' + escape(obj.' + tok + ') + ');
}
}
}
js = '\n'
+ indent(escape.toString()) + ';\n\n'
+ indent(section.toString()) + ';\n\n'
+ ' return ' + js.join('').replace(/\n/g, '\\n');
return new Function('obj', js);
}
/**
* Assert that `prop` is a valid property.
*
* @param {String} prop
* @api private
*/
function assertProperty(prop) {
if (!prop.match(/^[\w.]+$/)) throw new Error('invalid property "' + prop + '"');
}
/**
* Parse `str`.
*
* @param {String} str
* @return {Array}
* @api private
*/
function parse(str) {
return str.split(/\{\{|\}\}/);
}
/**
* Indent `str`.
*
* @param {String} str
* @return {String}
* @api private
*/
function indent(str) {
return str.replace(/^/gm, ' ');
}
/**
* Section handler.
*
* @param {Object} context obj
* @param {String} prop
* @param {Function} thunk
* @param {Boolean} negate
* @api private
*/
function section(obj, prop, negate, thunk) {
var val = obj[prop];
if (Array.isArray(val)) return val.map(thunk).join('');
if ('function' == typeof val) return val.call(obj, thunk(obj));
if (negate) val = !val;
if (val) return thunk(obj);
return '';
}
/**
* Escape the given `html`.
*
* @param {String} html
* @return {String}
* @api private
*/
function escape(html) {
return String(html)
.replace(/&/g, '&')
.replace(/"/g, '"')
.replace(/</g, '<')
.replace(/>/g, '>');
}