import playBgMusic from "/utils/playmusic/script";
const errorMsg =
"Please try again later by selecting both your question and your constellation. You will be taken to the home page in 5 seconds.";
const openingSentences = [
"Welcome, seeker of destiny! Step into the realm of possibilities.",
"Greetings, curious soul! Let me unveil the secrets that lie ahead.",
"Welcome, traveler of fate! Allow me to guide you on your journey.",
"Enter, brave adventurer! Your future awaits in the palm of my hand.",
"Ah, welcome, seeker of truth! Let me weave the tapestry of your fate.",
"Step into my parlor, weary wanderer! Let me illuminate the path ahead.",
"Welcome, inquisitive one! Prepare to unravel the enigma of your destiny.",
"Ah, you've arrived! Brace yourself for a glimpse into the universe's secrets.",
"Greetings, seeker of answers! Trust in the whispers of the universe that brought you here.",
"Welcome, dear one! Let the dance of divination commence.",
];
let horoscopeText;
const backgroundMusic = document.getElementById("background-music");
window.addEventListener("DOMContentLoaded", init);
/**
* @Property {Function} Starts the program, all function calls trace back here
*/
function init() {
playBgMusic(backgroundMusic, true);
const h2Element = document.getElementById("fortune-opening");
const randomSentence =
openingSentences[Math.floor(Math.random() * openingSentences.length)];
h2Element.textContent = randomSentence;
const visibleButton = document.getElementById("visibleButton");
visibleButton.addEventListener("click", toggleText);
window.toggleText = toggleText;
}
/*
Once called, this function hides away the triggering button, displays
the fortune teller response as well as the next page button.
*/
function toggleText() {
const buttonClicked = document.getElementById("visibleButton");
let explanation = document.getElementById("explanation");
let text = document.getElementById("hiddenText");
let button = document.getElementById("hiddenButton");
explanation.classList.add("glow");
buttonClicked.classList.add("removed");
const chosenConstellation = localStorage.getItem("chosenConstellation");
const questionInput = localStorage.getItem("questionType");
explanation.classList.remove("hidden");
button.classList.remove("hidden");
if (chosenConstellation && questionInput) {
fetchResponses(questionInput, chosenConstellation)
.then((answer) => {
horoscopeText = answer;
animateText(answer, text);
})
.catch((error) => {
console.error(error);
});
} else {
const answer = errorMsg;
displayText(answer, text);
setTimeout(() => {
redirectToPage("/starting/page");
}, 5000);
}
button.addEventListener("click", makePostRequest);
}
/**
* Function to fetch response from the JSON file.
*
* @param {string} questionInput - The question input.
* @param {string} chosenConstellation - The chosen constellation.
* @returns {Promise<string>} A promise that resolves with the fetched response.
*/
function fetchResponses(questionInput, chosenConstellation) {
return fetch("/response/json")
.then((response) => response.json())
.then((data) => {
return data[questionInput][chosenConstellation][
Math.floor(Math.random() * 3)
];
});
}
/**
* Function to show the response text word by word.
*
* @param {string} answer - The response answer.
* @param {HTMLElement} textElement - The text element to animate.
*/
function animateText(answer, textElement) {
let index = 0;
let interval;
const words = answer.split(" ");
interval = setInterval(showNextCharacter, 100);
function showNextCharacter() {
if (index < words.length) {
textElement.textContent += words[index] + " ";
index++;
let container = textElement.parentNode;
container.scrollTop = container.scrollHeight;
} else {
clearInterval(interval);
explanation.classList.remove("glow");
}
}
}
/**
* Function to display text.
*
* @param {string} answer - The text to display.
* @param {HTMLElement} textElement - The text element to display the text in.
*/
function displayText(answer, textElement) {
textElement.textContent = answer;
}
/**
* Function to redirect to a page.
*
* @param {string} url - The URL of the page to redirect to.
*/
function redirectToPage(url) {
window.location.href = url;
}
/**
* Function makes a post request to add horoscope entry into database, handles request status
* adds category, constellation, response text as new row for user
*/
function makePostRequest() {
localStorage.setItem("musicPlayTime", backgroundMusic.currentTime);
let xhr = new XMLHttpRequest();
xhr.open("POST", "/horoscope/post");
xhr.setRequestHeader("Content-Type", "application/json");
const chosenConstellation = localStorage.getItem("chosenConstellation");
const questionInput = localStorage.getItem("questionType");
xhr.send(
JSON.stringify({
catagory: questionInput,
constellation: chosenConstellation,
horoscope: horoscopeText,
})
);
xhr.onload = function () {
if (xhr.status === 200) {
console.log("post success");
} else {
console.error("Error", xhr.statusText);
}
};
}