forked from alibaba/rax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
230 lines (196 loc) · 5.32 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
/**
* Server driver
**/
const ID = 'id';
const STYLE = 'style';
const CHILDREN = 'children';
const DANGEROUSLY_SET_INNER_HTML = 'dangerouslySetInnerHTML';
const EVENT_PREFIX_REGEXP = /^on[A-Z]/;
const ELEMENT_NODE = 1;
const TEXT_NODE = 3;
const COMMENT_NODE = 8;
const Driver = {
// Internal state
nodeMaps: {},
getElementById(id) {
return this.nodeMaps[id];
},
createBody() {
return {
nodeType: ELEMENT_NODE,
tagName: 'BODY',
attributes: {},
style: {},
eventListeners: {},
childNodes: [],
parentNode: null
};
},
createComment(content) {
return {
nodeType: COMMENT_NODE,
data: content,
parentNode: null
};
},
createEmpty() {
return this.createComment(' empty ');
},
createText(text) {
return {
nodeType: TEXT_NODE,
data: text,
parentNode: null
};
},
updateText(node, text) {
node.data = text;
},
createElement(type, props) {
let node = {
nodeType: ELEMENT_NODE,
tagName: type.toUpperCase(),
attributes: {},
style: props.style || {},
eventListeners: {},
childNodes: [],
parentNode: null
};
this.setNativeProps(node, props, true);
return node;
},
appendChild(node, parent) {
parent.childNodes.push(node);
node.parentNode = parent;
},
removeChild(node, parent) {
parent = parent || node.parentNode;
let id = node.attributes && node.attributes[ID];
if (id != null) {
this.nodeMaps[id] = null;
}
if (node.parentNode) {
let idx = node.parentNode.childNodes.indexOf(node);
node.parentNode.childNodes.splice(idx, 1);
node.parentNode = null;
}
},
replaceChild(newChild, oldChild, parent) {
parent = parent || oldChild.parentNode;
let previousSibling = this.previousSibling(oldChild);
let nextSibling = this.nextSibling(oldChild);
this.removeChild(oldChild, parent);
if (previousSibling) {
this.insertAfter(newChild, previousSibling, parent);
} else if (nextSibling) {
this.insertBefore(newChild, nextSibling, parent);
} else {
this.appendChild(newChild, parent);
}
},
insertAfter(node, after, parent) {
parent = parent || after.parentNode;
let nodeIdx = parent.childNodes.indexOf(node);
if (nodeIdx !== -1) {
parent.childNodes.splice(nodeIdx, 1);
}
let idx = parent.childNodes.indexOf(after);
if (idx === parent.childNodes.length - 1) {
parent.childNodes.push(node);
} else {
parent.childNodes.splice(idx + 1, 0, node);
}
node.parentNode = parent;
},
insertBefore(node, before, parent) {
parent = parent || before.parentNode;
let nodeIdx = parent.childNodes.indexOf(node);
if (nodeIdx !== -1) {
parent.childNodes.splice(nodeIdx, 1);
}
let idx = parent.childNodes.indexOf(before);
parent.childNodes.splice(idx, 0, node);
node.parentNode = parent;
},
nextSibling(node) {
let parentNode = node.parentNode;
if (parentNode) {
let idx = parentNode.childNodes.indexOf(node);
return parentNode.childNodes[idx + 1];
}
},
previousSibling(node) {
let parentNode = node.parentNode;
if (parentNode) {
let idx = parentNode.childNodes.indexOf(node);
return parentNode.childNodes[idx - 1];
}
},
addEventListener(node, eventName, eventHandler) {
node.eventListeners[eventName] = eventHandler;
},
removeEventListener(node, eventName, eventHandler) {
delete node.eventListeners[eventName];
},
removeAttribute(node, propKey, propValue) {
if (propKey === 'className') {
propKey = 'class';
}
if (propKey == ID) {
this.nodeMaps[propValue] = null;
}
if (node.tagName === 'INPUT' &&
( propKey == 'checked' && (node.attributes.type === 'checkbox' || node.attributes.type === 'radio')
|| propKey == 'value')) {
node.attributes[propKey] = null;
} else if (propKey === DANGEROUSLY_SET_INNER_HTML) {
node.__html = null;
} else {
node.attributes[propKey] = null;
}
},
setAttribute(node, propKey, propValue) {
if (propKey === 'className') {
propKey = 'class';
}
if (propKey == ID) {
this.nodeMaps[propValue] = node;
}
if (node.tagName === 'INPUT' &&
( propKey == 'checked' && (node.attributes.type === 'checkbox' || node.attributes.type === 'radio')
|| propKey == 'value')) {
node.attributes[propKey] = propValue;
} else if (propKey === DANGEROUSLY_SET_INNER_HTML) {
node.__html = propValue.__html;
} else if (propValue != null) {
node.attributes[propKey] = propValue;
}
},
setStyle(node, style) {
for (let key in style) {
node.style[key] = style[key];
}
},
setNativeProps(node, props, shouldIgnoreStyleProp) {
for (let prop in props) {
let value = props[prop];
if (prop === CHILDREN) {
continue;
}
if (value != null) {
if (prop === STYLE) {
if (shouldIgnoreStyleProp) {
continue;
}
this.setStyle(node, value);
} else if (EVENT_PREFIX_REGEXP.test(prop)) {
let eventName = prop.slice(2).toLowerCase();
this.addEventListener(node, eventName, value);
} else {
this.setAttribute(node, prop, value);
}
}
}
}
};
export default Driver;