-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
294 lines (281 loc) · 9.65 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
const debug = require('debug')('angular-expander')
var vm = require('vm');
var request = require('request');
var cheerio = require('cheerio');
var fs = require('fs');
var vm = require('vm');
const path = require('path');
/**
* Expand the given Angular template
*
* @param mainTemplate {String} the path of the Angular template to expand. eg: index.html. Relative to options.srcDir, if
* provided.
* @param {Object} [options]
* @param {Object} [options.scope] - The Angular-like $scope object to use when generating the template. This scope does
* not need to be complete: expressions using non-provided values of the scope will not be evaluated at generation time
* and will be kept for browser instantiation time
* @param {String} [options.viewTemplate] - Path of the Angular template to instantiate in lieu of the ng-view
* directive. Relative to options.srcDir, if provided.
* @param {String} [options.srcDir] - Source directory relative to which the paths of the main template, the
* view template and the included template files will be computed.
* @param {String} [options.baseUrl] - Base url relative to which the paths of the main template, the
* view template and the included template files will be computed. If provided, then templates are loaded as URLs
* and the srcDir option is not taken into account.
* @returns {Promise} HTML text of the expanded template
*/
exports.expand = function (mainTemplate, options) {
console.time('loadMainTemplate');
return load(options, mainTemplate)
.then(html => {
var $scope = options ? (options.scope || {}) : {};
var debugInfo = { path: mainTemplate, indent: 0 };
return instantiate(html, $scope, options, debugInfo);
})
.then(output => {
return output.replace(/\[\[(.*?)]]/g, function (match, $1) {
return "{{" + $1 + "}}";
});
});
};
function load(options, templatePath) {
return new Promise(function (resolve, reject) {
if (options && options.baseUrl) {
if (templatePath[0] == '/') {
templatePath = templatePath.substr(1);
}
var url = options.baseUrl + "/" + templatePath;
console.time(url);
request(url, function(error, response, body) {
if (error) {
reject(error);
} else {
resolve(body);
}
})
} else {
var file = templatePath;
if (options && options.srcDir) {
file = path.normalize(options.srcDir + "/" + templatePath);
}
console.time(file);
fs.readFile(file, 'utf8', function (error, body) {
if (error) {
reject(error);
} else {
resolve(body);
}
});
}
});
}
function shallowCopy(object) {
if (object instanceof Object) {
var clone = {};
for (var p in object) {
clone[p] = object[p];
}
return clone;
}
throw "only objects can be shallow cloned";
}
function instantiate(html, $scope, options, debugInfo) {
printStartDebug(debugInfo);
var promises = [];
var templateContext = vm.createContext(shallowCopy($scope));
var $ = cheerio.load(html);
var ngView = $("ng-view");
if (ngView.length > 0) {
if (options && options.viewTemplate) {
promises.push(load(options, options.viewTemplate)
.then(viewHtml => {
return instantiate(viewHtml, $scope, options, indent(debugInfo));
}).then(output => {
ngView.html(output);
}));
} else {
console.log("ng-view directive found but not option.templatePath was provided");
}
}
// ng-repeat
var repeats = $("*[ng-repeat]");
repeats.each(function (i, elem) {
var expr = $(this).attr('ng-repeat').trim();
try {
var result = parseRepeatExpression(expr);
if (!result) return;
var repeatContext = vm.createContext(shallowCopy(templateContext));
// y part of "x in y"
var collection = vm.runInContext(result.collectionExpr, repeatContext);
//var innerHtml = $(this).html();
// Remove the repeat body. Will be replaced by each instantiated item
var clone = $(this).clone();
clone.removeAttr("ng-repeat");
var parentClone = $("<noop></noop>");
parentClone.append(clone);
var outerHtml = parentClone.html();
var newChildren = [];
var repeatPromises = [];
const $this = $(this);
for (const key in collection) {
const itemContext = vm.createContext(shallowCopy(repeatContext));
// Iterator variable (not sure if this one is really necessary - todo check parseRepeatExpression
const keyInit = result.keyExpr + " = " + key;
vm.runInContext(keyInit, itemContext);
// x part of "x in y"
const valueInit = result.valueExpr + " = " + result.collectionExpr + "[" + result.keyExpr + "]";
vm.runInContext(valueInit, itemContext);
const indexInit = "$index = " + key;
vm.runInContext(indexInit, itemContext);
repeatPromises.push(instantiate(outerHtml, itemContext, options, { path: "repeat " + (result.valueExpr + " = " + result.collectionExpr + "[" + key + "]"), indent: debugInfo.indent + 1 })
.then(repeatHtml => {
var item = $(repeatHtml);
// Declare key, value and $index so that expressions that couldn't be evaluated server-side because the scope
// was not complete, can still be evaluated when run in the browser
// Add a [[ ]] around the expression that will be replaced with {{ }} at the end of the epxansion process
// This will avoid having the expression replaced by instantiate() when trying to replace {{ }} expressions
item.html("<span style='display: none'>[[" + keyInit + "; " + valueInit + "; " + indexInit + " ;\"\"]]</span>" + item.html());
newChildren[newChildren.length] = item;
}));
}
// All items have been added. Time to commit seppuku and rebirth as the list of instantiated items
promises.push(Promise.all(repeatPromises).then(value => {
$this.replaceWith(newChildren);
}));
} catch (exception) {
debug("Could not evaluate repeat expression" + exception + " - Skipping it.");
}
});
// ng-bind
var binds = $("*[ng-bind]");
binds.each(function (i, elem) {
var expr = $(this).attr("ng-bind");
try {
var bindHtmlValue = vm.runInContext(expr, templateContext);
if (bindHtmlValue) {
$(this).html(bindHtmlValue);
$(this).removeAttr("ng-bind");
}
} catch (exception) {
// Do nothing
debug("Doing nothing: " + exception);
}
});
// ng-bind-html
var bindHtmls = $("*[ng-bind-html]");
bindHtmls.each(function (i, elem) {
var expr = $(this).attr("ng-bind-html");
try {
var bindHtmlValue = vm.runInContext(expr, templateContext);
if (bindHtmlValue) {
$(this).html(bindHtmlValue);
$(this).removeAttr("ng-bind-html");
}
} catch (exception) {
// Do nothing
debug("Doing nothing: " + exception);
}
});
// ng-include
var includes = $("ng-include");
includes.each(function (i, elem) {
var src = $(this).attr("src");
if (src) {
var includePath = vm.runInContext(src, templateContext);
var idx = includePath.indexOf("?");
if (idx != -1) {
includePath = includePath.substr(0, idx);
}
var $this = $(this);
promises.push(load(options, includePath)
.then(includeHtml => {
return instantiate(includeHtml, $scope, options, { path: includePath, indent: debugInfo.indent + 1 });
})
.then(includeOutput => {
var newMe = $("<noop></noop>");
newMe.html(includeOutput);
// todo: make sure all attributes of the ng-include are copied to the noop tag...
var ngShow = $this.attr("ng-show");
if (ngShow) {
newMe.attr("ng-show", ngShow);
}
$this.replaceWith(newMe);
}));
}
});
// ng-include
var includes2 = $("*[ng-include]");
includes2.each(function (i, elem) {
var src = $(this).attr("ng-include");
var includePath = vm.runInContext(src, templateContext);
var idx = includePath.indexOf("?");
if (idx != -1) {
includePath = includePath.substr(0, idx);
}
var $this = $(this);
promises.push(load(options, includePath)
.then(includeHtml => {
return instantiate(includeHtml, $scope, options, {path: includePath, indent: debugInfo.indent + 1});
})
.then(includeOutput => {
$this.html(includeOutput);
$this.removeAttr("ng-include");
}));
});
return Promise.all(promises).then(value => {
var output = $.html()
.replace(/<%/g, "<%") // <%
.replace(/%>/g, "%>") // %>
.replace(/; i </g, "; i <") // ; i <
.replace(/"/g, '"') // "
.replace(/'/g, "'") // '
.replace(/ && /g, " && ") // &&
.replace(/{{(.*?)}}/g, function (match, expr) {
try {
var value = vm.runInContext(expr, templateContext);
if (value) {
return value;
} else {
return "{{" + expr + "}}"; // undefined, null, empty string => keep things as is
}
} catch (exception) {
debug("Expression cannot be interpreted against context. We leave it as is " + exception);
return "{{" + expr + "}}";
}
});
printEndDebug(debugInfo);
return output;
});
}
function parseRepeatExpression(expr) {
var matches = expr.match(/^(.*?) in ([^\s]*)(.*?)$/);
if (!matches) return false;
var keyValueExpr = matches[1].trim();
var collectionExpr = matches[2].trim();
var keyExpr, valueExpr, m1, m2;
if (m1 = keyValueExpr.match(/^\((\w+),\s?(\w+)\)$/)) { // (k,v)
keyExpr = m1[1], valueExpr = m1[2];
} else if (m2 = keyValueExpr.match(/^(\w+)$/)) {
valueExpr = m2[1];
keyExpr = 'i';
}
return {keyExpr: keyExpr, valueExpr: valueExpr, collectionExpr: collectionExpr};
}
function printStartDebug(debugInfo) {
debug(space(debugInfo.indent) + "template [ " + debugInfo.path);
}
function printEndDebug(debugInfo) {
debug(space(debugInfo.indent) + "]");
}
function indent(debugInfo) {
return {
indent: debugInfo.indent + 1,
path: debugInfo.path
}
}
function space(len) {
var str = "";
for (var i = 0; i < len; i++) {
str += " ";
}
return str;
}