File size: 4,571 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
import axios from 'axios';
import React, { useState } from 'react';
import { useEffect } from 'react';
import { useForm } from 'react-hook-form';
import { useParams,useNavigate } from 'react-router-dom';
import toast from 'react-hot-toast';
import { Button, Col, Form, Row } from 'react-bootstrap';
import swal from 'sweetalert';
import { useAppContext } from '../../../../context';
const ReviewForm = ({setIsUpdated}) => {
const {state:{user: {email, img}}} = useAppContext()
const {id} = useParams();
const { register, handleSubmit, reset } = useForm();
const [review, setReview] = useState({});
const {name, address, description} = review;
useEffect(() => {
axios(`https://immense-river-40491.herokuapp.com/userReview/${id}`)
.then(res => {
setReview(res.data[0]);
})
}, [id])
const history = useNavigate ();
const onSubmit = data => {
const loading = toast.loading('Uploading...Please wait!');
const reviewData = {...data};
reviewData.email = review.email || email;
reviewData.img = review.img || img;
if(id){
axios.patch(`https://immense-river-40491.herokuapp.com/updateReview/${id}`, reviewData)
.then(res => {
if(res){
toast.dismiss(loading);
if(
data.name === name &&
data.address === address &&
data.description === description
){
toast.error("You haven't changed anything")
}else{
toast.success('your review was successful updated!');
}
history('/dashboard/review');
}
})
}else {
setIsUpdated(false)
axios.post('https://immense-river-40491.herokuapp.com/addReview', reviewData)
.then(res => {
if(res){
setIsUpdated(true)
toast.dismiss(loading);
swal("Success!", "Your review has been submitted successfully. We appreciate your contirbution.", "success");
}
})
}
reset();
}
return (
<section className='px-3'>
<div className="mx-auto reviewForm">
<Form onSubmit={handleSubmit(onSubmit)} className="w-100">
<Row className="justify-content-center px-4">
<Form.Group as={Col} md={12}>
<Form.Label style={{ fontWeight: "bold" }}>Your Name</Form.Label>
<Form.Control
type="text"
defaultValue={name || ""}
{...register("name", { required: true })}
placeholder="Your Name" />
</Form.Group>
<Form.Group as={Col} md={12}>
<Form.Label style={{ fontWeight: "bold" }}>Address</Form.Label>
<Form.Control
type="text"
defaultValue={address || ""}
{...register("address", { required: true })}
placeholder="Address" />
</Form.Group>
<Form.Group as={Col} md={12}>
<Form.Label style={{ fontWeight: "bold" }}>Description</Form.Label>
<Form.Control
style={{ height: "10rem" }}
type="text"
defaultValue={description || ""}
as="textarea"
{...register("description", { required: true })}
placeholder="Description" />
</Form.Group>
</Row>
<div className="text-center mt-1">
<Button type="submit" className="mainBtn">
{id ? 'update': 'submit'}
</Button>
</div>
</Form>
</div>
</section>
);
};
export default ReviewForm; |