mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-15 01:35:12 -05:00
52 lines
1.8 KiB
TypeScript
52 lines
1.8 KiB
TypeScript
import { Flex } from '@invoke-ai/ui-library';
|
|
import { ReactFlowProvider } from '@xyflow/react';
|
|
import { IAINoContentFallback } from 'common/components/IAIImageFallback';
|
|
import { AddNodeCmdk } from 'features/nodes/components/flow/AddNodeCmdk/AddNodeCmdk';
|
|
import { TopCenterPanel } from 'features/nodes/components/flow/panels/TopPanel/TopCenterPanel';
|
|
import { TopLeftPanel } from 'features/nodes/components/flow/panels/TopPanel/TopLeftPanel';
|
|
import { TopRightPanel } from 'features/nodes/components/flow/panels/TopPanel/TopRightPanel';
|
|
import WorkflowEditorSettings from 'features/nodes/components/flow/panels/TopRightPanel/WorkflowEditorSettings';
|
|
import { memo } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { PiFlowArrowBold } from 'react-icons/pi';
|
|
import { useGetOpenAPISchemaQuery } from 'services/api/endpoints/appInfo';
|
|
|
|
import { Flow } from './flow/Flow';
|
|
import BottomLeftPanel from './flow/panels/BottomLeftPanel/BottomLeftPanel';
|
|
import MinimapPanel from './flow/panels/MinimapPanel/MinimapPanel';
|
|
|
|
const NodeEditor = () => {
|
|
const { data, isLoading } = useGetOpenAPISchemaQuery();
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<ReactFlowProvider>
|
|
<Flex
|
|
bg="base.900"
|
|
display="flex"
|
|
position="relative"
|
|
width="full"
|
|
height="full"
|
|
alignItems="center"
|
|
justifyContent="center"
|
|
>
|
|
{data && (
|
|
<>
|
|
<Flow />
|
|
<AddNodeCmdk />
|
|
<TopLeftPanel />
|
|
<TopCenterPanel />
|
|
<TopRightPanel />
|
|
<BottomLeftPanel />
|
|
<MinimapPanel />
|
|
</>
|
|
)}
|
|
<WorkflowEditorSettings />
|
|
{isLoading && <IAINoContentFallback label={t('nodes.loadingNodes')} icon={PiFlowArrowBold} />}
|
|
</Flex>
|
|
</ReactFlowProvider>
|
|
);
|
|
};
|
|
|
|
export default memo(NodeEditor);
|