-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.js
276 lines (248 loc) · 8.38 KB
/
vue.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
class Vue {
constructor({ el, data, methods, computed }) {
globalThis.vm = this;//测试使用
let that = this;
el = document.querySelector(el);
data = typeof data === 'object' && data ? data : {};
methods = typeof methods === 'object' && methods ? methods : {};
computed = typeof computed === 'object' && computed ? computed : {};
if (el) {
this.$el = el;
this.$data = data;
this.$methods = methods;
this.$computed_functions = computed;
this.$computed = {};
this.initMethods();
this.messenger = new Messenger();
this.computer = new Computer({vm: that});
new Observer({vm: that});
new Compiler({vm: that});
}
}
initMethods() {
if(!globalThis.__VUE_FUNCTIONS) {
globalThis.__VUE_FUNCTIONS = {};
}
for(let name in this.$methods) {
globalThis.__VUE_FUNCTIONS[name] = this.$methods[name] = this[name] =
this.$methods[name].bind(this);
}
}
}
class Compiler {
constructor({vm}) {
this.vm = vm;
let fragment = document.createDocumentFragment();
while(vm.$el.firstChild) fragment.appendChild(vm.$el.firstChild);
this.compile(fragment);
vm.$el.appendChild(fragment);
}
compile(node) {
Array.prototype.slice.call(node.childNodes, 0).forEach(node => {
if(node.nodeType === Node.ELEMENT_NODE) {
this.compileElement(node);
this.compile(node);
}
else if(node.nodeType === Node.TEXT_NODE) {
this.compileText(node);
}
});
}
compileElement(node) {
let normals = [], handlers = [];
Array.prototype.slice.call(node.attributes, 0).forEach(({name, value}) => {
if(/^v-bind:(\w+)$/.test(name)
|| /^:(\w+)$/.test(name)
) {
normals.push({preAttrName: name, attrName: RegExp['$+'], varName: value});
}
else if(/^v-on:(\w+)$/.test(name)
|| /^@(\w+)$/.test(name)
) {
handlers.push({preEventName: name, eventName: `on${RegExp['$+']}`, handlerName: value});
}
else if(/^v-model$/.test(name)) {
globalThis.__VUE_FUNCTIONS[value] = (function(e) {this.vm[value] = e.target.value}).bind(this);
normals.push({preAttrName: name, attrName: 'value', varName: value});
handlers.push({preEventName: name, eventName: 'oninput', handlerName: value});
}
});
this.replaceAttributes({normals, handlers, node});
}
compileText(node) {
let templateExpr = node.nodeValue;
let varValues = [];
let reg = /\{\{(\w+)\}\}/g;
let index = 0;
let that = this;
while(reg.exec(templateExpr)) {
let innerIndex = index++;
let varName = RegExp['$+'];
varValues[innerIndex] = this.vm[varName];
this.vm.messenger.subscribe({
app: 'DOMRefresh',
channel: varName,
contact: {
noName: true,
callback() {
varValues[innerIndex] = that.vm[varName];
that.replaceText({varValues, templateExpr, node});
}
}
})
}
this.replaceText({varValues, templateExpr, node});
}
replaceAttributes({normals, handlers, node}) {
let that = this;
normals.forEach(({preAttrName, attrName, varName}) => {//删掉所有普通attribute, 设置新的property用以替代
node.removeAttribute(preAttrName);
let varValue = that.vm[varName];
node[attrName] = varValue;
this.vm.messenger.subscribe({
app: 'DOMRefresh',
channel: varName,
contact: {
noName: true,
callback() {
let newVarValue = that.vm[varName];
node[attrName] = newVarValue;
}
}
});
});
handlers.forEach(({preEventName, eventName, handlerName}) => {//事件函数触发函数还是用新attribute替代
node.removeAttribute(preEventName);
let eventToDo = `__VUE_FUNCTIONS['${handlerName}'](event)`;
node.setAttribute(eventName, eventToDo);
});
}
replaceText({varValues, templateExpr, node}) {
for(let varValue of varValues) {
templateExpr = templateExpr.replace(/\{\{(\w+)\}\}/, varValue);
}
node.nodeValue = templateExpr;
}
}
class Observer {
constructor({vm}) {
this.vm = vm;
this.observe();
}
observe() {
this.observeData();
this.observeComputed();
}
observeData() {
let that = this;
for(let varName in this.vm.$data) {
Object.defineProperty(this.vm, varName, {
configurable: true,
enumerable: true,
set(v) {
if(v === that.vm.$data[varName]) return;
that.vm.$data[varName] = v;
that.vm.messenger.publish({app: 'DOMRefresh', channel: varName});
that.vm.computer.check({dataName: varName});
},
get() {
that.vm.computer.add({dataName: varName});
return that.vm.$data[varName];
}
});
}
}
observeComputed() {
let that = this;
this.vm.computer.start();
for(let name in this.vm.$computed_functions) {
this.vm.$computed[name] = this.vm.$computed_functions[name].call(this.vm);
this.vm.computer.clear({computedName: name});
}
this.vm.computer.stop();
for(let varName in this.vm.$computed) {
Object.defineProperty(this.vm, varName, {
configurable: true,
enumerable: true,
set({_VUE_SET}) {
if(_VUE_SET) {
that.vm.messenger.publish({app: 'DOMRefresh', channel: varName});
}
},
get() {
return that.vm.$computed[varName];
}
});
}
}
}
class Computer {
constructor({vm}) {
this.vm = vm;
this.state = false;
this.dataNames = [];
}
start() {
this.state = true;
}
stop() {
this.state = false;
}
add({dataName}) {
if(this.state) {
this.dataNames.push(dataName);
}
}
clear({computedName}) {
let that = this;
if(this.state) {
let dataName;
while(dataName = this.dataNames.shift()) {
this.vm.messenger.subscribe({
app: 'computer',
channel: dataName,
contact: {
name: computedName,
callback() {
that.start();
that.vm.$computed[computedName] = that.vm.$computed_functions[computedName].call(that.vm);
that.clear({computedName});
that.stop();
that.vm[computedName] = {_VUE_SET: true};
}
}
});
}
}
}
check({dataName}) {
this.vm.messenger.publish({app: 'computer', channel: dataName});
}
}
class Messenger {
constructor() {
this.server = {};
}
subscribe({app, channel, contact, contact: {name, noName}}) {
if(!this.server[app]) {
this.server[app] = {};
}
if(!this.server[app][channel]) {
this.server[app][channel] = [];
}
if(noName) {
this.server[app][channel].push(contact);
}
if(!this.server[app][channel].some(v => v.name === name)) {
this.server[app][channel].push(contact);
}
}
publish({app, channel}) {
if(this.server[app][channel]) {
for(let {callback} of this.server[app][channel]) {
callback();
}
}
}
}
export default Vue;