-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynamicModuleLoader.tsx
More file actions
44 lines (39 loc) · 1.6 KB
/
DynamicModuleLoader.tsx
File metadata and controls
44 lines (39 loc) · 1.6 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
import { FC, ReactNode, useEffect } from 'react';
import { useDispatch, useStore } from 'react-redux';
import { Reducer } from '@reduxjs/toolkit';
import { ReduxStoreWithManager, StateSchema, StateSchemaKey } from '@/app/providers/StoreProvider';
export type ReducersList = {
[name in StateSchemaKey]?: Reducer<NonNullable<StateSchema[name]>>;
};
interface DynamicModuleLoaderProps {
reducers: ReducersList;
children: ReactNode;
removeAfterUnmount?: boolean;
}
export const DynamicModuleLoader: FC<DynamicModuleLoaderProps> = (props: DynamicModuleLoaderProps) => {
const { children, reducers, removeAfterUnmount } = props;
const store = useStore() as ReduxStoreWithManager;
const dispatch = useDispatch();
useEffect(() => {
const mountedReducers = store.reducerManager.getReducerMap();
Object.entries(reducers).forEach(([name, reducer]) => {
const mounted = mountedReducers[name as StateSchemaKey];
// Добавляем редюсер, если необходимо
if (!mounted) {
store.reducerManager.add(name as StateSchemaKey, reducer);
dispatch({ type: `@INIT ${name} reducer` });
}
});
return () => {
if (removeAfterUnmount) {
Object.entries(reducers).forEach(([name]) => {
store.reducerManager.remove(name as StateSchemaKey);
dispatch({ type: `@DESTROY ${name} reducer` });
});
}
};
// eslint-disable-next-line
}, []);
// <>{children}</>;
return children;
};