-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68d9251
commit 450220c
Showing
1 changed file
with
68 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,96 @@ | ||
import React, { useState } from "react"; | ||
|
||
export default function Feedback() { | ||
const [formData, setFormData] = useState({ email: "", message: "" }); | ||
const handleChange = (e) => { | ||
e.preventDefault(); | ||
setFormData({ ...formData, [e.target.name]: e.target.value }); | ||
}; | ||
|
||
const [isOpen, setIsOpen] = useState(false); | ||
const [isFormCallback, setIsFormCallback] = useState(false); | ||
const toggle = (e) => { | ||
e.preventDefault(); | ||
setIsOpen(!isOpen); | ||
}; | ||
|
||
//TODO: send data | ||
const [formData, setFormData] = useState({ | ||
email: "", | ||
feedback: "", | ||
}); | ||
|
||
const feedbackMsg = { | ||
info: "Leave feedback", | ||
callback: "Thank you for your feedback", | ||
}; | ||
|
||
const handleInputChange = (event) => { | ||
event.preventDefault(); | ||
const { name, value } = event.target; | ||
setFormData((prevProps) => ({ | ||
...prevProps, | ||
[name]: value, | ||
})); | ||
}; | ||
|
||
const sendData = (e) => { | ||
e.preventDefault(); | ||
|
||
const formURL = `https://docs.google.com/forms/d/188U6r1PL0zvwo5nrBwpIh8CVtgvOMdvst2YM3PWT7hw/formResponse`; | ||
const inputsName = { | ||
email: "entry.331557816", | ||
feedback: "entry.1077515444", | ||
pageId: "entry.420531539", | ||
pageCommit: "entry.159427272", | ||
}; | ||
|
||
const formParams = new URLSearchParams(); | ||
for (const field in inputsName) { | ||
if (formData[field]) formParams.append(inputsName[field], formData[field]); | ||
} | ||
|
||
formParams.append(inputsName.pageId, window.location.pathname); | ||
|
||
const url = formURL + "?" + formParams + "&submit=Submit"; | ||
|
||
fetch(url, { | ||
method: "GET", | ||
headers: { | ||
"Content-Type": "application/x-www-form-urlencoded", | ||
}, | ||
mode: "no-cors", // this line is required for CORS policy reasons -> no usefull response available | ||
}) | ||
.then((_) => { | ||
setFormData({ email: "", feedback: "" }); | ||
setIsOpen(false); | ||
|
||
setIsFormCallback(true); | ||
setTimeout(() => setIsFormCallback(false), 2000); | ||
}) | ||
.catch((error) => { | ||
console.error("Error submitting form data:", error); | ||
}); | ||
}; | ||
|
||
return ( | ||
<div className="feedback"> | ||
<div className="footer__title">Was this documentation helpful?</div> | ||
<div className="footer__title">Was this page helpful?</div> | ||
{isOpen ? ( | ||
<form className="feedback__form"> | ||
<form className="feedback__form" onSubmit={sendData}> | ||
<button className="feedback__inner-btn feedback__close" aria-label="Close" onClick={toggle}> | ||
✕ | ||
</button> | ||
<div> | ||
<div className="feedback__field"> | ||
<label for="feedback-email">Email</label> | ||
<input type="email" name="email" id="feedback-email" placeholder="[email protected]" value={formData.name} onChange={handleChange} /> | ||
<label htmlFor="feedback-email">Email</label> | ||
<input type="email" name="email" id="feedback-email" placeholder="[email protected]" value={formData.email} onChange={handleInputChange} /> | ||
</div> | ||
<div className="feedback__field"> | ||
<label for="feedback-review">Review</label> | ||
<textarea type="text" name="message" id="feedback-review" placeholder="Your review here" rows="6" value={formData.message} onChange={handleChange} /> | ||
<label htmlFor="feedback-review">Review</label> | ||
<textarea type="text" name="feedback" id="feedback-review" placeholder="Your review here" rows="6" value={formData.feedback} onChange={handleInputChange} /> | ||
</div> | ||
<button className="feedback__inner-btn feedback__send">Send Feedback</button> | ||
<button className="feedback__inner-btn feedback__send" type="submit"> | ||
Send Feedback | ||
</button> | ||
</div> | ||
</form> | ||
) : ( | ||
<button className="feedback__btn" onClick={toggle}> | ||
Give a Feedback | ||
{!isFormCallback ? feedbackMsg.info : feedbackMsg.callback} | ||
</button> | ||
)} | ||
</div> | ||
|