-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02_reimplement_store.js
54 lines (39 loc) · 966 Bytes
/
02_reimplement_store.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
// http://jsbin.com/koyoduhito/2/edit?js,console,output
const counter = (state = 0, action) => {
switch (action.type) {
case 'INCREMENT':
return state + 1;
case 'DECREMENT':
return state - 1;
default:
return state;
}
}
const createStore = (reducer) => {
let state;
let listeners = [];
const getState = () => state;
const dispatch = (action) => {
state = reducer(state, action);
listeners.forEach(listener => listener());
};
const subscribe = (listener) => {
listeners.push(listener);
return () => {
listeners = listeners.filter(l => l !== listener);
}
};
dispatch({});
return { getState, dispatch, subscribe };
}
const store = createStore(counter);
const render = () => {
document.body.innerText = store.getState()
}
store.subscribe(render);
render();
document.addEventListener('click', () => {
store.dispatch({
type: 'INCREMENT'
})
});