balibabu
feat: Modify the modal style of creating an agent so that there are more templates in the field of view #2122 (#2123)
c33b05f
import { PlusOutlined } from '@ant-design/icons'; | |
import { Button, Empty, Flex, Spin } from 'antd'; | |
import AgentTemplateModal from './agent-template-modal'; | |
import FlowCard from './flow-card'; | |
import { useFetchDataOnMount, useSaveFlow } from './hooks'; | |
import { useTranslate } from '@/hooks/common-hooks'; | |
import styles from './index.less'; | |
const FlowList = () => { | |
const { | |
showFlowSettingModal, | |
hideFlowSettingModal, | |
flowSettingVisible, | |
flowSettingLoading, | |
onFlowOk, | |
} = useSaveFlow(); | |
const { t } = useTranslate('flow'); | |
const { list, loading } = useFetchDataOnMount(); | |
return ( | |
<Flex className={styles.flowListWrapper} vertical flex={1} gap={'large'}> | |
<Flex justify={'end'}> | |
<Button | |
type="primary" | |
icon={<PlusOutlined />} | |
onClick={showFlowSettingModal} | |
> | |
{t('createGraph')} | |
</Button> | |
</Flex> | |
<Spin spinning={loading}> | |
<Flex gap={'large'} wrap="wrap" className={styles.flowCardContainer}> | |
{list.length > 0 ? ( | |
list.map((item) => { | |
return <FlowCard item={item} key={item.id}></FlowCard>; | |
}) | |
) : ( | |
<Empty className={styles.knowledgeEmpty}></Empty> | |
)} | |
</Flex> | |
</Spin> | |
{flowSettingVisible && ( | |
<AgentTemplateModal | |
visible={flowSettingVisible} | |
onOk={onFlowOk} | |
loading={flowSettingLoading} | |
hideModal={hideFlowSettingModal} | |
></AgentTemplateModal> | |
)} | |
</Flex> | |
); | |
}; | |
export default FlowList; | |