-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathautoState.js
62 lines (51 loc) · 1.8 KB
/
autoState.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
import React from "react";
// autoState ======================================================================= //
// TODO: Rewrite like connectGlobalState style: use auto add _global and set instead of list
let _autoStateGlobalState = null;
let _autoStateConnectedComponents = [];
export var globalStore = (component) => {
_autoStateConnectedComponents.push(component);
if (!_autoStateGlobalState) {
_autoStateGlobalState = new Proxy({}, {
get: (target, name) => {
return target[name];
},
set: (target, name, value) => {
target[name] = value;
// Update only connect component
_autoStateConnectedComponents.forEach(_component => {
if (_component._global.includes(name)) {
_component.forceUpdate();
}
});
return true;
}
})
}
return _autoStateGlobalState;
};
/**
* Auto update localState, globalState when localState, globalState changed
* @param WrappedComponent
*/
export function autoState(WrappedComponent) {
WrappedComponent.prototype.componentWillMount = function() {
let component = this;
let autoUpdateState = {
get: (target, name) => {
return target[name];
},
set: (target, name, value) => {
target[name] = value;
component.forceUpdate();
return true;
}
};
let _localState = this.localState || {};
component.localState = new Proxy(_localState, autoUpdateState);
if (component._global) {
component.globalState = globalStore(component);
}
};
return (props) => <WrappedComponent {...props} />
}