-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynamicModuleLoader.tsx
More file actions
51 lines (44 loc) · 1.55 KB
/
Copy pathDynamicModuleLoader.tsx
File metadata and controls
51 lines (44 loc) · 1.55 KB
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
import { ReactNode, useEffect } from 'react'
import { useDispatch, useStore } from 'react-redux'
import { Reducer } from '@reduxjs/toolkit'
import {
ReduxStoreWithManager,
StateSchema,
StateSchemaKeys,
} from '@/app/providers/StoreProvider'
export type ReducersList = {
[name in StateSchemaKeys]?: Reducer<NonNullable<StateSchema[name]>>
}
interface DynamicModuleLoaderProps {
reducers: ReducersList
removeAfterUnmount?: boolean
children: ReactNode
}
export const DynamicModuleLoader = (props: DynamicModuleLoaderProps) => {
const { children, reducers, removeAfterUnmount = true } = props
const store = useStore() as ReduxStoreWithManager
const dispatch = useDispatch()
useEffect(() => {
const currentReducers = store.reducerManager.getReducerMap()
Object.entries(reducers).forEach(([name, reducer]) => {
const current = currentReducers[name as StateSchemaKeys]
if (!current) {
store.reducerManager.add(name as StateSchemaKeys, reducer)
dispatch({ type: `@INIT ${name} reducer` })
}
})
return () => {
if (removeAfterUnmount) {
Object.keys(reducers).forEach((name) => {
store.reducerManager.remove(name as StateSchemaKeys)
dispatch({ type: `@DESTROY ${name} reducer` })
})
}
}
// eslint-disable-next-line
}, [])
return (
// eslint-disable-next-line react/jsx-no-useless-fragment
<>{children}</>
)
}