117 lines
3.7 KiB
JavaScript
117 lines
3.7 KiB
JavaScript
import React, { useEffect, useState } from 'react'
|
|
import { useForm } from 'react-hook-form';
|
|
import { z } from 'zod';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { MasterRespository } from '../../repositories/MastersRepository';
|
|
import { clearApiCacheKey } from '../../slices/apiCacheSlice';
|
|
import { getCachedData, cacheData } from '../../slices/apiDataManager';
|
|
import showToast from '../../services/toastService';
|
|
import {useCreateContactCategory} from '../../hooks/masterHook/useMaster';
|
|
import Label from '../common/Label';
|
|
|
|
|
|
const schema = z.object({
|
|
name: z.string().min(1, { message: "Category name is required" }),
|
|
description: z.string().min(1, { message: "Description is required" })
|
|
.max(255, { message: "Description cannot exceed 255 characters" }),
|
|
});
|
|
|
|
const CreateContactCategory = ({ onClose }) => {
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors },
|
|
reset,
|
|
} = useForm({
|
|
resolver: zodResolver(schema),
|
|
defaultValues: {
|
|
name: "",
|
|
description: "",
|
|
},
|
|
});
|
|
|
|
const [descriptionLength, setDescriptionLength] = useState(0);
|
|
const maxDescriptionLength = 255;
|
|
|
|
const { mutate: createContactCategory, isPending: isLoading } = useCreateContactCategory(() => onClose?.());
|
|
|
|
const onSubmit = (payload) => {
|
|
createContactCategory(payload);
|
|
};
|
|
// const onSubmit = (data) => {
|
|
// setIsLoading(true)
|
|
// MasterRespository.createContactCategory(data).then((resp)=>{
|
|
// setIsLoading(false)
|
|
// resetForm()
|
|
// const cachedData = getCachedData("Contact Category");
|
|
// const updatedData = [...cachedData, resp?.data];
|
|
// cacheData("Contact Category", updatedData);
|
|
// showToast("Contact Category Added successfully.", "success");
|
|
|
|
// onClose()
|
|
// }).catch((error)=>{
|
|
// showToast(error?.response?.data?.message, "error");
|
|
// setIsLoading(false)
|
|
// })
|
|
// };
|
|
const resetForm = () => {
|
|
reset({ name: "", description: "" });
|
|
setDescriptionLength(0);
|
|
};
|
|
|
|
useEffect(() => {
|
|
return () => resetForm();
|
|
}, []);
|
|
|
|
return (<>
|
|
<form className="row g-2" onSubmit={handleSubmit(onSubmit)}>
|
|
<div className="col-12 col-md-12 text-start">
|
|
<Label className="form-label" required>Category Name</Label>
|
|
<input type="text"
|
|
{...register("name")}
|
|
className={`form-control ${errors.name ? 'is-invalids' : ''}`}
|
|
/>
|
|
{errors.name && <p className="text-danger">{errors.name.message}</p>}
|
|
</div>
|
|
<div className="col-12 col-md-12 text-start">
|
|
<Label className="form-label" htmlFor="description" required>Description</Label>
|
|
<textarea
|
|
rows="3"
|
|
{...register("description")}
|
|
className={`form-control ${errors.description ? 'is-invalids' : ''}`}
|
|
onChange={(e) => {
|
|
setDescriptionLength(e.target.value.length);
|
|
register("description").onChange(e);
|
|
}}
|
|
></textarea>
|
|
<div className="text-end small text-muted">
|
|
{maxDescriptionLength - descriptionLength} characters left
|
|
</div>
|
|
{errors.description && (
|
|
<p className="text-danger">{errors.description.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="col-12 text-end">
|
|
<button
|
|
type="reset"
|
|
className="btn btn-sm btn-label-secondary me-3"
|
|
data-bs-dismiss="modal"
|
|
aria-label="Close"
|
|
>
|
|
Cancel
|
|
</button>
|
|
<button type="submit" className="btn btn-sm btn-primary">
|
|
{isLoading? "Please Wait...":"Submit"}
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default CreateContactCategory; |