forked from reduxjs/redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenhancers.ts
73 lines (61 loc) · 1.68 KB
/
enhancers.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
import {
StoreEnhancer,
Action,
AnyAction,
Reducer,
createStore,
DeepPartial
} from 'redux'
interface State {
someField: 'string'
}
const reducer: Reducer<State> = null as any
/**
* Store enhancer that extends the type of dispatch.
*/
function dispatchExtension() {
type PromiseDispatch = <T extends Action>(promise: Promise<T>) => Promise<T>
const enhancer: StoreEnhancer<{ dispatch: PromiseDispatch }> = null as any
const store = createStore(reducer, enhancer)
store.dispatch({ type: 'INCREMENT' })
store.dispatch(Promise.resolve({ type: 'INCREMENT' }))
// typings:expect-error
store.dispatch('not-an-action')
// typings:expect-error
store.dispatch(Promise.resolve('not-an-action'))
}
/**
* Store enhancer that extends the type of the state.
*/
function stateExtension() {
interface ExtraState {
extraField: 'extra'
}
const enhancer: StoreEnhancer<{}, ExtraState> = createStore => <
S,
A extends Action = AnyAction
>(
reducer: Reducer<S, A>,
preloadedState?: DeepPartial<S>
) => {
const wrappedReducer: Reducer<S & ExtraState, A> = null as any
const wrappedPreloadedState: S & ExtraState = null as any
return createStore(wrappedReducer, wrappedPreloadedState)
}
const store = createStore(reducer, enhancer)
store.getState().someField
store.getState().extraField
// typings:expect-error
store.getState().wrongField
}
/**
* Store enhancer that adds methods to the store.
*/
function extraMethods() {
const enhancer: StoreEnhancer<{ method(): string }> = null as any
const store = createStore(reducer, enhancer)
store.getState()
const res: string = store.method()
// typings:expect-error
store.wrongMethod()
}