Skip to content

Commit 58f69ad

Browse files
committed
put back subscription
1 parent 7f92f16 commit 58f69ad

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

src/hooks/useSelector.js

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import { useReducer, useContext } from 'react'
1+
import { useReducer, useMemo, useContext } from 'react'
22
import { useReduxContext as useDefaultReduxContext } from './useReduxContext'
3+
import Subscription from '../utils/Subscription'
34
import { useIsomorphicLayoutEffect } from '../utils/useIsomorphicLayoutEffect'
45
import { ReactReduxContext } from '../components/Context'
56

@@ -9,9 +10,9 @@ function useSelectorWithStoreAndSubscription(
910
selector,
1011
equalityFn,
1112
store,
12-
subscription
13+
contextSub
1314
) {
14-
const [selectedState, dispatch] = useReducer(
15+
const [selectedState, checkForUpdates] = useReducer(
1516
prevSelectedState => {
1617
const nextState = store.getState()
1718
const nextSelectedState = selector(nextState)
@@ -20,15 +21,20 @@ function useSelectorWithStoreAndSubscription(
2021
}
2122
return nextSelectedState
2223
},
23-
null,
24-
() => selector(store.getState())
24+
store.getState(),
25+
selector
2526
)
2627

28+
const subscription = useMemo(() => new Subscription(store, contextSub), [
29+
store,
30+
contextSub
31+
])
32+
2733
useIsomorphicLayoutEffect(() => {
28-
subscription.onStateChange = dispatch
34+
subscription.onStateChange = checkForUpdates
2935
subscription.trySubscribe()
3036

31-
dispatch()
37+
checkForUpdates()
3238

3339
return () => subscription.tryUnsubscribe()
3440
}, [subscription])

0 commit comments

Comments
 (0)