-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
109 lines (96 loc) · 2.51 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
const EMPTY_OBJECT = {};
function isTag(elem){
return elem.nodeType === 1;
}
function getChildren(elem){
return elem.childNodes ? Array.prototype.slice.call(elem.childNodes, 0) : [];
}
function getParent(elem){
return elem.parentNode;
}
function removeSubsets(nodes) {
var idx = nodes.length, node, ancestor, replace;
// Check if each node (or one of its ancestors) is already contained in the
// array.
while(--idx > -1) {
node = ancestor = nodes[idx];
// Temporarily remove the node under consideration
nodes[idx] = null;
replace = true;
while(ancestor) {
if(nodes.indexOf(ancestor) > -1) {
replace = false;
nodes.splice(idx, 1);
break;
}
ancestor = getParent(ancestor)
}
// If the node has been found to be unique, re-insert it.
if(replace) {
nodes[idx] = node;
}
}
return nodes;
}
var adapter = {
isTag: isTag,
existsOne: function(test, elems){
return elems.some(function(elem){
return isTag(elem) ?
test(elem) || adapter.existsOne(test, getChildren(elem)) :
false;
});
},
getSiblings: function(elem){
var parent = getParent(elem);
return parent ? getChildren(parent) : [elem];
},
getChildren: getChildren,
getParent: getParent,
getAttributeValue: function(elem, name){
if(elem.attributes && name in elem.attributes){
var attr = elem.attributes[name];
return typeof attr === "string" ? attr : attr.value;
} else if (name === "class" && elem.classList) {
return Array.from(elem.classList).join(" ");
}
},
hasAttrib: function(elem, name){
return name in (elem.attributes || EMPTY_OBJECT);
},
removeSubsets: removeSubsets,
getName: function(elem){
return (elem.tagName || "").toLowerCase();
},
findOne: function findOne(test, arr){
var elem = null;
for(var i = 0, l = arr.length; i < l && !elem; i++){
if(test(arr[i])){
elem = arr[i];
} else {
var childs = getChildren(arr[i]);
if(childs && childs.length > 0){
elem = findOne(test, childs);
}
}
}
return elem;
},
findAll: function findAll(test, elems){
var result = [];
for(var i = 0, j = elems.length; i < j; i++){
if(!isTag(elems[i])) continue;
if(test(elems[i])) result.push(elems[i]);
var childs = getChildren(elems[i]);
if(childs) result = result.concat(findAll(test, childs));
}
return result;
},
getText: function getText(elem) {
if(Array.isArray(elem)) return elem.map(getText).join("");
if(isTag(elem)) return getText(getChildren(elem));
if(elem.nodeType === 3) return elem.nodeValue;
return "";
}
};
module.exports = adapter;