File tree 1 file changed +13
-7
lines changed
1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
- import { useReducer , useContext } from 'react'
1
+ import { useReducer , useMemo , useContext } from 'react'
2
2
import { useReduxContext as useDefaultReduxContext } from './useReduxContext'
3
+ import Subscription from '../utils/Subscription'
3
4
import { useIsomorphicLayoutEffect } from '../utils/useIsomorphicLayoutEffect'
4
5
import { ReactReduxContext } from '../components/Context'
5
6
@@ -9,9 +10,9 @@ function useSelectorWithStoreAndSubscription(
9
10
selector ,
10
11
equalityFn ,
11
12
store ,
12
- subscription
13
+ contextSub
13
14
) {
14
- const [ selectedState , dispatch ] = useReducer (
15
+ const [ selectedState , checkForUpdates ] = useReducer (
15
16
prevSelectedState => {
16
17
const nextState = store . getState ( )
17
18
const nextSelectedState = selector ( nextState )
@@ -20,15 +21,20 @@ function useSelectorWithStoreAndSubscription(
20
21
}
21
22
return nextSelectedState
22
23
} ,
23
- null ,
24
- ( ) => selector ( store . getState ( ) )
24
+ store . getState ( ) ,
25
+ selector
25
26
)
26
27
28
+ const subscription = useMemo ( ( ) => new Subscription ( store , contextSub ) , [
29
+ store ,
30
+ contextSub
31
+ ] )
32
+
27
33
useIsomorphicLayoutEffect ( ( ) => {
28
- subscription . onStateChange = dispatch
34
+ subscription . onStateChange = checkForUpdates
29
35
subscription . trySubscribe ( )
30
36
31
- dispatch ( )
37
+ checkForUpdates ( )
32
38
33
39
return ( ) => subscription . tryUnsubscribe ( )
34
40
} , [ subscription ] )
You can’t perform that action at this time.
0 commit comments