aboutsummaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-09-14 21:14:13 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-09-14 21:14:13 +0900
commitc42ac8fac48f9d56b54af4818917082fda9af21e (patch)
tree5782600aa25482c2170101a29561cf08d1c2ae11 /src/store
parent9dc02b2fd8344facedfd7949899124c4d0722f68 (diff)
improve store and reducers
Diffstat (limited to 'src/store')
-rw-r--r--src/store/index.js21
1 files changed, 19 insertions, 2 deletions
diff --git a/src/store/index.js b/src/store/index.js
index bcb65d6..841fd17 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -3,21 +3,38 @@ class Store {
this.reducer = reducer;
this.catcher = catcher;
this.state = this.reducer(undefined, {});
+ this.subscribers = [];
}
dispatch(action) {
if (action instanceof Promise) {
action.then((a) => {
- this.state = this.reducer(this.state, a);
+ this.transitNext(a);
}).catch(this.catcher)
} else {
try {
- this.state = this.reducer(this.state, action);
+ this.transitNext(action);
} catch (e) {
this.catcher(e);
}
}
}
+
+ getState() {
+ return this.state;
+ }
+
+ subscribe(callback) {
+ this.subscribers.push(callback);
+ }
+
+ transitNext(action) {
+ let newState = this.reducer(this.state, action);
+ if (JSON.stringify(this.state) !== JSON.stringify(newState)) {
+ this.state = newState;
+ this.subscribers.forEach(f => f.call())
+ }
+ }
}
const empty = () => {};