-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
77 lines (62 loc) · 2.32 KB
/
script.js
File metadata and controls
77 lines (62 loc) · 2.32 KB
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
// Tab navigation
function langName(tabName, elmnt, color) {
const tabcontent = document.querySelectorAll('.tabcontent');
tabcontent.forEach(content => content.style.display = 'none');
const tabs = document.querySelectorAll('.tab');
tabs.forEach(tab => tab.classList.remove('active'));
document.getElementById(tabName).style.display = 'block';
elmnt.classList.add('active');
}
document.getElementById('defaultOpen').click();
function navigateToServices() {
document.querySelectorAll(".tabcontent").forEach(tab => {
tab.style.display = "none";
});
document.getElementById("Services").style.display = "block";
document.getElementById("Services").scrollIntoView({
behavior: "smooth",
block: "start"
});
}
// Modal handling
function scheduleNow(service) {
const modal = document.getElementById("scheduleModal");
const serviceField = document.getElementById("service");
const options = Array.from(serviceField.options);
const matchingOption = options.find(option => option.value === service);
serviceField.value = matchingOption ? service : "";
modal.style.display = "block";
}
function closeModal() {
document.getElementById("scheduleModal").style.display = "none";
}
// Form submission with axios
document.getElementById("scheduleForm").addEventListener("submit", function (event) {
event.preventDefault();
const formData = new FormData(event.target);
const appointmentDetails = {
service: formData.get("service"),
name: formData.get("name"),
email: formData.get("email"),
date: formData.get("date"),
time: formData.get("time"),
phone: formData.get("phone"),
};
axios.post("http://localhost:8080/api/v1/booking", appointmentDetails)
.then(response => {
console.log("Success:", response.data);
alert("Your appointment has been scheduled successfully!");
closeModal();
})
.catch(error => {
console.error("Error scheduling appointment:", error);
alert("There was a problem scheduling your appointment.");
});
});
// Close modal if clicked outside
window.onclick = function(event) {
const modal = document.getElementById("scheduleModal");
if (event.target === modal) {
closeModal();
}
};