mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-23 03:26:53 +08:00
### What problem does this PR solve? Feat: Create a data flow #9869 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
92 lines
2.3 KiB
TypeScript
92 lines
2.3 KiB
TypeScript
import message from '@/components/ui/message';
|
|
import { IFlow } from '@/interfaces/database/agent';
|
|
import dataflowService from '@/services/dataflow-service';
|
|
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useParams } from 'umi';
|
|
|
|
export const enum DataflowApiAction {
|
|
ListDataflow = 'listDataflow',
|
|
RemoveDataflow = 'removeDataflow',
|
|
FetchDataflow = 'fetchDataflow',
|
|
RunDataflow = 'runDataflow',
|
|
SetDataflow = 'setDataflow',
|
|
}
|
|
|
|
export const useRemoveDataflow = () => {
|
|
const queryClient = useQueryClient();
|
|
const { t } = useTranslation();
|
|
|
|
const {
|
|
data,
|
|
isPending: loading,
|
|
mutateAsync,
|
|
} = useMutation({
|
|
mutationKey: [DataflowApiAction.RemoveDataflow],
|
|
mutationFn: async (ids: string[]) => {
|
|
const { data } = await dataflowService.removeDataflow({
|
|
canvas_ids: ids,
|
|
});
|
|
if (data.code === 0) {
|
|
queryClient.invalidateQueries({
|
|
queryKey: [DataflowApiAction.ListDataflow],
|
|
});
|
|
|
|
message.success(t('message.deleted'));
|
|
}
|
|
return data.code;
|
|
},
|
|
});
|
|
|
|
return { data, loading, removeDataflow: mutateAsync };
|
|
};
|
|
|
|
export const useSetDataflow = () => {
|
|
const queryClient = useQueryClient();
|
|
const { t } = useTranslation();
|
|
|
|
const {
|
|
data,
|
|
isPending: loading,
|
|
mutateAsync,
|
|
} = useMutation({
|
|
mutationKey: [DataflowApiAction.SetDataflow],
|
|
mutationFn: async (params: Partial<IFlow>) => {
|
|
const { data } = await dataflowService.setDataflow(params);
|
|
if (data.code === 0) {
|
|
queryClient.invalidateQueries({
|
|
queryKey: [DataflowApiAction.FetchDataflow],
|
|
});
|
|
|
|
message.success(t(`message.${params.id ? 'modified' : 'created'}`));
|
|
}
|
|
return data?.code;
|
|
},
|
|
});
|
|
|
|
return { data, loading, setDataflow: mutateAsync };
|
|
};
|
|
|
|
export const useFetchDataflow = () => {
|
|
const { id } = useParams();
|
|
|
|
const {
|
|
data,
|
|
isFetching: loading,
|
|
refetch,
|
|
} = useQuery<IFlow>({
|
|
queryKey: [DataflowApiAction.FetchDataflow, id],
|
|
gcTime: 0,
|
|
initialData: {} as IFlow,
|
|
enabled: !!id,
|
|
refetchOnWindowFocus: false,
|
|
queryFn: async () => {
|
|
const { data } = await dataflowService.fetchDataflow(id);
|
|
|
|
return data?.data ?? ({} as IFlow);
|
|
},
|
|
});
|
|
|
|
return { data, loading, refetch };
|
|
};
|