Uecko_ERP/modules/customers/src/web/pages/create/customer-create.tsx

106 lines
3.6 KiB
TypeScript
Raw Normal View History

2025-09-23 08:59:15 +00:00
import { AppBreadcrumb, AppContent } from "@repo/rdx-ui/components";
2025-09-22 17:43:55 +00:00
import { useNavigate } from "react-router-dom";
2025-09-23 08:59:15 +00:00
import { FormCommitButtonGroup, UnsavedChangesProvider } from "@erp/core/hooks";
2025-09-22 17:43:55 +00:00
import { showErrorToast, showSuccessToast } from "@repo/shadcn-ui/lib/utils";
import { useState } from "react";
import { FieldErrors } from "react-hook-form";
import { CustomerEditForm, ErrorAlert } from "../../components";
import { useCreateCustomerMutation } from "../../hooks";
import { useTranslation } from "../../i18n";
import { CustomerFormData, defaultCustomerFormData } from "../../schemas";
export const CustomerCreate = () => {
const { t } = useTranslation();
const navigate = useNavigate();
const [isDirty, setIsDirty] = useState(false);
// 2) Estado de creación (mutación)
const {
mutateAsync,
isPending: isCreating,
isError: isCreateError,
error: createError,
} = useCreateCustomerMutation();
// 3) Submit con navegación condicionada por éxito
const handleSubmit = async (formData: CustomerFormData) => {
/*const changedData: Record<string, string> = {};
Object.keys(dirtyFields).forEach((field) => {
const value = String(currentValues[field as keyof CustomerFormData]);
changedData[field] = value;
});*/
try {
const result = await mutateAsync({ data: formData });
console.log(result);
if (result) {
showSuccessToast(t("pages.create.successTitle"), t("pages.create.successMsg"));
navigate("/customers/list");
}
} catch (e) {
showErrorToast(t("pages.create.errorTitle"), (e as Error).message);
} finally {
}
};
const handleError = (errors: FieldErrors<CustomerFormData>) => {
console.error("Errores en el formulario:", errors);
// Aquí puedes manejar los errores, por ejemplo, mostrar un mensaje al usuario
};
2025-09-23 08:59:15 +00:00
console.log("render");
2025-09-22 17:43:55 +00:00
return (
<>
<AppBreadcrumb />
<AppContent>
2025-09-23 08:59:15 +00:00
<UnsavedChangesProvider isDirty={isDirty}>
<div className='flex items-center justify-between space-y-4 px-6'>
<div className='space-y-2'>
<h2 className='text-2xl font-bold tracking-tight text-balance scroll-m-2'>
{t("pages.create.title")}
</h2>
<p className='text-muted-foreground scroll-m-20 tracking-tight text-balance'>
{t("pages.create.description")}
</p>
</div>
<FormCommitButtonGroup
cancel={{
to: "/customers/list",
2025-09-22 17:43:55 +00:00
}}
2025-09-23 08:59:15 +00:00
submit={{
formId: "customer-create-form",
disabled: isCreating,
isLoading: isCreating,
}}
/>
</div>
{/* Alerta de error de actualización (si ha fallado el último intento) */}
{isCreateError && (
<ErrorAlert
title={t("pages.create.errorTitle", "No se pudo guardar los cambios")}
message={
(createError as Error)?.message ??
t("pages.create.errorMsg", "Revisa los datos e inténtalo de nuevo.")
}
/>
)}
2025-09-22 17:43:55 +00:00
2025-09-23 08:59:15 +00:00
<div className='flex flex-1 flex-col gap-4 p-4'>
<CustomerEditForm
formId={"customer-create-form"} // para que el botón del header pueda hacer submit
initialValues={defaultCustomerFormData}
onSubmit={handleSubmit}
onError={handleError}
onDirtyChange={setIsDirty}
/>
</div>
</UnsavedChangesProvider>
2025-09-22 17:43:55 +00:00
</AppContent>
</>
);
};