645b397396
This commit refactors the contact form into a more robust inquiries form, relocating it from `/contact-us` to a new `/inquires` route. Key changes include: - Renamed and moved the component from `ContactUs` to `Inquires`. - Updated form fields: removed "Company Name", added "Message", and renamed "Work Email" and "Phone Number" for clarity. - Implemented comprehensive client-side validation for all fields using `react-hook-form`. - Added a loading state to the submit button to provide user feedback during submission. - The form now automatically resets upon successful submission. - Introduced new reusable `TextareaGroup` and `Loading` components to support the enhanced form functionality.
156 lines
3.9 KiB
TypeScript
156 lines
3.9 KiB
TypeScript
"use client";
|
|
import api from "@/service/api";
|
|
import { useState } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "react-toastify";
|
|
import InputGroup from "../_components/InputGroup";
|
|
import Loading from "../_components/Loading";
|
|
import TextareaGroup from "../_components/Textarea";
|
|
|
|
type TContactUsForm = {
|
|
full_name: string;
|
|
email: string;
|
|
phone: string;
|
|
message: string;
|
|
};
|
|
interface IProps {
|
|
columnsPerRow?: 1 | 2 | 3 | 4;
|
|
buttonText?: string;
|
|
}
|
|
const ContactUsForm = ({
|
|
buttonText = "Submit",
|
|
columnsPerRow = 1,
|
|
}: IProps) => {
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors },
|
|
reset,
|
|
} = useForm<TContactUsForm>();
|
|
const onSubmit = async (data: TContactUsForm) => {
|
|
setIsLoading(() => true);
|
|
try {
|
|
const response = (await api.post("contacts", { ...data })).data;
|
|
toast.success(response.message);
|
|
reset();
|
|
} catch (error) {
|
|
console.log(error);
|
|
toast.error("Something went wrong");
|
|
throw error;
|
|
} finally {
|
|
setIsLoading(() => false);
|
|
}
|
|
};
|
|
const gridColsClass = {
|
|
1: "lg:grid-cols-1",
|
|
2: "lg:grid-cols-2",
|
|
3: "lg:grid-cols-3",
|
|
4: "lg:grid-cols-4",
|
|
}[columnsPerRow];
|
|
|
|
const colSpanClass = {
|
|
1: "lg:col-span-1",
|
|
2: "lg:col-span-2",
|
|
3: "lg:col-span-3",
|
|
4: "lg:col-span-4",
|
|
}[columnsPerRow];
|
|
|
|
return (
|
|
<form
|
|
className={`w-full px-4 lg:px-16 py-10 grid ${gridColsClass} gap-4`}
|
|
onSubmit={handleSubmit(onSubmit)}>
|
|
<InputGroup
|
|
id="full_name"
|
|
label="Full Name"
|
|
register={register}
|
|
validation={{
|
|
required: {
|
|
message: "This field is required",
|
|
value: true,
|
|
},
|
|
minLength: {
|
|
value: 2,
|
|
message: "Please enter at least 2 characters",
|
|
},
|
|
maxLength: {
|
|
value: 100,
|
|
message: "Please enter at most 100 characters",
|
|
},
|
|
}}
|
|
type="text"
|
|
error={errors.full_name?.message}
|
|
/>
|
|
<InputGroup
|
|
id="email"
|
|
label="Email"
|
|
register={register}
|
|
validation={{
|
|
required: {
|
|
message: "This field is required",
|
|
value: true,
|
|
},
|
|
pattern: {
|
|
value: /^[^\s@]+@[^\s@]+\.[^\s@]+$/,
|
|
message: "Please enter a valid email address",
|
|
},
|
|
}}
|
|
type="email"
|
|
error={errors.email?.message}
|
|
/>
|
|
<InputGroup
|
|
id="phone"
|
|
label="Phone"
|
|
register={register}
|
|
validation={{
|
|
required: {
|
|
message: "This field is required",
|
|
value: true,
|
|
},
|
|
minLength: {
|
|
value: 10,
|
|
message: "Please enter at least 10 characters",
|
|
},
|
|
maxLength: {
|
|
value: 20,
|
|
message: "Please enter at most 20 characters",
|
|
},
|
|
pattern: {
|
|
value: /^[+\d]+$/,
|
|
message: "Please enter a valid phone number",
|
|
},
|
|
}}
|
|
type="text"
|
|
error={errors.phone?.message}
|
|
/>
|
|
<TextareaGroup
|
|
id="message"
|
|
label="Message"
|
|
register={register}
|
|
error={errors.message?.message}
|
|
validation={{
|
|
required: {
|
|
value: true,
|
|
message: "This field is required",
|
|
},
|
|
maxLength: {
|
|
value: 1000,
|
|
message: "Please enter at most 1000 characters",
|
|
},
|
|
minLength: {
|
|
value: 10,
|
|
message: "Please enter at least 10 characters",
|
|
},
|
|
}}
|
|
/>
|
|
<div className={`${colSpanClass} flex justify-end`}>
|
|
<button className="bg-(--primary) cursor-pointer w-fit text-white rounded-full py-4 px-6">
|
|
{isLoading ? <Loading /> : buttonText}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
);
|
|
};
|
|
|
|
export default ContactUsForm;
|