-
Notifications
You must be signed in to change notification settings - Fork 0
/
observe.js
100 lines (83 loc) · 2.05 KB
/
observe.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
function observe(value) {
// 检测是否是对象,不是则退出
if (!value || typeof value !== 'object') {
return;
}
// 是对象则继续遍历观测属性
return new Observe(value);
}
// 给vm中的data添加观察者
class Observe {
constructor(data) {
this.data = data;
// 遍历data
this.walk();
}
walk() {
// 遍历data的每个属性
Object.keys(this.data).forEach((key) => {
this.convert(key, this.data[key]);
})
}
convert(key, val) {
this.defineReactive(key, val);
}
/**
* 具体给每个属性添加setter和getter
*/
defineReactive(key, val) {
// 每次遍历都生成一个订阅器
const dep = new Dep();
// 对象的属性可能还是对象,所以需要继续遍历下去
let childObj = observe(val);
Object.defineProperty(this.data, key, {
configurable: false, // 不可delete删除,不可修改其他属性描述符
enumerable: true, // 可枚举
get() {
if (Dep.target) {
dep.depend();
}
return val;
},
set(newVal) {
if (newVal === val) {
return;
}
val = newVal;
// 新的值如果是 object 的话,进行监听
childObj = observe(newVal);
// 通知订阅者
dep.notify();
}
})
}
}
let uid = 0;
class Dep {
constructor() {
this.id = uid++;
this.subs = [];
}
addSub(sub) {
this.subs.push(sub);
}
depend() {
Dep.target.addDep(this);
}
removeSub(sub) {
var index = this.subs.indexOf(sub);
if (index != -1) {
this.subs.splice(index, 1);
}
}
notify() {
this.subs.forEach((sub) => {
sub.update();
})
}
}
Dep.target = null;
export {
observe,
Dep
};