@@ -11,11 +11,12 @@ import {
11
11
connect ,
12
12
createSelectorHook ,
13
13
} from '../../src/index'
14
- import type { FunctionComponent } from 'react'
15
14
import { useReduxContext } from '../../src/hooks/useReduxContext'
15
+ import type { FunctionComponent , DispatchWithoutAction , ReactNode } from 'react'
16
16
import type { Store , AnyAction } from 'redux'
17
17
import type { ProviderProps , TypedUseSelectorHook } from '../../src/'
18
18
import type { Subscription } from '../../src/utils/Subscription'
19
+ import type { ReactReduxContextValue } from '../../src/components/Context'
19
20
20
21
describe ( 'React' , ( ) => {
21
22
describe ( 'hooks' , ( ) => {
@@ -24,7 +25,7 @@ describe('React', () => {
24
25
count : number
25
26
}
26
27
let normalStore : Store < NormalStateType , AnyAction >
27
- let renderedItems = [ ]
28
+ let renderedItems : any [ ] = [ ]
28
29
type RootState = ReturnType < typeof normalStore . getState >
29
30
let useNormalSelector : TypedUseSelectorHook < RootState > = useSelector
30
31
@@ -56,7 +57,8 @@ describe('React', () => {
56
57
} )
57
58
58
59
it ( 'selects the state and renders the component when the store updates' , ( ) => {
59
- const selector : jest . Mock < number , [ s : NormalStateType ] > = jest . fn (
60
+ type MockParams = [ NormalStateType ]
61
+ const selector : jest . Mock < number , MockParams > = jest . fn (
60
62
( s ) => s . count
61
63
)
62
64
@@ -80,7 +82,7 @@ describe('React', () => {
80
82
81
83
describe ( 'lifecycle interactions' , ( ) => {
82
84
it ( 'always uses the latest state' , ( ) => {
83
- const store = createStore ( ( c : number ) : number => c + 1 , - 1 )
85
+ const store = createStore ( ( c : number = 1 ) : number => c + 1 , - 1 )
84
86
85
87
const Comp = ( ) => {
86
88
const selector = useCallback ( ( c : number ) : number => c + 1 , [ ] )
@@ -106,7 +108,7 @@ describe('React', () => {
106
108
let rootSubscription : Subscription
107
109
108
110
const Parent = ( ) => {
109
- const { subscription } = useReduxContext ( )
111
+ const { subscription } = useReduxContext ( ) as ReactReduxContextValue
110
112
rootSubscription = subscription
111
113
const count = useNormalSelector ( ( s ) => s . count )
112
114
return count === 1 ? < Child /> : null
@@ -122,19 +124,19 @@ describe('React', () => {
122
124
< Parent />
123
125
</ ProviderMock >
124
126
)
125
-
127
+ // @ts -ignore ts(2454)
126
128
expect ( rootSubscription . getListeners ( ) . get ( ) . length ) . toBe ( 1 )
127
129
128
130
normalStore . dispatch ( { type : '' } )
129
-
131
+ // @ts -ignore ts(2454)
130
132
expect ( rootSubscription . getListeners ( ) . get ( ) . length ) . toBe ( 2 )
131
133
} )
132
134
133
135
it ( 'unsubscribes when the component is unmounted' , ( ) => {
134
136
let rootSubscription : Subscription
135
137
136
138
const Parent = ( ) => {
137
- const { subscription } = useReduxContext ( )
139
+ const { subscription } = useReduxContext ( ) as ReactReduxContextValue
138
140
rootSubscription = subscription
139
141
const count = useNormalSelector ( ( s ) => s . count )
140
142
return count === 0 ? < Child /> : null
@@ -150,11 +152,11 @@ describe('React', () => {
150
152
< Parent />
151
153
</ ProviderMock >
152
154
)
153
-
155
+ // @ts -ignore ts(2454)
154
156
expect ( rootSubscription . getListeners ( ) . get ( ) . length ) . toBe ( 2 )
155
157
156
158
normalStore . dispatch ( { type : '' } )
157
-
159
+ // @ts -ignore ts(2454)
158
160
expect ( rootSubscription . getListeners ( ) . get ( ) . length ) . toBe ( 1 )
159
161
} )
160
162
@@ -183,7 +185,7 @@ describe('React', () => {
183
185
} )
184
186
185
187
it ( 'works properly with memoized selector with dispatch in Child useLayoutEffect' , ( ) => {
186
- const store = createStore ( ( c : number ) : number => c + 1 , - 1 )
188
+ const store = createStore ( ( c : number = 1 ) : number => c + 1 , - 1 )
187
189
188
190
const Comp = ( ) => {
189
191
const selector = useCallback ( ( c : number ) : number => c , [ ] )
@@ -282,7 +284,7 @@ describe('React', () => {
282
284
283
285
it ( 'uses the latest selector' , ( ) => {
284
286
let selectorId = 0
285
- let forceRender
287
+ let forceRender : DispatchWithoutAction
286
288
287
289
const Comp = ( ) => {
288
290
const [ , f ] = useReducer ( ( c ) => c + 1 , 0 )
@@ -301,15 +303,19 @@ describe('React', () => {
301
303
302
304
expect ( renderedItems ) . toEqual ( [ 0 ] )
303
305
304
- rtl . act ( forceRender )
306
+ rtl . act ( ( ) => {
307
+ forceRender ( )
308
+ } )
305
309
expect ( renderedItems ) . toEqual ( [ 0 , 1 ] )
306
310
307
311
rtl . act ( ( ) => {
308
312
normalStore . dispatch ( { type : '' } )
309
313
} )
310
314
expect ( renderedItems ) . toEqual ( [ 0 , 1 ] )
311
315
312
- rtl . act ( forceRender )
316
+ rtl . act ( ( ) => {
317
+ forceRender ( )
318
+ } )
313
319
expect ( renderedItems ) . toEqual ( [ 0 , 1 , 2 ] )
314
320
} )
315
321
@@ -503,8 +509,8 @@ describe('React', () => {
503
509
} )
504
510
505
511
describe ( 'createSelectorHook' , ( ) => {
506
- let defaultStore
507
- let customStore
512
+ let defaultStore : Store
513
+ let customStore : Store
508
514
type StateType = {
509
515
count : number
510
516
}
@@ -519,7 +525,8 @@ describe('React', () => {
519
525
} )
520
526
521
527
it ( 'subscribes to the correct store' , ( ) => {
522
- const nestedContext = React . createContext ( null )
528
+ const nestedContext =
529
+ React . createContext < ReactReduxContextValue | null > ( null )
523
530
const useCustomSelector = createSelectorHook ( nestedContext )
524
531
let defaultCount = null
525
532
let customCount = null
@@ -531,7 +538,10 @@ describe('React', () => {
531
538
defaultCount = count
532
539
return < > { children } </ >
533
540
}
534
- const DisplayCustomCount = ( { children = null } ) => {
541
+ interface DisplayCustomCountType {
542
+ children : ReactNode
543
+ }
544
+ const DisplayCustomCount = ( { children } : DisplayCustomCountType ) => {
535
545
const count = useCustomSelector < StateType > ( getCount )
536
546
customCount = count
537
547
return < > { children } </ >
0 commit comments