forked from reduxjs/redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreducers.ts
197 lines (154 loc) · 5.3 KB
/
reducers.ts
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
import { Reducer, Action, combineReducers, ReducersMapObject } from 'redux'
/**
* Simple reducer definition with no action shape checks.
* Uses string comparison to determine action type.
*
* `AnyAction` type is used to allow action property access without requiring
* type casting.
*/
function simple() {
type State = number
const reducer: Reducer<State> = (state = 0, action) => {
if (action.type === 'INCREMENT') {
const { count = 1 } = action
return state + count
}
if (action.type === 'DECREMENT') {
const { count = 1 } = action
return state - count
}
return state
}
// Reducer function accepts any object with `type` prop as action.
// Any extra props are allowed too.
let s: State = reducer(undefined, { type: 'init' })
s = reducer(s, { type: 'INCREMENT' })
s = reducer(s, { type: 'INCREMENT', count: 10 })
s = reducer(s, { type: 'DECREMENT' })
s = reducer(s, { type: 'DECREMENT', count: 10 })
s = reducer(s, { type: 'SOME_OTHER_TYPE', someField: 'value' })
// State shape is strictly checked.
// typings:expect-error
reducer('string', { type: 'INCREMENT' })
// Combined reducer also accepts any action.
const combined = combineReducers({ sub: reducer })
let cs: { sub: State } = combined(undefined, { type: 'init' })
cs = combined(cs, { type: 'INCREMENT', count: 10 })
// Combined reducer's state is strictly checked.
// typings:expect-error
combined({ unknown: '' }, { type: 'INCREMENT' })
}
/**
* Reducer definition using discriminated unions.
*
* See https://basarat.gitbooks.io/typescript/content/docs/types/discriminated-unions.html#redux
*/
function discriminated() {
type State = number
interface IncrementAction {
type: 'INCREMENT'
count?: number
}
interface DecrementAction {
type: 'DECREMENT'
count?: number
}
// Union of all actions in the app.
type MyAction = IncrementAction | DecrementAction
const reducer: Reducer<State, MyAction> = (state = 0, action) => {
if (action.type === 'INCREMENT') {
// Action shape is determined by `type` discriminator.
// typings:expect-error
action.wrongField
const { count = 1 } = action
return state + count
}
if (action.type === 'DECREMENT') {
// typings:expect-error
action.wrongField
const { count = 1 } = action
return state - count
}
return state
}
// Reducer state is initialized by Redux using Init action which is private.
// To initialize manually (e.g. in tests) we have to type cast init action
// or add a custom init action to MyAction union.
let s: State = reducer(undefined, { type: 'init' } as any)
s = reducer(s, { type: 'INCREMENT' })
s = reducer(s, { type: 'INCREMENT', count: 10 })
// Known actions are strictly checked.
// typings:expect-error
s = reducer(s, { type: 'DECREMENT', coun: 10 })
s = reducer(s, { type: 'DECREMENT', count: 10 })
// Unknown actions are rejected.
// typings:expect-error
s = reducer(s, { type: 'SOME_OTHER_TYPE' })
// typings:expect-error
s = reducer(s, { type: 'SOME_OTHER_TYPE', someField: 'value' })
// Combined reducer accepts any action by default which allows to include
// third-party reducers without the need to add their actions to the union.
const combined = combineReducers({ sub: reducer })
let cs: { sub: State } = combined(undefined, { type: 'init' })
cs = combined(cs, { type: 'SOME_OTHER_TYPE' })
// Combined reducer can be made to only accept known actions.
const strictCombined = combineReducers<{ sub: State }, MyAction>({
sub: reducer
})
strictCombined(cs, { type: 'INCREMENT' })
// typings:expect-error
strictCombined(cs, { type: 'SOME_OTHER_TYPE' })
}
/**
* Reducer definition using type guards.
*/
function typeGuards() {
function isAction<A extends Action>(action: Action, type: any): action is A {
return action.type === type
}
type State = number
interface IncrementAction {
type: 'INCREMENT'
count?: number
}
interface DecrementAction {
type: 'DECREMENT'
count?: number
}
const reducer: Reducer<State> = (state = 0, action) => {
if (isAction<IncrementAction>(action, 'INCREMENT')) {
// Action shape is determined by the type guard returned from `isAction`
// typings:expect-error
action.wrongField
const { count = 1 } = action
return state + count
}
if (isAction<DecrementAction>(action, 'DECREMENT')) {
// typings:expect-error
action.wrongField
const { count = 1 } = action
return state - count
}
return state
}
let s: State = reducer(undefined, { type: 'init' })
s = reducer(s, { type: 'INCREMENT' })
s = reducer(s, { type: 'INCREMENT', count: 10 })
s = reducer(s, { type: 'DECREMENT' })
s = reducer(s, { type: 'DECREMENT', count: 10 })
s = reducer(s, { type: 'SOME_OTHER_TYPE', someField: 'value' })
const combined = combineReducers({ sub: reducer })
let cs: { sub: State } = combined(undefined, { type: 'init' })
cs = combined(cs, { type: 'INCREMENT', count: 10 })
}
/**
* Test ReducersMapObject with default type args.
*/
function reducersMapObject() {
const obj: ReducersMapObject = {}
for (const key of Object.keys(obj)) {
obj[key](undefined, { type: 'SOME_TYPE' })
// typings:expect-error
obj[key](undefined, 'not-an-action')
}
}