-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.js
468 lines (387 loc) · 14.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
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
'use strict'
const vm = require('vm')
const { parser } = require('posthtml-parser')
const { render } = require('posthtml-render')
const getNextTag = require('./tags')
const parseLoopStatement = require('./loops')
const escapeRegexpString = require('./escape')
const makeLocalsBackup = require('./backup').make
const revertBackupedLocals = require('./backup').revert
const placeholders = require('./placeholders')
const scriptDataLocals = require('./locals')
const delimitersSettings = []
let conditionals, switches, loops, scopes, ignored, delimitersReplace, unescapeDelimitersReplace
/**
* @description Creates a set of local variables within the loop, and evaluates all nodes within the loop, returning their contents
*
* @method executeLoop
*
* @param {Array} params Parameters
* @param {String} p1 Parameter 1
* @param {String} p2 Parameter 2
* @param {Object} locals Locals
* @param {String} tree Tree
*
* @return {Function} walk Walks the tree and parses all locals within the loop
*/
function executeLoop (params, p1, p2, locals, tree) {
// two loop locals are allowed
// - for arrays it's the current value and the index
// - for objects, it's the value and the key
const scopes = locals
scopes[params[0]] = p1
if (params[1]) scopes[params[1]] = p2
return walk({ locals: scopes }, JSON.parse(tree))
}
/**
* @description Runs walk function with arbitrary set of local variables
*
* @method executeScope
*
* @param {Object} scope Scoped Locals
* @param {Object} locals Locals
* @param {Object} node Node
*
* @return {Function} walk Walks the tree and parses all locals in scope
*/
function executeScope (scope, locals, node) {
scope = Object.assign(locals, scope)
return walk({ locals: scope }, node.content)
}
/**
* @description Returns an object containing loop metadata
*
* @method getLoopMeta
*
* @param {Integer|Object} index Current iteration
* @param {Object} target Object being iterated
*
* @return {Object} Object containing loop metadata
*/
function getLoopMeta (index, target) {
index = Array.isArray(target) ? index : Object.keys(target).indexOf(index)
const arr = Array.isArray(target) ? target : Object.keys(target)
return {
index: index,
remaining: arr.length - index - 1,
first: arr.indexOf(arr[index]) === 0,
last: index + 1 === arr.length,
length: arr.length
}
}
/**
* @author Jeff Escalante Denis (@jescalan),
* Denis Malinochkin (mrmlnc),
* Michael Ciniawsky (@michael-ciniawsky)
* @description Expressions Plugin for PostHTML
* @license MIT
*
* @module posthtml-expressions
* @version 1.0.0
*
* @requires vm
*
* @requires ./tags
* @requires ./loops
* @requires ./escape
* @requires ./backup
* @requires ./placeholders
*
* @param {Object} options Options
*
* @return {Object} tree PostHTML Tree
*/
module.exports = function postHTMLExpressions (options) {
// set default options
options = Object.assign({
locals: {},
delimiters: ['{{', '}}'],
unescapeDelimiters: ['{{{', '}}}'],
conditionalTags: ['if', 'elseif', 'else'],
switchTags: ['switch', 'case', 'default'],
loopTags: ['each'],
scopeTags: ['scope'],
ignoredTag: 'raw',
strictMode: true,
localsAttr: 'locals',
removeScriptLocals: false
}, options)
// Set tags
loops = options.loopTags
scopes = options.scopeTags
conditionals = options.conditionalTags
switches = options.switchTags
ignored = options.ignoredTag
// Define regex to search for placeholders
let before = escapeRegexpString(options.delimiters[0])
let firstChar = escapeRegexpString(options.delimiters[0][0])
let after = escapeRegexpString(options.delimiters[1])
const delimitersRegexp = new RegExp(`(?<!@${firstChar}?)${before}(.+?)${after}`, 'g')
before = escapeRegexpString(options.unescapeDelimiters[0])
firstChar = escapeRegexpString(options.unescapeDelimiters[0][0])
after = escapeRegexpString(options.unescapeDelimiters[1])
const unescapeDelimitersRegexp = new RegExp(`(?<!@${firstChar}?)${before}(.+?)${after}`, 'g')
// Create an array of delimiters
const delimiters = [
{ text: options.delimiters, regexp: delimitersRegexp, escape: true },
{ text: options.unescapeDelimiters, regexp: unescapeDelimitersRegexp, escape: false }
]
/**
* We arrange delimiter search order by length, since it's possible that one
* delimiter could 'contain' another delimiter, like `{{{` contains `{{`.
* But if we sort by length, the longer one will always match first.
*/
if (options.delimiters.join().length > options.unescapeDelimiters.join().length) {
delimitersSettings[0] = delimiters[0]
delimitersSettings[1] = delimiters[1]
} else {
delimitersSettings[0] = delimiters[1]
delimitersSettings[1] = delimiters[0]
}
delimitersReplace = new RegExp(`@${escapeRegexpString(delimitersSettings[1].text[0])}`, 'g')
unescapeDelimitersReplace = new RegExp(`@${escapeRegexpString(delimitersSettings[0].text[0])}`, 'g')
// Kick off the parsing
return function (tree) {
const { locals } = scriptDataLocals(tree, options)
return normalizeTree(
clearRawTag(
walk(
{
locals: { ...options.locals, ...locals },
strictMode: options.strictMode,
missingLocal: options.missingLocal
}, tree)
), tree.options)
}
}
function walk (opts, nodes) {
// The context in which expressions are evaluated
const ctx = vm.createContext(opts.locals)
/**
* After a conditional has been resolved, we remove the conditional elements
* from the tree. This variable determines how many to skip afterwards.
* */
let skip
// Loop through each node in the tree
return [].concat(nodes).reduce((m, node, i) => {
// If we're skipping this node, return immediately
if (skip) { skip--; return m }
// Don't parse `ignoredTag` from options
if (node.tag === ignored) {
m.push(node)
return m
}
// If we have a string, match and replace it
if (typeof node === 'string') {
node = placeholders(node, ctx, delimitersSettings, opts)
node = node
.replace(unescapeDelimitersReplace, delimitersSettings[0].text[0])
.replace(delimitersReplace, delimitersSettings[1].text[0])
m.push(node)
return m
}
// If not, we have an object, so we need to run the attributes and contents
if (node.attrs) {
for (const key in node.attrs) {
if (typeof node.attrs[key] === 'string') {
node.attrs[key] = placeholders(node.attrs[key], ctx, delimitersSettings, opts)
node.attrs[key] = node.attrs[key]
.replace(unescapeDelimitersReplace, delimitersSettings[0].text[0])
.replace(delimitersReplace, delimitersSettings[1].text[0])
}
// If `key` is a parameter
const _key = placeholders(key, ctx, delimitersSettings, opts)
if (key !== _key) {
node.attrs[_key] = node.attrs[key]
delete node.attrs[key]
}
}
}
// If the node has content, recurse (unless it's a loop, which we handle later)
if (node.content && loops.includes(node.tag) === false && node.tag !== scopes[0]) {
node.content = walk(opts, node.content)
}
/**
* If we have an element matching `<if>`, we've got a conditional; this
* comes after the recursion, to correctly handle nested loops.
* */
if (node.tag === conditionals[0]) {
// Throw an error if it's missing the "condition" attribute
if (!(node.attrs && node.attrs.condition)) {
throw new Error(`the "${conditionals[0]}" tag must have a "condition" attribute`)
}
// Calculate the first path of condition expression
let expressionIndex = 1
let expression = `if (${node.attrs.condition}) { 0 } `
const branches = [node.content]
/**
* Move through the nodes and collect all others that
* are part of the same conditional statement
* */
let computedNextTag = getNextTag(nodes, ++i)
let current = computedNextTag[0]
let nextTag = computedNextTag[1]
while (conditionals.slice(1).indexOf(nextTag.tag) > -1) {
let statement = nextTag.tag
let condition = ''
/**
* Ensure the "else" tag is represented in our little AST as 'else',
* even if a custom tag was used.
* */
if (nextTag.tag === conditionals[2]) statement = 'else'
// Add the condition if it's an else if
if (nextTag.tag === conditionals[1]) {
// Throw an error if an "else if" is missing a condition
if (!(nextTag.attrs && nextTag.attrs.condition)) {
throw new Error(`the "${conditionals[1]}" tag must have a "condition" attribute`)
}
condition = nextTag.attrs.condition
// While we're here, expand "elseif" to "else if"
statement = 'else if'
}
branches.push(nextTag.content)
// Calculate next part of condition expression
expression += statement + (condition ? ` (${condition})` : '') + ` { ${expressionIndex++} } `
computedNextTag = getNextTag(nodes, ++current)
current = computedNextTag[0]
nextTag = computedNextTag[1]
}
// Evaluate the expression and get the winning condition branch
let branch
try {
branch = branches[vm.runInContext(expression, ctx)]
} catch (error) {
if (opts.strictMode) {
throw new SyntaxError(error)
}
}
/**
* Remove all of the conditional tags from the tree.
* We subtract 1 from i as it's incremented from the initial if statement
* in order to get the next node.
* */
skip = current - i
// Recursive evaluate of condition branch
if (branch) Array.prototype.push.apply(m, walk(opts, branch))
return m
}
// Switch tag
if (node.tag === switches[0]) {
// Throw an error if it's missing the "expression" attribute
if (!(node.attrs && node.attrs.expression)) {
throw new Error(`the "${switches[0]}" tag must have a "expression" attribute`)
}
// Calculate the first path of condition expression
let expressionIndex = 0
let expression = `switch(${node.attrs.expression}) {`
const branches = []
for (let i = 0; i < node.content.length; i++) {
const currentNode = node.content[i]
if (typeof currentNode === 'string') {
continue
}
if (currentNode.tag === switches[1]) {
// Throw an error if it's missing the "n" attribute
if (!(currentNode.attrs && currentNode.attrs.n)) {
throw new Error(`the "${switches[1]}" tag must have a "n" attribute`)
}
expression += `case ${currentNode.attrs.n}: {${expressionIndex++}}; break; `
} else if (currentNode.tag === switches[2]) {
expression += `default: {${expressionIndex++}}`
} else {
throw new Error(`the "${switches[0]}" tag can contain only "${switches[1]}" tags and one "${switches[2]}" tag`)
}
branches.push(currentNode)
}
expression += '}'
// Evaluate the expression, get the winning switch branch
const branch = branches[vm.runInContext(expression, ctx)]
// Recursive evaluate of branch
Array.prototype.push.apply(m, walk(opts, branch.content))
return m
}
// Parse loops
if (loops.includes(node.tag)) {
// Handle syntax error
if (!(node.attrs && node.attrs.loop)) {
throw new Error(`the "${node.tag}" tag must have a "loop" attribute`)
}
// Parse the "loop" param
const loopParams = parseLoopStatement(node.attrs.loop)
let target = {}
try {
target = vm.runInContext(loopParams.expression, ctx)
} catch (error) {
if (opts.strictMode) {
throw new SyntaxError(error)
}
}
// Handle additional syntax errors
if (typeof target !== 'object' && opts.strictMode) {
throw new Error('You must provide an array or object to loop through')
}
if (loopParams.keys.length < 1 || loopParams.keys[0] === '') {
throw new Error('You must provide at least one loop argument')
}
// Converts nodes to a string. These nodes will be changed within the loop
const treeString = JSON.stringify(node.content)
const keys = loopParams.keys
// Creates a copy of the keys that will be changed within the loop
const localsBackup = makeLocalsBackup(keys, opts.locals)
// Run the loop, different types of loops for arrays and objects
if (Array.isArray(target)) {
for (let index = 0; index < target.length; index++) {
opts.locals.loop = getLoopMeta(index, target)
m.push(executeLoop(keys, target[index], index, opts.locals, treeString))
}
} else {
for (const key in target) {
opts.locals.loop = getLoopMeta(key, target)
m.push(executeLoop(keys, target[key], key, opts.locals, treeString))
}
}
// Returns the original keys values that was changed within the loop
opts.locals = revertBackupedLocals(keys, opts.locals, localsBackup)
// Return directly out of the loop, which will skip the "each" tag
return m
}
// Parse scopes
if (node.tag === scopes[0]) {
// Handle syntax error
if (!node.attrs || !node.attrs.with) {
throw new Error(`the "${scopes[0]}" tag must have a "with" attribute`)
}
const target = vm.runInContext(node.attrs.with, ctx)
// Handle additional syntax errors
if (typeof target !== 'object' || Array.isArray(target)) {
throw new Error('You must provide an object to make scope')
}
const keys = Object.keys(target)
// Creates a copy of the keys that will be changed within the loop
const localsBackup = makeLocalsBackup(keys, opts.locals)
m.push(executeScope(target, opts.locals, node))
// Returns the original keys values that was changed within the loop
opts.locals = revertBackupedLocals(keys, opts.locals, localsBackup)
// Return directly out of the loop, which will skip the "scope" tag
return m
}
// Return the node
m.push(node)
return m
}, [])
}
function clearRawTag (tree) {
return tree.reduce((m, node) => {
if (node.content) {
node.content = clearRawTag(node.content)
}
if (node.tag === ignored) {
node.tag = false
}
m.push(node)
return m
}, [])
}
function normalizeTree (tree, options) {
return parser(render(tree), options)
}