406 lines
16 KiB
React
406 lines
16 KiB
React
import React, { useState, useEffect } from "react";
|
|
import { Link } from "react-router-dom";
|
|
import InputCom from "../Helpers/Inputs/InputCom";
|
|
import LoadingSpinner from "../Spinners/LoadingSpinner";
|
|
import usersService from "../../services/UsersService";
|
|
import { useSelector, useDispatch } from "react-redux";
|
|
import { tableReload } from "../../store/TableReloads";
|
|
import { Field, Form, Formik } from "formik";
|
|
import * as Yup from "yup";
|
|
|
|
const validationSchema = Yup.object().shape({
|
|
country: Yup.string()
|
|
.min(1, "Minimum 3 characters")
|
|
.max(25, "Maximum 25 characters")
|
|
.required("Country is required"),
|
|
price: Yup.number()
|
|
.typeError("you must specify a number")
|
|
.min(1, "Price must be greater than 0")
|
|
.required("Price is required"),
|
|
title: Yup.string()
|
|
.min(3, "Minimum 3 characters")
|
|
.max(100, "Maximum 25 characters")
|
|
.required("Title is required"),
|
|
description: Yup.string()
|
|
.min(3, "Minimum 3 characters")
|
|
.max(250, "Maximum 250 characters")
|
|
.required("Description is required"),
|
|
job_detail: Yup.string()
|
|
.min(3, "Minimum 3 characters")
|
|
.max(250, "Maximum 250 characters")
|
|
.required("Details is required"),
|
|
timeline_days: Yup.number()
|
|
.typeError("you must specify a number")
|
|
.min(1, "Price must be greater than 0")
|
|
.required("Timeline is required"),
|
|
category: Yup.array().min(1, "Select at least one checkbox"),
|
|
});
|
|
|
|
function AddJob({ popUpHandler, categories }) {
|
|
const ApiCall = new usersService();
|
|
let dispatch = useDispatch();
|
|
|
|
let { userDetails } = useSelector((state) => state.userDetails);
|
|
|
|
let [country, setCountry] = useState({
|
|
loading: true,
|
|
status: false,
|
|
data: [],
|
|
}); // To Hold the array of country getUserCountry returns
|
|
|
|
let initialValues = {
|
|
// initial values for formik
|
|
country: userDetails.country,
|
|
price: "",
|
|
title: "",
|
|
description: "",
|
|
job_detail: "",
|
|
timeline_days: "",
|
|
category: [],
|
|
};
|
|
|
|
let [requestStatus, setRequestStatus] = useState({
|
|
loading: false,
|
|
status: false,
|
|
message: "",
|
|
}); // Holds state when submit button is pressed
|
|
|
|
// FUNCTION TO GET COUNTRY
|
|
const getUserCountry = () => {
|
|
setCountry((prev) => ({ ...prev, loading: true }));
|
|
ApiCall.getSignupCountryData()
|
|
.then((res) => {
|
|
if (res.data.internal_return < 1) {
|
|
setCountry({ loading: false, status: true, data: [] });
|
|
return;
|
|
}
|
|
setCountry({
|
|
loading: false,
|
|
status: true,
|
|
data: res.data.signup_country,
|
|
});
|
|
})
|
|
.catch((err) => {
|
|
setCountry({ loading: false, status: false, data: [] });
|
|
});
|
|
};
|
|
|
|
// FUNCTION TO HANDLE ADD JOB FORM
|
|
const handleAddJob = (values, helpers) => {
|
|
values.category = values.category?.join("@");
|
|
setRequestStatus({ loading: true, status: false, message: "" });
|
|
ApiCall.jobManagerCreateJob(values)
|
|
.then((res) => {
|
|
if (res.data.internal_return < 1) {
|
|
setRequestStatus({
|
|
loading: false,
|
|
status: false,
|
|
message: "Could not complete your request at the moment",
|
|
});
|
|
return;
|
|
}
|
|
setRequestStatus({
|
|
loading: false,
|
|
status: true,
|
|
message: "Job Added Successfully",
|
|
});
|
|
setTimeout(() => {
|
|
dispatch(tableReload({ type: "JOBTABLE" }));
|
|
popUpHandler();
|
|
}, 1000);
|
|
})
|
|
.catch((err) => {
|
|
setRequestStatus({
|
|
loading: false,
|
|
status: false,
|
|
message: "Opps! soemthing went wrong. Try Again",
|
|
});
|
|
})
|
|
.finally(() => {
|
|
setTimeout(() => {
|
|
setRequestStatus({ loading: false, status: false, message: "" });
|
|
}, 5000);
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
getUserCountry();
|
|
}, []);
|
|
|
|
|
|
return (
|
|
<div className="add-job p-5 w-full bg-white rounded-md flex flex-col justify-between">
|
|
<Formik
|
|
initialValues={initialValues}
|
|
validationSchema={validationSchema}
|
|
onSubmit={handleAddJob}
|
|
>
|
|
{(props) => {
|
|
return (
|
|
<Form>
|
|
<div className="flex flex-col-reverse sm:flex-row">
|
|
<div className="fields w-full">
|
|
{/* inputs starts here */}
|
|
{/* country */}
|
|
<div className="xl:flex xl:space-x-7 mb-[5px]">
|
|
<div className="field w-full mb-6 xl:mb-0">
|
|
<label
|
|
htmlFor="country"
|
|
className="input-label text-[#181c32] dark:text-white text-[13.975px] leading-[20.9625px] font-semibold block"
|
|
>
|
|
Country
|
|
</label>
|
|
<select
|
|
id="country"
|
|
name="country"
|
|
disabled
|
|
value={props.values.country}
|
|
className={`input-field p-2 mt-3 rounded-md placeholder:text-base text-dark-gray dark:text-white w-full h-10 bg-slate-100 dark:bg-[#11131F] focus:ring-0 focus:outline-none`}
|
|
onChange={props.handleChange}
|
|
onBlur={props.handleBlur}
|
|
>
|
|
{country.loading ? (
|
|
<option className="text-slate-500 text-lg" value="">
|
|
Loading...
|
|
</option>
|
|
) : country.data.length ? (
|
|
<>
|
|
<option className="text-slate-500 text-lg" value="">
|
|
Select...
|
|
</option>
|
|
{country.data.map((item, index) => {
|
|
if (item[0] == userDetails.country) {
|
|
return (
|
|
<option
|
|
key={index}
|
|
className="text-slate-500 text-lg"
|
|
value={item[0]}
|
|
>
|
|
{item[1]}
|
|
</option>
|
|
);
|
|
}
|
|
})}
|
|
</>
|
|
) : (
|
|
<option className="text-slate-500 text-lg" value="">
|
|
No Options Found! Try Again
|
|
</option>
|
|
)}
|
|
</select>
|
|
</div>
|
|
|
|
{/* Price */}
|
|
<div className="field w-full">
|
|
<InputCom
|
|
fieldClass="px-6 text-right"
|
|
label="Price"
|
|
labelClass="tracking-wide"
|
|
inputBg="bg-slate-100"
|
|
type="number"
|
|
name="price"
|
|
placeholder="0"
|
|
value={props.values.price}
|
|
inputHandler={props.handleChange}
|
|
blurHandler={props.handleBlur}
|
|
errorBorder={props.errors.price && props.touched.price}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Title */}
|
|
|
|
<div className="field w-full mb-[5px]">
|
|
<InputCom
|
|
fieldClass="px-6"
|
|
label="Title"
|
|
labelClass="tracking-wide"
|
|
inputBg="bg-slate-100"
|
|
type="text"
|
|
name="title"
|
|
value={props.values.title}
|
|
inputHandler={props.handleChange}
|
|
blurHandler={props.handleBlur}
|
|
errorBorder={props.errors.title && props.touched.title}
|
|
/>
|
|
</div>
|
|
|
|
{/* Description */}
|
|
<div className="field w-full mb-[5px]">
|
|
<InputCom
|
|
fieldClass="px-6"
|
|
label="Description"
|
|
labelClass="tracking-wide"
|
|
inputBg="bg-slate-100"
|
|
type="text"
|
|
name="description"
|
|
value={props.values.description}
|
|
inputHandler={props.handleChange}
|
|
blurHandler={props.handleBlur}
|
|
errorBorder={props.errors.description && props.touched.description}
|
|
/>
|
|
</div>
|
|
|
|
{/* Details */}
|
|
<div className="field flex flex-col sm:flex-row w-full mb-[5px] gap-2">
|
|
<div className="sm:w-[60%] w-full">
|
|
<label
|
|
htmlFor="Job Delivery Details"
|
|
className='className="input-label text-[#181c32] dark:text-white text-[13.975px] leading-[20.9625px] font-semibold block"'
|
|
>
|
|
Job Delivery Details
|
|
</label>
|
|
<textarea
|
|
id="Job Delivery Details"
|
|
rows="5"
|
|
className={`input-field px-6 py-2 placeholder:text-base text-dark-gray dark:text-white w-full h-[100px] bg-slate-100 dark:bg-[#11131F] focus:ring-0 focus:outline-[#dce4e9] border border-[#dce4e9] rounded-[10px]`}
|
|
style={{ resize: "none" }}
|
|
name="job_detail"
|
|
value={props.values.job_detail}
|
|
onChange={props.handleChange}
|
|
onBlur={props.handleBlur}
|
|
/>
|
|
</div>
|
|
|
|
<div className="sm:w-[35%] w-full">
|
|
<div
|
|
htmlFor="Job Categories"
|
|
className='className="input-label text-[#181c32] dark:text-white text-[13.975px] leading-[20.9625px] font-semibold block"'
|
|
id="checked-group"
|
|
>
|
|
Categories
|
|
</div>
|
|
<div
|
|
className="sm:flex-col flex flex-wrap px-3 mt-3"
|
|
role="group"
|
|
aria-labelledby="checked-group"
|
|
>
|
|
{Object.entries(categories).map(([key, value]) => (
|
|
<label key={key} className="flex gap-1 w-full items-center">
|
|
<Field
|
|
type="checkbox"
|
|
name="category"
|
|
value={key}
|
|
/>
|
|
<span className="text-[13.975px]">{value}</span>
|
|
</label>
|
|
))}
|
|
</div>
|
|
</div>
|
|
|
|
{/* <div className={`${!props.errors && "invisible"} h-5`}>
|
|
{props.errors.job_detail && props.touched.job_detail && (
|
|
<p className="text-sm text-red-500">
|
|
{props.errors.job_detail}
|
|
</p>
|
|
)}
|
|
</div> */}
|
|
</div>
|
|
|
|
<div className="field w-full mb-[5px]">
|
|
<div className={`flex items-center justify-between mb-2.5`}>
|
|
<label
|
|
className="input-label text-[#181c32] dark:text-white text-[13.975px] leading-[20.9625px] font-semibold block"
|
|
htmlFor="timeline_days"
|
|
>
|
|
Timeline
|
|
<span className="text-green-700 text-sm tracking-wide">
|
|
- Expected duration of this task
|
|
</span>
|
|
</label>
|
|
</div>
|
|
|
|
<Field
|
|
component="select"
|
|
name="timeline_days"
|
|
className="input-field p-2 mt-3 rounded-md placeholder:text-base text-dark-gray dark:text-white w-full h-10 bg-slate-100 dark:bg-[#11131F] focus:ring-0 focus:outline-none"
|
|
value={props.values.timeline_days}
|
|
>
|
|
<option value="">Select Duration</option>
|
|
{publicArray.map(({ name, duration }, idx) => (
|
|
<option
|
|
className="text-slate-500 text-lg"
|
|
value={duration}
|
|
>
|
|
{name}
|
|
</option>
|
|
))}
|
|
</Field>
|
|
</div>
|
|
{/* inputs ends here */}
|
|
</div>
|
|
</div>
|
|
|
|
{/* ERROR DISPLAY AND SUBMIT BUTTON */}
|
|
<div className="content-footer w-full">
|
|
{/* error or success display */}
|
|
{requestStatus.message != "" &&
|
|
(!requestStatus.status ? (
|
|
<div
|
|
className={`relative p-4 my-4 text-[#912741] bg-[#fcd9e2] border-[#fbc6d3] mb-4 rounded-[0.475rem] text-md font-light leading-[19.5px] text-[13px]`}
|
|
>
|
|
{requestStatus.message}
|
|
</div>
|
|
) : (
|
|
requestStatus.status && (
|
|
<div
|
|
className={`relative p-4 my-4 text-green-700 bg-slate-200 border-slate-800 mb-4 rounded-[0.475rem] text-md font-light leading-[19.5px] text-[13px]`}
|
|
>
|
|
{requestStatus.message}
|
|
</div>
|
|
)
|
|
))}
|
|
{/* End of error or success display */}
|
|
|
|
<div className="w-full h-[70px] border-t border-light-purple dark:border-[#5356fb29] flex justify-end items-center">
|
|
<div className="flex items-center space-x-4 mr-9">
|
|
<Link
|
|
to="/myjobs"
|
|
className="text-18 text-light-red tracking-wide "
|
|
>
|
|
<span
|
|
className="border-b dark:border-[#5356fb29] border-light-red"
|
|
onClick={popUpHandler}
|
|
>
|
|
{" "}
|
|
Cancel
|
|
</span>
|
|
</Link>
|
|
|
|
{requestStatus.loading ? (
|
|
<LoadingSpinner size="8" color="sky-blue" />
|
|
) : (
|
|
<button
|
|
type="submit"
|
|
className="w-[152px] h-[46px] flex justify-center items-center btn-gradient text-base rounded-full text-white"
|
|
// className='w-20 h-11 flex justify-center items-center btn-gradient text-base rounded-full text-white'
|
|
>
|
|
Add Job
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Form>
|
|
);
|
|
}}
|
|
</Formik>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default AddJob;
|
|
|
|
const publicArray = [
|
|
{ duration: 1, name: "1 day" },
|
|
{ duration: 2, name: "2 days" },
|
|
{ duration: 3, name: "3 days" },
|
|
{ duration: 4, name: "4 days" },
|
|
{ duration: 5, name: "5 days" },
|
|
{ duration: 6, name: "6 days" },
|
|
{ duration: 7, name: "1 week" },
|
|
{ duration: 14, name: "2 weeks" },
|
|
{ duration: 21, name: "3 weeks" },
|
|
{ duration: 28, name: "4 weeks" },
|
|
];
|