mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: Added UI functions related to data-flow knowledge base #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
83 lines
2.2 KiB
TypeScript
83 lines
2.2 KiB
TypeScript
import { ButtonLoading } from '@/components/ui/button';
|
|
import { useUpdateKnowledge } from '@/hooks/use-knowledge-request';
|
|
import { useMemo } from 'react';
|
|
import { useFormContext } from 'react-hook-form';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useParams } from 'umi';
|
|
|
|
export function GeneralSavingButton() {
|
|
const form = useFormContext();
|
|
const { saveKnowledgeConfiguration, loading: submitLoading } =
|
|
useUpdateKnowledge();
|
|
const { id: kb_id } = useParams();
|
|
const { t } = useTranslation();
|
|
|
|
const defaultValues = useMemo(
|
|
() => form.formState.defaultValues ?? {},
|
|
[form.formState.defaultValues],
|
|
);
|
|
const parser_id = defaultValues['parser_id'];
|
|
|
|
return (
|
|
<ButtonLoading
|
|
type="button"
|
|
loading={submitLoading}
|
|
onClick={() => {
|
|
(async () => {
|
|
let isValidate = await form.trigger('name');
|
|
const { name, description, permission, avatar } = form.getValues();
|
|
|
|
if (isValidate) {
|
|
saveKnowledgeConfiguration({
|
|
kb_id,
|
|
parser_id,
|
|
name,
|
|
description,
|
|
avatar,
|
|
permission,
|
|
});
|
|
}
|
|
})();
|
|
}}
|
|
>
|
|
{t('knowledgeConfiguration.save')}
|
|
</ButtonLoading>
|
|
);
|
|
}
|
|
|
|
export function SavingButton() {
|
|
const { saveKnowledgeConfiguration, loading: submitLoading } =
|
|
useUpdateKnowledge();
|
|
const form = useFormContext();
|
|
const { id: kb_id } = useParams();
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<ButtonLoading
|
|
loading={submitLoading}
|
|
onClick={() => {
|
|
(async () => {
|
|
try {
|
|
let beValid = await form.formControl.trigger();
|
|
if (beValid) {
|
|
form.handleSubmit(async (values) => {
|
|
console.log('saveKnowledgeConfiguration: ', values);
|
|
delete values['avatar'];
|
|
await saveKnowledgeConfiguration({
|
|
kb_id,
|
|
...values,
|
|
});
|
|
})();
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
} finally {
|
|
}
|
|
})();
|
|
}}
|
|
>
|
|
{t('knowledgeConfiguration.save')}
|
|
</ButtonLoading>
|
|
);
|
|
}
|