-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.js
443 lines (355 loc) · 8.98 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
module.exports = language
var tokenizer = require('./tokenizer')
function language(lookups, matchComparison) {
return function(selector) {
return parse(selector, remap(lookups),
matchComparison || caseSensitiveComparison)
}
}
function remap(opts) {
for(var key in opts) if(opt_okay(opts, key)) {
opts[key] = Function(
'return function(node, attr) { return node.' + opts[key] + ' }'
)
opts[key] = opts[key]()
}
return opts
}
function opt_okay(opts, key) {
return opts.hasOwnProperty(key) && typeof opts[key] === 'string'
}
function parse(selector, options, matchComparison) {
var stream = tokenizer()
, default_subj = true
, selectors = [[]]
, traversal
, bits
bits = selectors[0]
traversal = {
'': any_parents
, '>': direct_parent
, '+': direct_sibling
, '~': any_sibling
}
stream
.on('data', group)
.end(selector)
function group(token) {
var crnt
if(token.type === 'comma') {
selectors.unshift(bits = [])
return
}
if(token.type === 'op' || token.type === 'any-child') {
bits.unshift(traversal[token.data])
bits.unshift(check())
return
}
bits[0] = bits[0] || check()
crnt = bits[0]
if(token.type === '!') {
crnt.subject =
selectors[0].subject = true
return
}
crnt.push(
token.type === 'class' ? listContains(token.type, token.data) :
token.type === 'attr' ? attr(token) :
token.type === ':' || token.type === '::' ? pseudo(token) :
token.type === '*' ? Boolean :
matches(token.type, token.data, matchComparison)
)
}
return selector_fn
function selector_fn(node, as_boolean) {
var current
, length
, orig
, subj
, set
orig = node
set = []
for(var i = 0, len = selectors.length; i < len; ++i) {
bits = selectors[i]
current = entry
length = bits.length
node = orig
subj = []
for(var j = 0; j < length; j += 2) {
node = current(node, bits[j], subj)
if(!node) {
break
}
current = bits[j + 1]
}
if(j >= length) {
if(as_boolean) {
return true
}
add(!bits.subject ? [orig] : subj)
}
}
if(as_boolean) {
return false
}
return !set.length ? false :
set.length === 1 ? set[0] :
set
function add(items) {
var next
while(items.length) {
next = items.shift()
if(set.indexOf(next) === -1) {
set.push(next)
}
}
}
}
function check() {
_check.bits = []
_check.subject = false
_check.push = function(token) {
_check.bits.push(token)
}
return _check
function _check(node, subj) {
for(var i = 0, len = _check.bits.length; i < len; ++i) {
if(!_check.bits[i](node)) {
return false
}
}
if(_check.subject) {
subj.push(node)
}
return true
}
}
function listContains(type, data) {
return function(node) {
var val = options[type](node)
val =
Array.isArray(val) ? val :
val ? val.toString().split(/\s+/) :
[]
return val.indexOf(data) >= 0
}
}
function attr(token) {
return token.data.lhs ?
valid_attr(
options.attr
, token.data.lhs
, token.data.cmp
, token.data.rhs
) :
valid_attr(options.attr, token.data)
}
function matches(type, data, matchComparison) {
return function(node) {
return matchComparison(type, options[type](node), data);
}
}
function any_parents(node, next, subj) {
do {
node = options.parent(node)
} while(node && !next(node, subj))
return node
}
function direct_parent(node, next, subj) {
node = options.parent(node)
return node && next(node, subj) ? node : null
}
function direct_sibling(node, next, subj) {
var parent = options.parent(node)
, idx = 0
, children
children = options.children(parent)
for(var i = 0, len = children.length; i < len; ++i) {
if(children[i] === node) {
idx = i
break
}
}
return children[idx - 1] && next(children[idx - 1], subj) ?
children[idx - 1] :
null
}
function any_sibling(node, next, subj) {
var parent = options.parent(node)
, children
children = options.children(parent)
for(var i = 0, len = children.length; i < len; ++i) {
if(children[i] === node) {
return null
}
if(next(children[i], subj)) {
return children[i]
}
}
return null
}
function pseudo(token) {
return valid_pseudo(options, token.data, matchComparison)
}
}
function entry(node, next, subj) {
return next(node, subj) ? node : null
}
function valid_pseudo(options, match, matchComparison) {
switch(match) {
case 'empty': return valid_empty(options)
case 'first-child': return valid_first_child(options)
case 'last-child': return valid_last_child(options)
case 'root': return valid_root(options)
}
if(match.indexOf('contains') === 0) {
return valid_contains(options, match.slice(9, -1))
}
if(match.indexOf('any') === 0) {
return valid_any_match(options, match.slice(4, -1), matchComparison)
}
if(match.indexOf('not') === 0) {
return valid_not_match(options, match.slice(4, -1), matchComparison)
}
if(match.indexOf('nth-child') === 0) {
return valid_nth_child(options, match.slice(10, -1))
}
return function() {
return false
}
}
function valid_not_match(options, selector, matchComparison) {
var fn = parse(selector, options, matchComparison)
return not_function
function not_function(node) {
return !fn(node, true)
}
}
function valid_any_match(options, selector, matchComparison) {
var fn = parse(selector, options, matchComparison)
return fn
}
function valid_attr(fn, lhs, cmp, rhs) {
return function(node) {
var attr = fn(node, lhs)
if(!cmp) {
return !!attr
}
if(cmp.length === 1) {
return attr == rhs
}
if(attr === void 0 || attr === null) {
return false
}
return checkattr[cmp.charAt(0)](attr, rhs)
}
}
function valid_first_child(options) {
return function(node) {
return options.children(options.parent(node))[0] === node
}
}
function valid_last_child(options) {
return function(node) {
var children = options.children(options.parent(node))
return children[children.length - 1] === node
}
}
function valid_empty(options) {
return function(node) {
return options.children(node).length === 0
}
}
function valid_root(options) {
return function(node) {
return !options.parent(node)
}
}
function valid_contains(options, contents) {
return function(node) {
return options.contents(node).indexOf(contents) !== -1
}
}
function valid_nth_child(options, nth) {
var test = function(){ return false }
if (nth == 'odd') {
nth = '2n+1'
} else if (nth == 'even') {
nth = '2n'
}
var regexp = /( ?([-|\+])?(\d*)n)? ?((\+|-)? ?(\d+))? ?/
var matches = nth.match(regexp)
if (matches) {
var growth = 0;
if (matches[1]) {
var positiveGrowth = (matches[2] != '-')
growth = parseInt(matches[3] == '' ? 1 : matches[3])
growth = growth * (positiveGrowth ? 1 : -1)
}
var offset = 0
if (matches[4]) {
offset = parseInt(matches[6])
var positiveOffset = (matches[5] != '-')
offset = offset * (positiveOffset ? 1 : -1)
}
if (growth == 0) {
if (offset != 0) {
test = function(children, node) {
return children[offset - 1] === node
}
}
} else {
test = function(children, node) {
var validPositions = []
var len = children.length
for (var position=1; position <= len; position++) {
var divisible = ((position - offset) % growth) == 0;
if (divisible) {
if (growth > 0) {
validPositions.push(position);
} else {
if ((position - offset) / growth >= 0) {
validPositions.push(position);
}
}
}
}
for(var i=0; i < validPositions.length; i++) {
if (children[validPositions[i] - 1] === node) {
return true
}
}
return false
}
}
}
return function(node) {
var children = options.children(options.parent(node))
return test(children, node)
}
}
var checkattr = {
'$': check_end
, '^': check_beg
, '*': check_any
, '~': check_spc
, '|': check_dsh
}
function check_end(l, r) {
return l.slice(l.length - r.length) === r
}
function check_beg(l, r) {
return l.slice(0, r.length) === r
}
function check_any(l, r) {
return l.indexOf(r) > -1
}
function check_spc(l, r) {
return l.split(/\s+/).indexOf(r) > -1
}
function check_dsh(l, r) {
return l.split('-').indexOf(r) > -1
}
function caseSensitiveComparison(type, pattern, data) {
return pattern === data;
}