feat(InterviewBooking, TimeSlotSelector): Added Calender and Time Slot functionality, readjusted Test function, Added Footer

This commit is contained in:
2025-01-25 15:36:43 -07:00
parent 0bbca385e3
commit bae0b80fc7
4 changed files with 176 additions and 16 deletions

View File

@ -1,46 +1,109 @@
import { useEffect, useState } from "react";
import { useEffect, useState, useRef } from "react";
import TimeSlotSelector from "./TimeSlotSelector"; // Import the TimeSlotSelector component
/**
* @param {null} null - Takes in nothing
* @returns {JSX.element} JSX - HTML and JS functionality
* @description Used for picking an interview slot
* @author Ahmad <ahmadmuhammadofficial@gmail.com>
* @todo CSS
*/
const InterviewForm = () => {
const [isButtonDisabled, setIsButtonDisabled] = useState(false);
useEffect(() => {
test();
}, []);
const dialogRef = useRef(null);
const [selectedTimeSlot, setSelectedTimeSlot] = useState(null);
/**
* @param {String HTML} event - Takes in form info
* @returns {null} null - Returns in nothing
* @description
* @author Ahmad <ahmadmuhammadofficial@gmail.com>
* @todo CSS
*/
const formsubmit = async (event) => {
event.preventDefault();
if (!selectedTimeSlot) {
alert("Please select a time slot!");
return;
}
setIsButtonDisabled(true);
await new Promise((res) => setTimeout(res, 1000));
const formData = new FormData(event.target);
const formObject = Object.fromEntries(formData.entries());
await console.log("Form Data:", formObject);
setIsButtonDisabled(false);
};
const test = async () => {
formObject.date = selectedTimeSlot["date"]; // Add the selected time slot to form data
formObject.startTime = selectedTimeSlot["startTime"];
console.log("Form Data:", formObject);
const res = await fetch(
// "https://bajabackend.bajacloud.duckdns.org/getAppointments",
"https://randomfox.ca/floof",
{ method: "GET" }
"https://bajabackend.bajacloud.duckdns.org/SelectInterview",
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(formObject),
}
);
let json = await res.json();
await console.log(json);
console.log(res.text);
// dialogRef.current.showModal();
setIsButtonDisabled(false);
};
return (
<>
<form onSubmit={formsubmit}>
<label for="name">Name (What to call you):</label>
<input type="text" id="fname" name="name" placeholder="Jaeinceins" />
<input
type="text"
id="fname"
name="intervieweeName"
placeholder="Jaeinceins"
required
/>
<label for="email">UCalgary Email:</label>
<input
type="text"
id="email"
name="email"
name="intervieweeEmail"
placeholder="jaeinceins.bhaja@ucalgary.ca"
required
/>
{/* Time Slot Selector */}
<TimeSlotSelector
onTimeSlotSelect={(timeSlot) => setSelectedTimeSlot(timeSlot)}
/>
<button type="submit" disabled={isButtonDisabled}>
Submit
</button>
</form>
<button onClick={test}> test</button>
{/* Success Dialog */}
<dialog ref={dialogRef}>
{" "}
{/* Add the `ref` attribute */}
<h2>Booking Successful!</h2>
<p>
Thank you for booking your interview slot. Well contact you soon.
</p>
<h4>
What to do if I cannot make it to any of the avaliable time slots or
need to rescedule?
</h4>
<p>
While we highly encourage sceduling an interview in one of the above
time slots, we recongize that not everyone can make it work with their
personal and university schedules.
</p>
<p>
Please email us at{" "}
<a href="mailto:uofcbaja@gmail.com">uofcbaja@gmail.com</a> to work out
an alternate interview time or for rescheduling.
</p>
</dialog>
</>
);
};