mirror of
https://github.com/hexastack/hexabot
synced 2025-04-04 05:11:09 +00:00
Merge pull request #772 from Hexastack/feat/replace-mutateasync-with-mutate
feat: replace mutateasync with mutate
This commit is contained in:
commit
4bc79332e7
@ -84,7 +84,7 @@ const AttachmentUploader: FC<FileUploadProps> = ({
|
||||
const dialogs = useDialogs();
|
||||
const [isDragOver, setIsDragOver] = useState<boolean>(false);
|
||||
const { toast } = useToast();
|
||||
const { mutateAsync: uploadAttachment } = useUpload(EntityType.ATTACHMENT, {
|
||||
const { mutate: uploadAttachment } = useUpload(EntityType.ATTACHMENT, {
|
||||
onError: () => {
|
||||
toast.error(t("message.upload_failed"));
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2024 Hexastack. All rights reserved.
|
||||
* Copyright © 2025 Hexastack. All rights reserved.
|
||||
*
|
||||
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
||||
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
||||
@ -38,7 +38,7 @@ export const Login = () => {
|
||||
const { toast } = useToast();
|
||||
const router = useRouter();
|
||||
const { authenticate } = useAuth();
|
||||
const { mutateAsync: login, isLoading } = useLogin({
|
||||
const { mutate: login, isLoading } = useLogin({
|
||||
onSuccess: (data) => {
|
||||
if (data.state) authenticate(data);
|
||||
else {
|
||||
@ -49,7 +49,7 @@ export const Login = () => {
|
||||
toast.error(t("message.login_failure"));
|
||||
},
|
||||
});
|
||||
const { mutateAsync: confirmAccount } = useConfirmAccount({
|
||||
const { mutate: confirmAccount } = useConfirmAccount({
|
||||
onSuccess: () => {
|
||||
toast.success(t("message.reset_confirm_success"));
|
||||
},
|
||||
@ -76,8 +76,8 @@ export const Login = () => {
|
||||
required: t("message.password_is_required"),
|
||||
},
|
||||
};
|
||||
const onSubmitForm = async (data: ILoginAttributes) => {
|
||||
await login(data);
|
||||
const onSubmitForm = (data: ILoginAttributes) => {
|
||||
login(data);
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2024 Hexastack. All rights reserved.
|
||||
* Copyright © 2025 Hexastack. All rights reserved.
|
||||
*
|
||||
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
||||
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
||||
@ -53,7 +53,7 @@ export const Register = () => {
|
||||
const { t } = useTranslate();
|
||||
const router = useRouter();
|
||||
const { toast } = useToast();
|
||||
const { mutateAsync: acceptInvite, isLoading } = useAcceptInvite({
|
||||
const { mutate: acceptInvite, isLoading } = useAcceptInvite({
|
||||
onError: () => {
|
||||
toast.error(t("message.internal_server_error"));
|
||||
},
|
||||
@ -108,11 +108,11 @@ export const Register = () => {
|
||||
},
|
||||
},
|
||||
};
|
||||
const onSubmitForm = async ({
|
||||
const onSubmitForm = ({
|
||||
password2: _password2,
|
||||
...rest
|
||||
}: TRegisterExtendedPayload) => {
|
||||
await acceptInvite(rest);
|
||||
acceptInvite(rest);
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
|
@ -39,11 +39,11 @@ export const ContextVarForm: FC<ComponentFormProps<IContextVar>> = ({
|
||||
toast.success(t("message.success_save"));
|
||||
},
|
||||
};
|
||||
const { mutateAsync: createContextVar } = useCreate(
|
||||
const { mutate: createContextVar } = useCreate(
|
||||
EntityType.CONTEXT_VAR,
|
||||
options,
|
||||
);
|
||||
const { mutateAsync: updateContextVar } = useUpdate(
|
||||
const { mutate: updateContextVar } = useUpdate(
|
||||
EntityType.CONTEXT_VAR,
|
||||
options,
|
||||
);
|
||||
@ -72,7 +72,7 @@ export const ContextVarForm: FC<ComponentFormProps<IContextVar>> = ({
|
||||
required: t("message.label_is_required"),
|
||||
},
|
||||
};
|
||||
const onSubmitForm = async (params: IContextVarAttributes) => {
|
||||
const onSubmitForm = (params: IContextVarAttributes) => {
|
||||
if (data) {
|
||||
updateContextVar({ id: data.id, params });
|
||||
} else {
|
||||
|
@ -39,7 +39,7 @@ export function Chat() {
|
||||
const { t, i18n } = useTranslate();
|
||||
const { subscriber } = useChat();
|
||||
const { user } = useAuth();
|
||||
const { mutateAsync: createMessage } = useCreate(EntityType.MESSAGE);
|
||||
const { mutate: createMessage } = useCreate(EntityType.MESSAGE);
|
||||
const { replyTo, messages, fetchNextPage, hasNextPage, isFetching } =
|
||||
useInfinitedLiveMessages();
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2024 Hexastack. All rights reserved.
|
||||
* Copyright © 2025 Hexastack. All rights reserved.
|
||||
*
|
||||
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
||||
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
||||
@ -52,7 +52,7 @@ export const Languages = () => {
|
||||
params: searchPayload,
|
||||
},
|
||||
);
|
||||
const { mutateAsync: updateLanguage } = useUpdate(EntityType.LANGUAGE, {
|
||||
const { mutate: updateLanguage } = useUpdate(EntityType.LANGUAGE, {
|
||||
onError: () => {
|
||||
toast.error(t("message.internal_server_error"));
|
||||
},
|
||||
@ -61,7 +61,7 @@ export const Languages = () => {
|
||||
toast.success(t("message.success_save"));
|
||||
},
|
||||
});
|
||||
const { mutateAsync: deleteLanguage } = useDelete(EntityType.LANGUAGE, {
|
||||
const { mutate: deleteLanguage } = useDelete(EntityType.LANGUAGE, {
|
||||
onError: () => {
|
||||
toast.error(t("message.internal_server_error"));
|
||||
},
|
||||
|
@ -110,7 +110,7 @@ export default function NlpSample() {
|
||||
toast.success(t("message.item_delete_success"));
|
||||
},
|
||||
});
|
||||
const { mutateAsync: importDataset, isLoading } = useImport(
|
||||
const { mutate: importDataset, isLoading } = useImport(
|
||||
EntityType.NLP_SAMPLE,
|
||||
{
|
||||
onError: () => {
|
||||
@ -297,8 +297,8 @@ export default function NlpSample() {
|
||||
const handleSelectionChange = (selection: GridRowSelectionModel) => {
|
||||
setSelectedNlpSamples(selection as string[]);
|
||||
};
|
||||
const handleImportChange = async (file: File) => {
|
||||
await importDataset(file);
|
||||
const handleImportChange = (file: File) => {
|
||||
importDataset(file);
|
||||
};
|
||||
|
||||
return (
|
||||
|
@ -62,7 +62,7 @@ export const Nlp = ({
|
||||
};
|
||||
const { t } = useTranslate();
|
||||
const { toast } = useToast();
|
||||
const { mutateAsync: createSample } = useCreate<
|
||||
const { mutate: createSample } = useCreate<
|
||||
EntityType.NLP_SAMPLE,
|
||||
INlpDatasetSampleAttributes,
|
||||
INlpSample,
|
||||
|
@ -34,7 +34,7 @@ export const ProfileForm: FC<ProfileFormProps> = ({ user }) => {
|
||||
const { t } = useTranslate();
|
||||
const queryClient = useQueryClient();
|
||||
const { toast } = useToast();
|
||||
const { mutateAsync: updateProfile, isLoading } = useUpdateProfile({
|
||||
const { mutate: updateProfile, isLoading } = useUpdateProfile({
|
||||
onError: () => {
|
||||
toast.error(t("message.internal_server_error"));
|
||||
},
|
||||
@ -79,12 +79,12 @@ export const ProfileForm: FC<ProfileFormProps> = ({ user }) => {
|
||||
},
|
||||
},
|
||||
};
|
||||
const onSubmitForm = async ({
|
||||
const onSubmitForm = ({
|
||||
password,
|
||||
password2: _password2,
|
||||
...rest
|
||||
}: IProfileAttributes) => {
|
||||
await updateProfile({
|
||||
updateProfile({
|
||||
...rest,
|
||||
password: password || undefined,
|
||||
});
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2024 Hexastack. All rights reserved.
|
||||
* Copyright © 2025 Hexastack. All rights reserved.
|
||||
*
|
||||
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
||||
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
||||
@ -85,7 +85,7 @@ export const Settings = () => {
|
||||
initialSortState: [{ field: "weight", sort: "asc" }],
|
||||
},
|
||||
);
|
||||
const { mutateAsync: updateSetting } = useUpdate(EntityType.SETTING, {
|
||||
const { mutate: updateSetting } = useUpdate(EntityType.SETTING, {
|
||||
onError: () => {
|
||||
toast.error(t("message.internal_server_error"));
|
||||
},
|
||||
|
@ -46,7 +46,7 @@ export const BlockEditForm: FC<ComponentFormProps<IBlock>> = ({
|
||||
setSelectedTab(newValue);
|
||||
};
|
||||
const { toast } = useToast();
|
||||
const { mutateAsync: updateBlock } = useUpdate(EntityType.BLOCK, {
|
||||
const { mutate: updateBlock } = useUpdate(EntityType.BLOCK, {
|
||||
onError: () => {
|
||||
rest.onError?.();
|
||||
toast.error(t("message.internal_server_error"));
|
||||
@ -94,7 +94,7 @@ export const BlockEditForm: FC<ComponentFormProps<IBlock>> = ({
|
||||
required: t("message.name_is_required"),
|
||||
},
|
||||
};
|
||||
const onSubmitForm = async (params: IBlockAttributes) => {
|
||||
const onSubmitForm = (params: IBlockAttributes) => {
|
||||
if (block) {
|
||||
updateBlock({ id: block.id, params });
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2024 Hexastack. All rights reserved.
|
||||
* Copyright © 2025 Hexastack. All rights reserved.
|
||||
*
|
||||
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
||||
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
||||
@ -252,12 +252,12 @@ const VisualEditorProvider: React.FC<VisualEditorContextProps> = ({
|
||||
children,
|
||||
}) => {
|
||||
const [selectedCategoryId, setSelectedCategoryId] = React.useState("");
|
||||
const { mutateAsync: createBlock } = useCreate(EntityType.BLOCK);
|
||||
const createNode = async (payload: any) => {
|
||||
const { mutate: createBlock } = useCreate(EntityType.BLOCK);
|
||||
const createNode = (payload: any) => {
|
||||
payload.position = payload.position || getCentroid();
|
||||
payload.category = payload.category || selectedCategoryId;
|
||||
|
||||
return await createBlock(payload, {
|
||||
return createBlock(payload, {
|
||||
onSuccess({ id }) {
|
||||
addNode({
|
||||
...payload,
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2024 Hexastack. All rights reserved.
|
||||
* Copyright © 2025 Hexastack. All rights reserved.
|
||||
*
|
||||
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
||||
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
||||
@ -7,10 +7,10 @@
|
||||
*/
|
||||
|
||||
import {
|
||||
NodeModel,
|
||||
DiagramModel,
|
||||
DiagramEngine,
|
||||
DiagramModel,
|
||||
DiagramModelGenerics,
|
||||
NodeModel,
|
||||
} from "@projectstorm/react-diagrams";
|
||||
import { ReactNode } from "react";
|
||||
|
||||
@ -38,7 +38,7 @@ export interface IVisualEditor {
|
||||
}
|
||||
export interface IVisualEditorContext {
|
||||
addNode: (payload: any) => NodeModel;
|
||||
createNode: (payload: any) => Promise<IBlock>;
|
||||
createNode: (payload: any) => void;
|
||||
buildDiagram: (props: IVisualEditor) => {
|
||||
model: DiagramModel<DiagramModelGenerics>;
|
||||
engine: DiagramEngine;
|
||||
|
Loading…
Reference in New Issue
Block a user