259 lines
8.0 KiB
TypeScript
259 lines
8.0 KiB
TypeScript
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
|
import { useManageMunicipiosContext } from '../hooks/useManageMunicipiosContext';
|
|
import { Alert, useDataGrid } from '@/components';
|
|
import axios from 'axios';
|
|
import { apiConfig } from '@/config/api.config';
|
|
import { toast } from 'sonner';
|
|
import {
|
|
Dialog,
|
|
DialogBody,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogHeader,
|
|
DialogTitle
|
|
} from '@/components/ui/dialog';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Button } from '@/components/ui/button';
|
|
import { getAuth, useAuthContext } from '@/auth';
|
|
import { useCallApi } from '@/hooks';
|
|
import { doSaveLogActivity } from '@/actions/GlobalActions';
|
|
import { RefreshCw } from 'lucide-react';
|
|
|
|
const API_URL = apiConfig.service_master_data;
|
|
|
|
const EditDialog = () => {
|
|
const { showEditDialog, handleEditDialog, selectedMunicipios, municipios } =
|
|
useManageMunicipiosContext();
|
|
const { reload } = useDataGrid();
|
|
const { PutData, GetData } = useCallApi();
|
|
const parsedUser = getAuth()?.user;
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
const [alert, setAlert] = useState({
|
|
show: false,
|
|
message: ''
|
|
});
|
|
|
|
const initialState = {
|
|
name: '',
|
|
updated_by: '',
|
|
updated_at: ''
|
|
};
|
|
|
|
const [formField, setFormField] = useState(initialState);
|
|
const created_time = new Date();
|
|
const formattedTime = created_time.toISOString().slice(0, 19).replace('T', ' ');
|
|
|
|
const [errors, setErrors] = useState<Record<string, string>>({});
|
|
|
|
const resetForm = () => {
|
|
setFormField(initialState);
|
|
setErrors({});
|
|
};
|
|
|
|
const validateForm = () => {
|
|
const requiredFields = [{ key: 'name', label: 'Municipio Name' }];
|
|
const newErrors: Record<string, string> = {};
|
|
let isValid = true;
|
|
|
|
requiredFields.forEach(({ key, label }) => {
|
|
if (
|
|
formField[key as keyof typeof formField] === '' ||
|
|
formField[key as keyof typeof formField] === null ||
|
|
formField[key as keyof typeof formField] === undefined
|
|
) {
|
|
newErrors[key] = `${label} is required`;
|
|
toast.error(`${label} is required`);
|
|
isValid = false;
|
|
}
|
|
});
|
|
|
|
setErrors(newErrors);
|
|
return isValid;
|
|
};
|
|
|
|
const doUpdateMunicipios = useCallback(
|
|
async (e: React.FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault();
|
|
setIsSubmitting(true);
|
|
|
|
try {
|
|
const response = await PutData(
|
|
`${API_URL}/municipios/update/${selectedMunicipios}`,
|
|
formField
|
|
);
|
|
|
|
if (response?.status) {
|
|
handleEditDialog(false, null);
|
|
resetForm();
|
|
toast.success('Success update municipio');
|
|
reload();
|
|
const createActivity = {
|
|
module: 'Manage Municipios',
|
|
description: `Edit Municipio => ${selectedMunicipios}`,
|
|
action: 'U'
|
|
};
|
|
|
|
doSaveLogActivity(createActivity);
|
|
} else {
|
|
toast.error('Failed update municipios');
|
|
setAlert({ show: true, message: response?.message });
|
|
}
|
|
} catch (error) {
|
|
toast.error('Something went wrong, please try again.');
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
},
|
|
[selectedMunicipios, formField]
|
|
);
|
|
|
|
const handleSubmit = (e: React.FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault();
|
|
setIsSubmitting(true);
|
|
if(!validateForm()) {
|
|
setIsSubmitting(false);
|
|
return;
|
|
}
|
|
|
|
|
|
doUpdateMunicipios(e);
|
|
// console.log(parsedUser.email);
|
|
// console.log(formField);
|
|
// setAlert({ show: false, message: '' });
|
|
};
|
|
|
|
const doFetchData = useCallback(async (id: string) => {
|
|
setIsLoading(true);
|
|
const minDelay = new Promise((resolve) => setTimeout(resolve, 300));
|
|
const fetchData = GetData(`${API_URL}/municipios/getdata/${id}`, { id });
|
|
const [response] = await Promise.all([fetchData, minDelay]);
|
|
|
|
if (response?.status) {
|
|
setFormField((prev) => ({
|
|
...prev,
|
|
name: response.data.name
|
|
}));
|
|
} else {
|
|
setFormField((prev) => ({
|
|
...prev,
|
|
name: ''
|
|
}));
|
|
}
|
|
setIsLoading(false);
|
|
}, []);
|
|
|
|
// const handleUpdate = (e: React.FormEvent<HTMLFormElement>) => {
|
|
// e.preventDefault();
|
|
|
|
// if (formField.name.trim() === '') {
|
|
// setAlert({ show: true, message: 'Please fill name field.' });
|
|
// return;
|
|
// }
|
|
|
|
// doUpdateMunicipios(e);
|
|
// console.log(formField);
|
|
// setAlert({ show: false, message: '' });
|
|
// };
|
|
|
|
useEffect(() => {
|
|
if (selectedMunicipios) {
|
|
doFetchData(selectedMunicipios);
|
|
}
|
|
}, [selectedMunicipios]);
|
|
|
|
useEffect(() => {
|
|
if (showEditDialog === false) {
|
|
resetForm();
|
|
}
|
|
}, [showEditDialog]);
|
|
|
|
useEffect(() => {
|
|
if (selectedMunicipios) {
|
|
setFormField({
|
|
name: formField.name,
|
|
updated_by: parsedUser.email,
|
|
updated_at: formattedTime
|
|
});
|
|
}
|
|
}, [formattedTime]);
|
|
|
|
// console.log(selectedMunicipios);
|
|
return (
|
|
<Dialog open={showEditDialog} onOpenChange={(open) => handleEditDialog(open, null)}>
|
|
<DialogContent className="container-fixed max-w-[768px] flex flex-col p-5 overflow-hidden">
|
|
<DialogHeader>
|
|
<DialogTitle>Municipio - Update</DialogTitle>
|
|
<DialogDescription></DialogDescription>
|
|
</DialogHeader>
|
|
<DialogBody>
|
|
<div className="flex flex-col">
|
|
{alert.show && (
|
|
<Alert variant="danger">
|
|
<h3>{alert.message}</h3>
|
|
</Alert>
|
|
)}
|
|
|
|
{isLoading ? (
|
|
<div className="flex flex-col items-center justify-center p-8">
|
|
<div className="animate-pulse flex space-x-4 w-full">
|
|
<div className="flex-1 space-y-4 py-1">
|
|
<div className="h-4 bg-gray-200 rounded w-3/4"></div>
|
|
<div className="space-y-2">
|
|
<div className="h-4 bg-gray-200 rounded"></div>
|
|
<div className="h-4 bg-gray-200 rounded w-5/6"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<p className="mt-4 text-gray-500">Loading Municipio Details...</p>
|
|
</div>
|
|
) : (
|
|
<form onSubmit={handleSubmit}>
|
|
<div className="card-body grid gap-5">
|
|
<div className="w-full">
|
|
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
|
|
<label className="form-label flex items-center gap-1 max-w-56">
|
|
Municipios Name
|
|
<span className="text-red-500">*</span>
|
|
</label>
|
|
<div className="grow flex flex-col">
|
|
<Input
|
|
className={`input ${errors.name ? 'border-red-500' : ''}`}
|
|
type="text"
|
|
autoComplete="off"
|
|
value={formField.name}
|
|
onChange={({ target }) => {
|
|
setFormField((prev) => ({ ...prev, name: target.value }));
|
|
if (target.value) {
|
|
setErrors((prev) => ({ ...prev, name: '' }));
|
|
}
|
|
}}
|
|
/>
|
|
{errors.name && (
|
|
<span className="text-red-500 text-xs mt-1">{errors.name}</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex justify-end pt-2.5">
|
|
<Button variant="default" type="submit" disabled={isSubmitting}>
|
|
{isSubmitting ? (
|
|
<RefreshCw className="animate-spin h-8 w-8 text-white mx-7" />
|
|
) : (
|
|
'Save Changes'
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
)}
|
|
</div>
|
|
</DialogBody>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export default EditDialog;
|