71 lines
2.5 KiB
HTML
71 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Random Animal Generator</title>
|
|
</head>
|
|
<body>
|
|
<h1>Random Animal Generator</h1>
|
|
<p id="animal-name">Click a button to get a random animal:</p>
|
|
<button id="isCritterButton">Is Critter</button>
|
|
<button id="isNotCritterButton">Is <b>not</b> Critter</button>
|
|
|
|
<script>
|
|
// Function to generate a random session ID
|
|
function generateSessionId() {
|
|
return Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
|
|
}
|
|
|
|
// Function to fetch a random animal name from the server
|
|
async function getRandomAnimal() {
|
|
try {
|
|
const response = await fetch('/getRandomAnimal');
|
|
const data = await response.json();
|
|
document.getElementById('animal-name').textContent = data.animalName;
|
|
} catch (error) {
|
|
console.error('Error fetching data:', error);
|
|
}
|
|
}
|
|
|
|
// Function to set or retrieve the session ID cookie
|
|
function getSessionId() {
|
|
const sessionId = document.cookie.replace(/(?:(?:^|.*;\s*)sessionId\s*=\s*([^;]*).*$)|^.*$/, '$1');
|
|
if (!sessionId) {
|
|
const newSessionId = generateSessionId();
|
|
document.cookie = `sessionId=${newSessionId}`;
|
|
return newSessionId;
|
|
}
|
|
return sessionId;
|
|
}
|
|
|
|
// Add click event listeners to the buttons
|
|
document.getElementById('isCritterButton').addEventListener('click', () => {
|
|
recordButtonClick('is critter', getSessionId());
|
|
});
|
|
|
|
document.getElementById('isNotCritterButton').addEventListener('click', () => {
|
|
recordButtonClick('is not critter', getSessionId());
|
|
});
|
|
|
|
// Function to record button clicks on the server
|
|
async function recordButtonClick(buttonName, sessionId) {
|
|
try {
|
|
await fetch('/recordButtonClick', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ buttonName, sessionId }),
|
|
});
|
|
getRandomAnimal(); // Load another random animal
|
|
} catch (error) {
|
|
console.error('Error recording button click:', error);
|
|
}
|
|
}
|
|
|
|
// Initial random animal load
|
|
getRandomAnimal();
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|