mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00

* perf: handle edge check * search model * feat: plugin input can render all input; fix: plugin default value * fix ts * feat: plugin input support required
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import MyIcon from '../Icon';
|
|
import {
|
|
Drawer,
|
|
DrawerBody,
|
|
DrawerHeader,
|
|
DrawerOverlay,
|
|
DrawerContent,
|
|
DrawerCloseButton,
|
|
DrawerContentProps,
|
|
Flex,
|
|
Image,
|
|
Box
|
|
} from '@chakra-ui/react';
|
|
import { useLoading } from '../../../hooks/useLoading';
|
|
|
|
type Props = DrawerContentProps & {
|
|
onClose: () => void;
|
|
iconSrc?: string;
|
|
title?: any;
|
|
isLoading?: boolean;
|
|
};
|
|
|
|
const MyRightDrawer = ({
|
|
onClose,
|
|
iconSrc,
|
|
title,
|
|
maxW = ['90vw', '30vw'],
|
|
children,
|
|
isLoading,
|
|
...props
|
|
}: Props) => {
|
|
const { Loading } = useLoading();
|
|
return (
|
|
<Drawer isOpen placement="right" onClose={onClose}>
|
|
<DrawerOverlay />
|
|
<DrawerContent
|
|
maxW={maxW}
|
|
{...props}
|
|
h={'94%'}
|
|
mt={'2%'}
|
|
borderLeftRadius={'lg'}
|
|
overflow={'hidden'}
|
|
>
|
|
<Flex
|
|
display={'flex'}
|
|
alignItems={'center'}
|
|
fontWeight={500}
|
|
background={'#FBFBFC'}
|
|
borderBottom={'1px solid #F4F6F8'}
|
|
roundedTop={'lg'}
|
|
py={'10px'}
|
|
px={5}
|
|
>
|
|
{iconSrc && (
|
|
<>
|
|
{iconSrc.startsWith('/') ? (
|
|
<Image mr={3} objectFit={'contain'} alt="" src={iconSrc} w={'20px'} />
|
|
) : (
|
|
<MyIcon mr={3} name={iconSrc as any} w={'20px'} />
|
|
)}
|
|
</>
|
|
)}
|
|
<Box flex={'1'} fontSize={'lg'}>
|
|
{title}
|
|
</Box>
|
|
<DrawerCloseButton position={'relative'} fontSize={'sm'} top={0} right={0} />
|
|
</Flex>
|
|
|
|
<DrawerBody overflow={'unset'} px={props?.px}>
|
|
{children}
|
|
<Loading loading={isLoading} fixed={false} />
|
|
</DrawerBody>
|
|
</DrawerContent>
|
|
</Drawer>
|
|
);
|
|
};
|
|
|
|
export default MyRightDrawer;
|