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 {
2025-09-23 11:48:19 +00:00
mutate,
2025-09-22 17:43:55 +00:00
isPending: isCreating,
isError: isCreateError,
error: createError,
} = useCreateCustomerMutation();
// 3) Submit con navegación condicionada por éxito
2025-09-23 11:48:19 +00:00
const handleSubmit = (formData: CustomerFormData) => {
mutate(
{ data: formData },
{
onSuccess(data) {
setIsDirty(false);
showSuccessToast(t("pages.create.successTitle"), t("pages.create.successMsg"));
2025-09-23 09:14:29 +00:00
2025-09-23 11:48:19 +00:00
// El timeout es para que a React le dé tiempo a procesar
// el cambio de estado de isDirty / setIsDirty.
setTimeout(() => {
navigate("/customers/list", {
state: { customerId: data.id, isNew: true },
replace: true,
});
}, 0);
},
onError(error) {
showErrorToast(t("pages.create.errorTitle"), error.message);
},
2025-09-22 17:43:55 +00:00
}
2025-09-23 11:48:19 +00:00
);
2025-09-22 17:43:55 +00:00
};
const handleError = (errors: FieldErrors<CustomerFormData>) => {
console.error("Errores en el formulario:", errors);
// Aquí puedes manejar los errores, por ejemplo, mostrar un mensaje al usuario
};
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>
</>
);
};