mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-26 16:52:06 +05:30
27 lines
854 B
TypeScript
27 lines
854 B
TypeScript
import React, { ComponentType } from 'react';
|
|
import { createMemoryHistory } from 'history';
|
|
import { DeepPartial } from 'utility-types';
|
|
|
|
import storeFactory from 'app/storeFactory';
|
|
import { State as RootState } from 'app/types';
|
|
|
|
import ContextProvider from './ContextProvider';
|
|
|
|
type NotOverriddenProps = Omit<React.ComponentProps<typeof ContextProvider>, 'store' | 'history'>;
|
|
type Props = NotOverriddenProps & {
|
|
state?: DeepPartial<RootState>;
|
|
};
|
|
|
|
const TestContextProvider: ComponentType<Props> = ({ state = {}, children, ...props }) => {
|
|
const store = React.useMemo(() => storeFactory(state), []);
|
|
const history = React.useMemo(createMemoryHistory, []);
|
|
|
|
return (
|
|
<ContextProvider store={store} history={history} {...props}>
|
|
{children}
|
|
</ContextProvider>
|
|
);
|
|
};
|
|
|
|
export default TestContextProvider;
|