blob: 841fd1780970cc2aefe62b5eac875ba940a4e67b (
plain) (
blame)
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
|
class Store {
constructor(reducer, catcher) {
this.reducer = reducer;
this.catcher = catcher;
this.state = this.reducer(undefined, {});
this.subscribers = [];
}
dispatch(action) {
if (action instanceof Promise) {
action.then((a) => {
this.transitNext(a);
}).catch(this.catcher)
} else {
try {
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 = () => {};
export function createStore(reducer, catcher = empty) {
return new Store(reducer, catcher);
}
|