123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- import { apiInterceptors, getDbList, getDbSupportType, postDbDelete } from '@/client/api';
- import GPTCard from '@/components/common/gpt-card';
- import MuiLoading from '@/components/common/loading';
- import FormDialog from '@/components/database/form-dialog';
- import ConstructLayout from '@/new-components/layout/Construct';
- import { DBOption, DBType, DbListResponse, DbSupportTypeResponse } from '@/types/db';
- import { dbMapper } from '@/utils';
- import { DeleteFilled, EditFilled, PlusOutlined } from '@ant-design/icons';
- import { useAsyncEffect } from 'ahooks';
- import { Badge, Button, Card, Drawer, Empty, Modal, message } from 'antd';
- import { useMemo, useState } from 'react';
- import { useTranslation } from 'react-i18next';
- type DBItem = DbListResponse[0];
- export function isFileDb(dbTypeList: DBOption[], dbType: DBType) {
- return dbTypeList.find(item => item.value === dbType)?.isFileDb;
- }
- function Database() {
- // const { setCurrentDialogInfo } = useContext(ChatContext); // unused
- // const router = useRouter(); // unused
- const { t } = useTranslation();
- const [dbList, setDbList] = useState<DbListResponse>([]);
- const [dbSupportList, setDbSupportList] = useState<DbSupportTypeResponse>([]);
- const [loading, setLoading] = useState(false);
- const [modal, setModal] = useState<{
- open: boolean;
- info?: DBItem;
- dbType?: DBType;
- }>({ open: false });
- const [draw, setDraw] = useState<{
- open: boolean;
- dbList?: DbListResponse;
- name?: string;
- type?: DBType;
- }>({ open: false });
- const getDbSupportList = async () => {
- const [, data] = await apiInterceptors(getDbSupportType());
- setDbSupportList(data ?? []);
- };
- const refreshDbList = async () => {
- setLoading(true);
- const [, data] = await apiInterceptors(getDbList());
- setDbList(data ?? []);
- setLoading(false);
- };
- const dbTypeList = useMemo(() => {
- const supportDbList = dbSupportList.map(item => {
- const { db_type, is_file_db } = item;
- return { ...dbMapper[db_type], value: db_type, isFileDb: is_file_db };
- }) as DBOption[];
- const unSupportDbList = Object.keys(dbMapper)
- .filter(item => !supportDbList.some(db => db.value === item))
- .map(item => ({
- ...dbMapper[item],
- value: dbMapper[item].label,
- disabled: true,
- })) as DBOption[];
- return [...supportDbList, ...unSupportDbList];
- }, [dbSupportList]);
- const onModify = (item: DBItem) => {
- setModal({ open: true, info: item });
- };
- const onDelete = (item: DBItem) => {
- Modal.confirm({
- title: 'Tips',
- content: `Do you Want to delete the ${item.db_name}?`,
- onOk() {
- return new Promise<void>((resolve, reject) => {
- handleDelete(item.db_name, resolve, reject);
- });
- },
- });
- };
- const handleDelete = async (dbName: string, resolve: () => void, reject: () => void) => {
- try {
- const [err] = await apiInterceptors(postDbDelete(dbName));
- if (err) {
- message.error(err.message);
- reject();
- return;
- }
- message.success('success');
- refreshDbList();
- resolve();
- } catch {
- reject();
- }
- };
- const dbListByType = useMemo(() => {
- const mapper = dbTypeList.reduce(
- (acc, item) => {
- acc[item.value] = dbList.filter(dbConn => dbConn.db_type === item.value);
- return acc;
- },
- {} as Record<DBType, DbListResponse>,
- );
- return mapper;
- }, [dbList, dbTypeList]);
- useAsyncEffect(async () => {
- await refreshDbList();
- await getDbSupportList();
- }, []);
- const handleDbTypeClick = (info: DBOption) => {
- const dbItems = dbList.filter(item => item.db_type === info.value);
- setDraw({
- open: true,
- dbList: dbItems,
- name: info.label,
- type: info.value,
- });
- };
- // TODO: unused function call
- // const handleChat = async (item: IChatDbSchema) => {
- // const [, data] = await apiInterceptors(
- // newDialogue({
- // chat_mode: 'chat_with_db_execute',
- // }),
- // );
- // // 知识库对话都默认私有知识库应用下
- // if (data?.conv_uid) {
- // setCurrentDialogInfo?.({
- // chat_scene: data.chat_mode,
- // app_code: data.chat_mode,
- // });
- // localStorage.setItem(
- // 'cur_dialog_info',
- // JSON.stringify({
- // chat_scene: data.chat_mode,
- // app_code: data.chat_mode,
- // }),
- // );
- // router.push(`/chat?scene=chat_with_db_execute&id=${data?.conv_uid}&db_name=${item.db_name}`);
- // }
- // };
- return (
- <ConstructLayout>
- <div className='relative min-h-full overflow-y-auto px-6 max-h-[90vh]'>
- <MuiLoading visible={loading} />
- <div className='flex justify-between items-center mb-6'>
- <div className='flex items-center gap-4'>
- {/* <Input
- variant="filled"
- prefix={<SearchOutlined />}
- placeholder={t('please_enter_the_keywords')}
- // onChange={onSearch}
- // onPressEnter={onSearch}
- allowClear
- className="w-[230px] h-[40px] border-1 border-white backdrop-filter backdrop-blur-lg bg-white bg-opacity-30 dark:border-[#6f7f95] dark:bg-[#6f7f95] dark:bg-opacity-60"
- /> */}
- </div>
- <div className='flex items-center gap-4'>
- <Button
- className='border-none text-white bg-button-gradient'
- icon={<PlusOutlined />}
- onClick={() => {
- setModal({ open: true });
- }}
- >
- {t('Add_Datasource')}
- </Button>
- </div>
- </div>
- <div className='flex flex-wrap mx-[-8px] gap-2 md:gap-4'>
- {dbTypeList.map(item => {
- return (
- <Badge key={item.value} count={dbListByType[item.value]?.length} className='min-h-fit'>
- <GPTCard
- className='h-full'
- title={item.label}
- desc={item.desc ?? ''}
- disabled={item.disabled}
- icon={item.icon}
- onClick={() => {
- if (item.disabled) return;
- handleDbTypeClick(item);
- }}
- />
- </Badge>
- // <BlurredCard
- // description={item.db_path ?? ''}
- // name={item.db_name}
- // key={item.db_name}
- // logo={targetDBType?.icon}
- // RightTop={
- // <InnerDropdown
- // menu={{
- // items: [
- // {
- // key: 'del',
- // label: (
- // <span
- // className="text-red-400"
- // onClick={() => {
- // onDelete(item);
- // }}
- // >
- // {t('Delete_Btn')}
- // </span>
- // ),
- // },
- // ],
- // }}
- // />
- // }
- // rightTopHover={false}
- // Tags={
- // <div>
- // <Tag>{item.db_type}</Tag>
- // </div>
- // }
- // RightBottom={
- // <ChatButton
- // text={t('start_chat')}
- // onClick={() => {
- // handleChat(item);
- // }}
- // />
- // }
- // onClick={() => {
- // // if (targetDBType?.disabled) return;
- // // handleDbTypeClick(targetDBType);
- // onModify(item);
- // }}
- // />
- );
- })}
- </div>
- <FormDialog
- open={modal.open}
- dbTypeList={dbTypeList}
- choiceDBType={modal.dbType}
- editValue={modal.info}
- dbNames={dbList.map(item => item.db_name)}
- onSuccess={() => {
- setModal({ open: false });
- refreshDbList();
- }}
- onClose={() => {
- setModal({ open: false });
- }}
- />
- <Drawer
- title={draw.name}
- placement='right'
- onClose={() => {
- setDraw({ open: false });
- }}
- open={draw.open}
- >
- {draw.type && dbListByType[draw.type] && dbListByType[draw.type].length ? (
- <>
- <Button
- type='primary'
- className='mb-4 flex items-center'
- icon={<PlusOutlined />}
- onClick={() => {
- setModal({ open: true, dbType: draw.type });
- }}
- >
- Create
- </Button>
- {dbListByType[draw.type].map(item => (
- <Card
- key={item.db_name}
- title={item.db_name}
- extra={
- <>
- <EditFilled
- className='mr-2'
- style={{ color: '#1b7eff' }}
- onClick={() => {
- onModify(item);
- }}
- />
- <DeleteFilled
- style={{ color: '#ff1b2e' }}
- onClick={() => {
- onDelete(item);
- }}
- />
- </>
- }
- className='mb-4'
- >
- {item.db_path ? (
- <p>path: {item.db_path}</p>
- ) : (
- <>
- <p>host: {item.db_host}</p>
- <p>username: {item.db_user}</p>
- <p>port: {item.db_port}</p>
- </>
- )}
- <p>remark: {item.comment}</p>
- </Card>
- ))}
- </>
- ) : (
- <Empty image={Empty.PRESENTED_IMAGE_DEFAULT}>
- <Button
- type='primary'
- className='flex items-center mx-auto'
- icon={<PlusOutlined />}
- onClick={() => {
- setModal({ open: true, dbType: draw.type });
- }}
- >
- Create Now
- </Button>
- </Empty>
- )}
- </Drawer>
- </div>
- </ConstructLayout>
- );
- }
- export default Database;
|