forked from CoinHippo-Labs/connextscan-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.js
33 lines (24 loc) · 1011 Bytes
/
store.js
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
import { useMemo } from 'react'
import { createStore, applyMiddleware } from 'redux'
import { composeWithDevTools } from '@redux-devtools/extension'
import reducers from './reducers'
let store
const initStore = preloadedState => createStore(reducers, preloadedState, composeWithDevTools(applyMiddleware()))
export const initializeStore = preloadedState => {
let _store = store ?? initStore(preloadedState)
// After navigating to a page with an initial Redux state, merge that state
// with the current state in the store, and create a new store
if (preloadedState && store) {
_store = initStore({ ...store.getState(), ...preloadedState })
// Reset the current store
store = undefined
}
// For SSG and SSR always create a new store
if (typeof window === 'undefined')
return _store
// Create the store once in the client
if (!store)
store = _store
return _store
}
export const useStore = initialState => useMemo(() => initializeStore(initialState), [initialState])