-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
216 lines (190 loc) · 4.92 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
import React, { Component } from 'react';
export default class WebComponent extends Component {
get value () {
return this.node ? this.node.value : null;
}
shouldComponentUpdate (props) {
const changed = {};
Object.keys(props).forEach((key) => {
if (typeof props[key] !== 'function' && !isEqual(props[key], this.props[key], props.deep)) {
changed[key] = props[key];
}
});
if (Object.keys(changed).length) {
setTimeout(() => {
this.update(changed);
}, 1);
}
return false;
}
componentWillUnmount () {
this.removeListeners();
if (this.props.onUnmount) {
this.props.onUnmount(this.node);
}
}
removeListeners () {
if (this.listeners) {
this.listeners.forEach((fn) => {
fn();
});
}
}
connect (node) {
if (!node) {
return;
}
this.node = node;
this.removeListeners();
this.listeners = [];
Object.keys(this.props).forEach((key) => {
if (this.props[key] === null) {
return;
}
if (typeof this.props[key] === 'function') {
const eventName = toEventName(key);
if (eventName) {
this.node.addEventListener(eventName, this.props[key]);
this.listeners.push(() => {
this.node.removeEventListener(eventName, this.props[key]);
});
} else {
this.node[key] = this.props[key];
}
} else if (typeof this.props[key] === 'object' && key !== 'children') {
this.node[key] = this.props[key];
}
});
}
update (props) {
// update objects before properties
// ergo, we want to set options before value
Object.keys(props).forEach((key) => {
if (typeof props[key] === 'object') {
this.node[key] = props[key];
}
});
Object.keys(props).forEach((key) => {
if (typeof props[key] !== 'function' && typeof props[key] !== 'object') {
this.node[key] = props[key];
}
});
}
render () {
const props = this.props;
const attributes = {
ref: (node) => {
this.connect(node);
},
class: props.className
};
Object.keys(props).forEach((key) => {
if (typeof props[key] !== 'function' && typeof props[key] !== 'object' && key !== 'children') {
attributes[key] = props[key];
}
});
return React.createElement(this.props.component, attributes, props.children);
}
}
function toEventName (word) {
const onReg = /^on/;
if (!onReg.test(word)) {
return null;
}
return word.replace(onReg, '').replace( /([A-Z])/g, ' $1').trim().split(' ').join('-').toLowerCase();
}
function isEqual(a, b, deep) {
const typeA = getType(a);
const typeB = getType(b);
if (typeA !== typeB) {
return false;
}
if (typeA === 'array') {
if (deep) {
return equal(a, b);
}
return a.length === b.length;
}
if (typeA === 'object') {
if (deep) {
return equal(a, b);
}
return Object.keys(a).length === Object.keys(b).length;
}
return equal(a, b);
}
function equal (a, b) {
const typeA = getType(a);
const typeB = getType(b);
if (typeA !== typeB) {
return false;
}
const type = typeA;
if (/number|string|boolean/.test(type)){
return a === b;
}
if (type === 'date') {
return a.getTime() === b.getTime();
}
if (type === 'nan') {
return true;
}
if (type === 'array') {
return a.length === b.length && a.every((item, i) => {
return equal(item, b[i]);
});
}
if (type === 'object' || type === 'map' || type === 'set') {
return Object.keys(a).every((key) => {
return equal(a[key], b[key]);
})
}
return a === b;
}
function getType (item) {
if (item === null) {
return 'null';
}
if (typeof item === 'object') {
if (Array.isArray(item)) {
return 'array';
}
if (item instanceof Date) {
return 'date';
}
if (item instanceof Promise) {
return 'promise';
}
if (item instanceof Error) {
return 'error';
}
if (item instanceof Map) {
return 'map';
}
if (item instanceof WeakMap) {
return 'weakmap';
}
if (item instanceof Set) {
return 'set';
}
if (item instanceof WeakSet) {
return 'weakset';
}
if (item === global) {
if (typeof window !== undefined) {
return 'window';
}
return 'global';
}
if (item.documentElement || item.innerHTML !== undefined) {
return 'html';
}
if(item.length !== undefined && item.callee) {
return 'arguments'
}
}
if (typeof item === 'number' && isNaN(item)) {
return 'nan';
}
return typeof item;
}