express: serve up the frontend js asset
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
44167de812
commit
094465b9a7
3 changed files with 89 additions and 87 deletions
82
express/asset/frontend.js
Normal file
82
express/asset/frontend.js
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
// Initialize session variables
|
||||||
|
let sessionStartTime;
|
||||||
|
let lastButtonClickTime;
|
||||||
|
|
||||||
|
// 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Function to set session start time
|
||||||
|
function setSessionStartTime() {
|
||||||
|
sessionStartTime = new Date();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Function to calculate and display time difference
|
||||||
|
function displayTimeDifference() {
|
||||||
|
if (sessionStartTime && lastButtonClickTime) {
|
||||||
|
const timeDifference = lastButtonClickTime - sessionStartTime;
|
||||||
|
console.log(`Time since session start: ${timeDifference} milliseconds`);
|
||||||
|
// You can display the time difference on the page as needed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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 {
|
||||||
|
const currentTime = new Date();
|
||||||
|
if (lastButtonClickTime) {
|
||||||
|
const timeDifference = currentTime - lastButtonClickTime;
|
||||||
|
// Include the time difference in the POST request data
|
||||||
|
await fetch('/recordButtonClick', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
},
|
||||||
|
body: JSON.stringify({ buttonName, sessionId, timeDifference }),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
lastButtonClickTime = currentTime; // Record the timestamp of the button click
|
||||||
|
displayTimeDifference(); // Calculate and display time difference
|
||||||
|
getRandomAnimal(); // Load another random animal
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error recording button click:', error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initial random animal load and session start time
|
||||||
|
getRandomAnimal();
|
||||||
|
setSessionStartTime();
|
||||||
|
|
|
@ -2,97 +2,15 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Random Animal Generator</title>
|
<title>Is this a Critter?</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Random Animal Generator</h1>
|
<h1>Is this a Critter?</h1>
|
||||||
<p id="animal-name">Click a button to get a random animal:</p>
|
<p id="animal-name">what about?:</p>
|
||||||
<button id="isCritterButton">Is Critter</button>
|
<button id="isCritterButton">Is Critter</button>
|
||||||
<button id="isNotCritterButton">Is <b>not</b> Critter</button>
|
<button id="isNotCritterButton">Is <b>not</b> Critter</button>
|
||||||
|
|
||||||
<script>
|
<script src="/asset/frontend.js"></script>
|
||||||
// Initialize session variables
|
|
||||||
let sessionStartTime;
|
|
||||||
let lastButtonClickTime;
|
|
||||||
|
|
||||||
// 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;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Function to set session start time
|
|
||||||
function setSessionStartTime() {
|
|
||||||
sessionStartTime = new Date();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Function to calculate and display time difference
|
|
||||||
function displayTimeDifference() {
|
|
||||||
if (sessionStartTime && lastButtonClickTime) {
|
|
||||||
const timeDifference = lastButtonClickTime - sessionStartTime;
|
|
||||||
console.log(`Time since session start: ${timeDifference} milliseconds`);
|
|
||||||
// You can display the time difference on the page as needed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 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 {
|
|
||||||
const currentTime = new Date();
|
|
||||||
if (lastButtonClickTime) {
|
|
||||||
const timeDifference = currentTime - lastButtonClickTime;
|
|
||||||
// Include the time difference in the POST request data
|
|
||||||
await fetch('/recordButtonClick', {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
},
|
|
||||||
body: JSON.stringify({ buttonName, sessionId, timeDifference }),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
lastButtonClickTime = currentTime; // Record the timestamp of the button click
|
|
||||||
displayTimeDifference(); // Calculate and display time difference
|
|
||||||
getRandomAnimal(); // Load another random animal
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error recording button click:', error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Initial random animal load and session start time
|
|
||||||
getRandomAnimal();
|
|
||||||
setSessionStartTime();
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ const db = new sqlite3.Database('mydb.db', (err) => {
|
||||||
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
|
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
|
||||||
time_difference INTEGER -- Add this column for time difference
|
time_difference INTEGER -- Add this column for time difference
|
||||||
)
|
)
|
||||||
|
|
||||||
`);
|
`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -29,6 +28,9 @@ app.use(bodyParser.json());
|
||||||
app.get('/', (req, res) => {
|
app.get('/', (req, res) => {
|
||||||
res.sendFile(__dirname + '/index.html');
|
res.sendFile(__dirname + '/index.html');
|
||||||
});
|
});
|
||||||
|
app.get('/asset/frontend.js', (req, res) => {
|
||||||
|
res.sendFile(__dirname + '/asset/frontend.js');
|
||||||
|
});
|
||||||
|
|
||||||
// Route to get a random animal name
|
// Route to get a random animal name
|
||||||
app.get('/getRandomAnimal', async (req, res) => {
|
app.get('/getRandomAnimal', async (req, res) => {
|
||||||
|
|
Loading…
Reference in a new issue