Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG FIX] Server log in web panel will now reconnect when entering live mode #935

Merged
merged 1 commit into from
Apr 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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