forked from reduxjs/redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinjectedDispatch.ts
85 lines (74 loc) · 1.88 KB
/
injectedDispatch.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
import { Dispatch, Action } from 'redux'
interface Component<P> {
props: P
}
interface HOC<T> {
<P>(wrapped: Component<P & T>): Component<P>
}
declare function connect<T, D extends Dispatch = Dispatch>(
mapDispatchToProps: (dispatch: D) => T
): HOC<T>
/**
* Inject default dispatch.
*/
function simple() {
const hoc: HOC<{ onClick(): void }> = connect(dispatch => {
return {
onClick() {
dispatch({ type: 'INCREMENT' })
// typings:expect-error
dispatch(Promise.resolve({ type: 'INCREMENT' }))
// typings:expect-error
dispatch('not-an-action')
}
}
})
}
/**
* Inject dispatch that restricts allowed action types.
*/
function discriminated() {
interface IncrementAction {
type: 'INCREMENT'
count?: number
}
interface DecrementAction {
type: 'DECREMENT'
count?: number
}
// Union of all actions in the app.
type MyAction = IncrementAction | DecrementAction
const hoc: HOC<{ onClick(): void }> = connect(
(dispatch: Dispatch<MyAction>) => {
return {
onClick() {
dispatch({ type: 'INCREMENT' })
dispatch({ type: 'DECREMENT', count: 10 })
// typings:expect-error
dispatch({ type: 'DECREMENT', count: '' })
// typings:expect-error
dispatch({ type: 'SOME_OTHER_TYPE' })
// typings:expect-error
dispatch('not-an-action')
}
}
}
)
}
/**
* Inject extended dispatch.
*/
function promise() {
type PromiseDispatch = <T extends Action>(promise: Promise<T>) => Promise<T>
type MyDispatch = Dispatch & PromiseDispatch
const hoc: HOC<{ onClick(): void }> = connect((dispatch: MyDispatch) => {
return {
onClick() {
dispatch({ type: 'INCREMENT' })
dispatch(Promise.resolve({ type: 'INCREMENT' }))
// typings:expect-error
dispatch('not-an-action')
}
}
})
}