-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyob.js
109 lines (96 loc) · 3.58 KB
/
myob.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
/*
* Object 原型
*/
const OP = Object.prototype;
/*
* 需要重写的数组方法 OAR 是 overrideArrayMethod 的缩写
*/
const OAM = [
'push',
'pop',
'shift',
'unshift',
'splice',
'sort',
'reverse'
];
export default class Jsonob {
constructor(obj, callback) {
if (OP.toString.call(obj) !== '[object Object]') {
console.error('This parameter must be an object:' + obj);
}
this.$callback = callback;
this.observe(obj);
}
observe(obj,path) {
// 如果发现 监测的对象是数组的话就要调用 overrideArrayProto 方法
if (OP.toString.call(obj) === '[object Array]') {
this.overrideArrayProto(obj,path);
}
Object
.keys(obj)
.forEach(function (key, index, keyArray) {
var oldVal = obj[key];
var pathArray = path && path.slice(0)
console.log(pathArray)
if(pathArray){
pathArray.push(key)
}else {
pathArray = [key]
}
Object.defineProperty(obj, key, {
get: function () {
return oldVal;
},
set: (function (newVal) {
if (oldVal !== newVal) {
if (OP.toString.call(newVal) === '[object Object]' || OP.toString.call(newVal) === '[object Array]') {
this.observe(newVal, pathArray);
}
this.$callback(newVal, oldVal, pathArray);
oldVal = newVal;
}
}).bind(this)
});
if (OP.toString.call(obj[key]) === '[object Object]' || OP.toString.call(obj[key]) === '[object Array]') {
this.observe(obj[key],pathArray);
}
}, this);
}
overrideArrayProto(array,path) {
// 保存原始 Array 原型
var originalProto = Array.prototype,
// 通过 Object.create 方法创建一个对象,该对象的原型就是Array.prototype
overrideProto = Object.create(Array.prototype),
self = this,
result;
// 遍历要重写的数组方法
Object
.keys(OAM)
.forEach(function (key, index, array) {
var method = OAM[index],
oldArray = [];
// 使用 Object.defineProperty 给 overrideProto 添加属性,属性的名称是对应的数组函数名,值是函数
Object.defineProperty(overrideProto, method, {
value: function () {
oldArray = this.slice(0);
var arg = []
.slice
.apply(arguments);
// 调用原始 原型 的数组方法
result = originalProto[method].apply(this, arg);
// 对新的数组进行监测
self.observe(this,path);
// 执行回调
self.$callback(this, oldArray,path);
return result;
},
writable: true,
enumerable: false,
configurable: true
});
}, this);
// 最后 让该数组实例的 __proto__ 属性指向 假的原型 overrideProto
array.__proto__ = overrideProto;
}
}