-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
/
Copy pathconnect-mapstate-mapdispatch.test-d.tsx
495 lines (396 loc) · 11.5 KB
/
connect-mapstate-mapdispatch.test-d.tsx
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
import React from 'react'
import type { ActionCreator, Dispatch } from 'redux'
import type { MapDispatchToProps, ReactReduxContextValue } from 'react-redux'
import { connect } from 'react-redux'
// Test cases written in a way to isolate types and variables and verify the
// output of `connect` to make sure the signature is what is expected
const CustomContext = React.createContext<ReactReduxContextValue | null>(null)
describe('type tests', () => {
test('empty', () => {
interface OwnProps {
dispatch: Dispatch
foo: string
}
class TestComponent extends React.Component<OwnProps> {}
const Test = connect()(TestComponent)
const verify = <Test foo="bar" />
})
test('map state', () => {
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
class TestComponent extends React.Component<OwnProps & StateProps> {}
const mapStateToProps = (_: any) => ({
bar: 1,
})
const Test = connect(mapStateToProps)(TestComponent)
const verify = <Test foo="bar" />
})
test('map state with dispatch prop', () => {
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
dispatch: Dispatch
}
class TestComponent extends React.Component<OwnProps & StateProps> {}
const mapStateToProps = (_: any) => ({
bar: 1,
})
const Test = connect(mapStateToProps)(TestComponent)
const verify = <Test foo="bar" />
})
test('map state factory', () => {
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
class TestComponent extends React.Component<OwnProps & StateProps> {}
const mapStateToProps = () => () => ({
bar: 1,
})
const Test = connect(mapStateToProps)(TestComponent)
const verify = <Test foo="bar" />
})
test('map dispatch', () => {
interface OwnProps {
foo: string
}
interface DispatchProps {
onClick: () => void
}
class TestComponent extends React.Component<OwnProps & DispatchProps> {}
const mapDispatchToProps = { onClick: () => {} }
const TestNull = connect(null, mapDispatchToProps)(TestComponent)
const verifyNull = <TestNull foo="bar" />
const TestUndefined = connect(undefined, mapDispatchToProps)(TestComponent)
const verifyUndefined = <TestUndefined foo="bar" />
})
test('map dispatch union', () => {
interface OwnProps {
foo: string
}
interface DispatchProps {
onClick: () => void
}
class TestComponent extends React.Component<OwnProps & DispatchProps> {}
// We deliberately cast the right-hand side to `any` because otherwise
// TypeScript would maintain the literal value, when we deliberately want to
// test the union type here (as per the annotation). See
// https://github.com/Microsoft/TypeScript/issues/30310#issuecomment-472218182.
const mapDispatchToProps: MapDispatchToProps<DispatchProps, OwnProps> =
{} as any
const TestNull = connect(null, mapDispatchToProps)(TestComponent)
const verifyNull = <TestNull foo="bar" />
const TestUndefined = connect(undefined, mapDispatchToProps)(TestComponent)
const verifyUndefined = <TestUndefined foo="bar" />
})
test('map dispatch with thunk action creators', () => {
const simpleAction = (payload: boolean) => ({
type: 'SIMPLE_ACTION',
payload,
})
const thunkAction =
(param1: number, param2: string) =>
async (dispatch: Dispatch, { foo }: OwnProps) => {
return foo
}
interface OwnProps {
foo: string
}
interface TestComponentProps extends OwnProps {
simpleAction: typeof simpleAction
thunkAction(param1: number, param2: string): Promise<string>
}
class TestComponent extends React.Component<TestComponentProps> {}
const mapStateToProps = ({ foo }: { foo: string }) => ({ foo })
const mapDispatchToProps = { simpleAction, thunkAction }
const Test1 = connect(null, mapDispatchToProps)(TestComponent)
const Test2 = connect(mapStateToProps, mapDispatchToProps)(TestComponent)
const Test3 = connect(null, mapDispatchToProps, null, {
context: CustomContext,
})(TestComponent)
const Test4 = connect(mapStateToProps, mapDispatchToProps, null, {
context: CustomContext,
})(TestComponent)
const verify = (
<div>
<Test1 foo="bar" />;
<Test2 />
<Test3 foo="bar" />;
<Test4 context={CustomContext} />
</div>
)
})
test('map manual dispatch that looks like thunk', () => {
interface OwnProps {
foo: string
}
interface TestComponentProps extends OwnProps {
remove: (item: string) => () => object
}
class TestComponent extends React.Component<TestComponentProps> {
render() {
return <div onClick={this.props.remove('someid')} />
}
}
const mapStateToProps = ({ foo }: { foo: string }) => ({ foo })
function mapDispatchToProps(dispatch: Dispatch) {
return {
remove(item: string) {
return () => dispatch({ type: 'REMOVE_ITEM', item })
},
}
}
const Test1 = connect(null, mapDispatchToProps)(TestComponent)
const Test2 = connect(mapStateToProps, mapDispatchToProps)(TestComponent)
const Test3 = connect(null, mapDispatchToProps, null, {
context: CustomContext,
})(TestComponent)
const Test4 = connect(mapStateToProps, mapDispatchToProps, null, {
context: CustomContext,
})(TestComponent)
const verify = (
<div>
<Test1 foo="bar" />;
<Test2 />
<Test3 foo="bar" />;
<Test4 />
</div>
)
})
test('map state and dispatch object', () => {
interface ClickPayload {
count: number
}
const onClick: ActionCreator<ClickPayload> = () => ({ count: 1 })
const dispatchToProps = {
onClick,
}
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
interface DispatchProps {
onClick: ActionCreator<ClickPayload>
}
const mapStateToProps = (_: any, __: OwnProps): StateProps => ({
bar: 1,
})
class TestComponent extends React.Component<
OwnProps & StateProps & DispatchProps
> {}
const Test = connect(mapStateToProps, dispatchToProps)(TestComponent)
const verify = <Test foo="bar" />
})
test('map state and nullish dispatch', () => {
interface ClickPayload {
count: number
}
const onClick: ActionCreator<ClickPayload> = () => ({ count: 1 })
const dispatchToProps = {
onClick,
}
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
const mapStateToProps = (_: any, __: OwnProps): StateProps => ({
bar: 1,
})
class TestComponent extends React.Component<OwnProps & StateProps> {}
const TestDispatchPropsNull = connect(mapStateToProps, null)(TestComponent)
const verifyNull = <TestDispatchPropsNull foo="bar" />
const TestDispatchPropsUndefined = connect(
mapStateToProps,
undefined,
)(TestComponent)
const verifyNonUn = <TestDispatchPropsUndefined foo="bar" />
})
test('map dispatch factory', () => {
interface OwnProps {
foo: string
}
interface DispatchProps {
onClick: () => void
}
class TestComponent extends React.Component<OwnProps & DispatchProps> {}
const mapDispatchToPropsFactory = () => () => ({
onClick: () => {},
})
const TestNull = connect(null, mapDispatchToPropsFactory)(TestComponent)
const verifyNull = <TestNull foo="bar" />
const TestUndefined = connect(
undefined,
mapDispatchToPropsFactory,
)(TestComponent)
const verifyUndefined = <TestUndefined foo="bar" />
})
test('map state and dispatch', () => {
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
interface DispatchProps {
onClick: () => void
}
class TestComponent extends React.Component<
OwnProps & StateProps & DispatchProps
> {}
const mapStateToProps = () => ({
bar: 1,
})
const mapDispatchToProps = () => ({
onClick: () => {},
})
const Test = connect(mapStateToProps, mapDispatchToProps)(TestComponent)
const verify = <Test foo="bar" />
})
test('map state factory and dispatch', () => {
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
interface DispatchProps {
onClick: () => void
}
const mapStateToPropsFactory = () => () => ({
bar: 1,
})
const mapDispatchToProps = () => ({
onClick: () => {},
})
class TestComponent extends React.Component<
OwnProps & StateProps & DispatchProps
> {}
const Test = connect(
mapStateToPropsFactory,
mapDispatchToProps,
)(TestComponent)
const verify = <Test foo="bar" />
})
test('map state factory and dispatch factory', () => {
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
interface DispatchProps {
onClick: () => void
}
const mapStateToPropsFactory = () => () => ({
bar: 1,
})
const mapDispatchToPropsFactory = () => () => ({
onClick: () => {},
})
class TestComponent extends React.Component<
OwnProps & StateProps & DispatchProps
> {}
const Test = connect(
mapStateToPropsFactory,
mapDispatchToPropsFactory,
)(TestComponent)
const verify = <Test foo="bar" />
})
test('map state and dispatch and merge', () => {
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
interface DispatchProps {
onClick: () => void
}
class TestComponent extends React.Component<
OwnProps & StateProps & DispatchProps
> {}
const mapStateToProps = () => ({
bar: 1,
})
const mapDispatchToProps = () => ({
onClick: () => {},
})
const mergeProps = (
stateProps: StateProps,
dispatchProps: DispatchProps,
) => ({ ...stateProps, ...dispatchProps })
const Test = connect(
mapStateToProps,
mapDispatchToProps,
mergeProps,
)(TestComponent)
const verify = <Test foo="bar" />
})
test('map state and merge', () => {
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
interface DispatchProps {
onClick: () => void
}
class TestComponent extends React.Component<OwnProps & StateProps> {}
const mapStateToProps = () => ({
bar: 1,
})
const mergeProps = (
stateProps: StateProps,
_: null,
ownProps: OwnProps,
) => ({
...stateProps,
...ownProps,
})
const Test = connect(mapStateToProps, null, mergeProps)(TestComponent)
const verify = <Test foo="bar" />
})
test('map state and options', () => {
interface State {
state: string
}
interface OwnProps {
foo: string
}
interface StateProps {
bar: number
}
interface DispatchProps {
dispatch: Dispatch
}
class TestComponent extends React.Component<
OwnProps & StateProps & DispatchProps
> {}
const mapStateToProps = (state: State) => ({
bar: 1,
})
const areStatePropsEqual = (next: StateProps, current: StateProps) => true
const Test = connect<StateProps, DispatchProps, OwnProps, State>(
mapStateToProps,
null,
null,
{
areStatePropsEqual,
},
)(TestComponent)
const verify = <Test foo="bar" />
})
})