mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
22 lines
762 B
TypeScript
22 lines
762 B
TypeScript
import { PropsWithChildren, memo, useEffect } from 'react';
|
|
import { modelChanged } from '../src/features/controlLayers/store/canvasV2Slice';
|
|
import { useAppDispatch } from '../src/app/store/storeHooks';
|
|
import { useGlobalModifiersInit } from '@invoke-ai/ui-library';
|
|
/**
|
|
* Initializes some state for storybook. Must be in a different component
|
|
* so that it is run inside the redux context.
|
|
*/
|
|
export const ReduxInit = memo((props: PropsWithChildren) => {
|
|
const dispatch = useAppDispatch();
|
|
useGlobalModifiersInit();
|
|
useEffect(() => {
|
|
dispatch(
|
|
modelChanged({ model: { key: 'test_model', hash: 'some_hash', name: 'some name', base: 'sd-1', type: 'main' } })
|
|
);
|
|
}, []);
|
|
|
|
return props.children;
|
|
});
|
|
|
|
ReduxInit.displayName = 'ReduxInit';
|