forked from reduxjs/redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
212 lines (183 loc) · 5.34 KB
/
middleware.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import {
Middleware,
MiddlewareAPI,
applyMiddleware,
StoreEnhancer,
createStore,
Dispatch,
Reducer,
Action,
AnyAction
} from 'redux'
/**
* Logger middleware doesn't add any extra types to dispatch, just logs actions
* and state.
*/
function logger() {
const loggerMiddleware: Middleware = ({ getState }: MiddlewareAPI) => (
next: Dispatch
) => action => {
console.log('will dispatch', action)
// Call the next dispatch method in the middleware chain.
const returnValue = next(action)
console.log('state after dispatch', getState())
// This will likely be the action itself, unless
// a middleware further in chain changed it.
return returnValue
}
return loggerMiddleware
}
/**
* Promise middleware adds support for dispatching promises.
*/
type PromiseDispatch = <T extends Action>(promise: Promise<T>) => Promise<T>
function promise() {
const promiseMiddleware: Middleware<PromiseDispatch> = ({
dispatch
}: MiddlewareAPI) => next => <T extends Action>(
action: AnyAction | Promise<T>
) => {
if (action instanceof Promise) {
action.then(dispatch)
return action
}
return next(action)
}
return promiseMiddleware
}
/**
* Thunk middleware adds support for dispatching thunks.
*/
interface Thunk<R, S, DispatchExt = {}> {
(dispatch: Dispatch & ThunkDispatch<S> & DispatchExt, getState: () => S): R
}
interface ThunkDispatch<S, DispatchExt = {}> {
<R>(thunk: Thunk<R, S, DispatchExt>): R
}
function thunk<S, DispatchExt>() {
const thunkMiddleware: Middleware<
ThunkDispatch<S, DispatchExt>,
S,
Dispatch & ThunkDispatch<S>
> = api => (next: Dispatch) => <R>(action: AnyAction | Thunk<R, any>) =>
typeof action === 'function'
? action(api.dispatch, api.getState)
: next(action)
return thunkMiddleware
}
/**
* Middleware that expects exact state type.
*/
function customState() {
type State = { field: 'string' }
const customMiddleware: Middleware<{}, State> = api => (
next: Dispatch
) => action => {
api.getState().field
// typings:expect-error
api.getState().wrongField
return next(action)
}
return customMiddleware
}
/**
* Middleware that expects custom dispatch.
*/
function customDispatch() {
type MyAction = { type: 'INCREMENT' } | { type: 'DECREMENT' }
// dispatch that expects action union
type MyDispatch = Dispatch<MyAction>
const customDispatch: Middleware = (
api: MiddlewareAPI<MyDispatch>
) => next => action => {
api.dispatch({ type: 'INCREMENT' })
api.dispatch({ type: 'DECREMENT' })
// typings:expect-error
api.dispatch({ type: 'UNKNOWN' })
}
}
/**
* Test the type of store.dispatch after applying different middleware.
*/
function apply() {
interface State {
someField: 'string'
}
const reducer: Reducer<State> = null as any
/**
* logger
*/
const storeWithLogger = createStore(reducer, applyMiddleware(logger()))
// can only dispatch actions
storeWithLogger.dispatch({ type: 'INCREMENT' })
// typings:expect-error
storeWithLogger.dispatch(Promise.resolve({ type: 'INCREMENT' }))
// typings:expect-error
storeWithLogger.dispatch('not-an-action')
/**
* promise
*/
const storeWithPromise = createStore(reducer, applyMiddleware(promise()))
// can dispatch actions and promises
storeWithPromise.dispatch({ type: 'INCREMENT' })
storeWithPromise.dispatch(Promise.resolve({ type: 'INCREMENT' }))
// typings:expect-error
storeWithPromise.dispatch('not-an-action')
// typings:expect-error
storeWithPromise.dispatch(Promise.resolve('not-an-action'))
/**
* promise + logger
*/
const storeWithPromiseAndLogger = createStore(
reducer,
applyMiddleware(promise(), logger())
)
// can dispatch actions and promises
storeWithPromiseAndLogger.dispatch({ type: 'INCREMENT' })
storeWithPromiseAndLogger.dispatch(Promise.resolve({ type: 'INCREMENT' }))
// typings:expect-error
storeWithPromiseAndLogger.dispatch('not-an-action')
// typings:expect-error
storeWithPromiseAndLogger.dispatch(Promise.resolve('not-an-action'))
/**
* promise + thunk
*/
const storeWithPromiseAndThunk = createStore(
reducer,
applyMiddleware(promise(), thunk<State, PromiseDispatch>(), logger())
)
// can dispatch actions, promises and thunks
storeWithPromiseAndThunk.dispatch({ type: 'INCREMENT' })
storeWithPromiseAndThunk.dispatch(Promise.resolve({ type: 'INCREMENT' }))
storeWithPromiseAndThunk.dispatch((dispatch, getState) => {
getState().someField
// typings:expect-error
getState().wrongField
// injected dispatch accepts actions, thunks and promises
dispatch({ type: 'INCREMENT' })
dispatch(dispatch => dispatch({ type: 'INCREMENT' }))
dispatch(Promise.resolve({ type: 'INCREMENT' }))
// typings:expect-error
dispatch('not-an-action')
})
// typings:expect-error
storeWithPromiseAndThunk.dispatch('not-an-action')
// typings:expect-error
storeWithPromiseAndThunk.dispatch(Promise.resolve('not-an-action'))
/**
* Test variadic signature.
*/
const storeWithLotsOfMiddleware = createStore(
reducer,
applyMiddleware<PromiseDispatch>(
promise(),
logger(),
logger(),
logger(),
logger(),
logger()
)
)
storeWithLotsOfMiddleware.dispatch({ type: 'INCREMENT' })
storeWithLotsOfMiddleware.dispatch(Promise.resolve({ type: 'INCREMENT' }))
}