|
|
|
window.addEventListener('load', function () {
|
|
|
|
|
|
|
|
const favUrl = document.querySelector('#api-fav-toggle').value;
|
|
|
|
const compUrl = document.querySelector('#api-compare-toggle').value;
|
|
|
|
document.querySelectorAll('.fav-btn')?.forEach(function (el) {
|
|
|
|
el.addEventListener('click', async function () {
|
|
|
|
let resp = await axios.get(favUrl+this.getAttribute('data-slug'));
|
|
|
|
if (resp.data.success){
|
|
|
|
this.setAttribute('data-is-fav',resp.data.data);
|
|
|
|
window.$toast.success(resp.data.message);
|
|
|
|
}else {
|
|
|
|
window.$toast.error("Error!");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
document.querySelectorAll('.compare-btn')?.forEach(function (el) {
|
|
|
|
el.addEventListener('click', async function () {
|
|
|
|
let resp = await axios.get(compUrl+this.getAttribute('data-slug'));
|
|
|
|
if (resp.data.success){
|
|
|
|
window.$toast.success(resp.data.message);
|
|
|
|
}else {
|
|
|
|
window.$toast.error("Error!");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
document.querySelectorAll('.add-to-card')?.forEach(function (el) {
|
|
|
|
el.addEventListener('click', async function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
let resp = await axios.get(this.getAttribute('href'));
|
|
|
|
if (resp.data.success){
|
|
|
|
window.$toast.success(resp.data.message);
|
|
|
|
document.querySelectorAll('.card-count')?.forEach(function (el2) {
|
|
|
|
el2.innerText = resp.data.data.count;
|
|
|
|
});
|
|
|
|
}else {
|
|
|
|
window.$toast.error("Error!");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
document.querySelector('#rating-form')?.addEventListener('submit', function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
// Create a new FormData object from the form
|
|
|
|
const formData = new FormData(this);
|
|
|
|
|
|
|
|
// Make the Axios call with the FormData object
|
|
|
|
axios.post(this.getAttribute('data-url'), formData)
|
|
|
|
.then(response => {
|
|
|
|
if (response.data.OK){
|
|
|
|
|
|
|
|
$toast.success(response.data.message);
|
|
|
|
}else {
|
|
|
|
$toast.error(response.data.error);
|
|
|
|
}
|
|
|
|
// Handle success (e.g., show a success message)
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
$toast.error(error.message);
|
|
|
|
// Handle error (e.g., show an error message)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|