Skip to content

Commit

Permalink
fix(web/serverLog): reconnect to socket when entering live mode (Closes
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksanderEvensen committed Apr 1, 2024
1 parent 5b3d48f commit ca3ee54
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions web/main/serverLog.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,19 @@
if (targetEl.classList.contains('collapse')) targetEl.classList.remove('collapse');
})
//============================================== Socket Stuff
pageSocket.on('error', (error) => {
console.log('Page Socket.IO', error)
});
pageSocket.on('connect', () => {
console.log("Page Socket.IO Connected.");
logContainer.innerHTML = '';
});
pageSocket.on('disconnect', (message) => {
console.log("Page Socket.IO Disonnected:", message);
});
pageSocket.on('logData', processLog);
//============================================== Mode selection
function goLive() {
Expand All @@ -248,20 +260,8 @@
modeLabel.classList.add('text-success');
modeLabel.textContent = 'LIVE';
viewOlderBtn.disabled = false;
viewNewerBtn.disabled = true;
//Socket stuff
pageSocket.on('error', (error) => {
console.log('Page Socket.IO', error)
});
pageSocket.on('connect', () => {
console.log("Page Socket.IO Connected.");
logContainer.innerHTML = '';
});
pageSocket.on('disconnect', (message) => {
console.log("Page Socket.IO Disonnected:", message);
});
pageSocket.on('logData', processLog);
viewNewerBtn.disabled = true;
if (!pageSocket.connected) pageSocket.connect();
}
function goHistory(direction) {
Expand Down

0 comments on commit ca3ee54

Please sign in to comment.