size sanity in webui sidebar log output
This commit is contained in:
parent
8f52fa4669
commit
88ec98c92a
@ -14,6 +14,8 @@ var sidebarActive = false
|
|||||||
var lastLogOffset = 0
|
var lastLogOffset = 0
|
||||||
|
|
||||||
var logActive = false
|
var logActive = false
|
||||||
|
var maxLogOutputSize = 1000000
|
||||||
|
var logfileOutputEl = null
|
||||||
|
|
||||||
|
|
||||||
async function showLog(){
|
async function showLog(){
|
||||||
@ -24,13 +26,29 @@ async function showLog(){
|
|||||||
}})
|
}})
|
||||||
.then((resp) => resp.json())
|
.then((resp) => resp.json())
|
||||||
.then(function(resp){
|
.then(function(resp){
|
||||||
lastLogOffset = resp['new_offset']
|
let doScroll = function(){
|
||||||
var logfileOutputEl = document.getElementById('logfileOutput')
|
|
||||||
logfileOutputEl.innerText += resp.data.replace(
|
|
||||||
/[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, '')
|
|
||||||
if (!logActive){
|
if (!logActive){
|
||||||
logfileOutputEl.scrollTop = logfileOutputEl.scrollHeight;
|
logfileOutputEl.scrollTop = logfileOutputEl.scrollHeight;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
if (! resp.data){
|
||||||
|
doScroll()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
lastLogOffset = resp['new_offset']
|
||||||
|
|
||||||
|
var length = (new TextEncoder().encode(logfileOutputEl.innerText)).length
|
||||||
|
var tempText = logfileOutputEl.innerText
|
||||||
|
while(length > maxLogOutputSize){
|
||||||
|
tempText = tempText.substring(tempText.indexOf("\n") + 1)
|
||||||
|
length = (new TextEncoder().encode(tempText)).length
|
||||||
|
logfileOutputEl.innerText = tempText
|
||||||
|
}
|
||||||
|
|
||||||
|
logfileOutputEl.innerText += resp.data.replace(
|
||||||
|
/[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, '')
|
||||||
|
doScroll()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -94,6 +112,7 @@ window.addEventListener("keydown", function(event) {
|
|||||||
clearInterval(refreshSideBarInterval)
|
clearInterval(refreshSideBarInterval)
|
||||||
}
|
}
|
||||||
if (event.key === "s"){
|
if (event.key === "s"){
|
||||||
|
logfileOutputEl = document.getElementById('logfileOutput')
|
||||||
sidebarActive = true
|
sidebarActive = true
|
||||||
if (document.activeElement.nodeName == "TEXTAREA" || document.activeElement.nodeName == "INPUT"){
|
if (document.activeElement.nodeName == "TEXTAREA" || document.activeElement.nodeName == "INPUT"){
|
||||||
if (! document.activeElement.hasAttribute("readonly")){
|
if (! document.activeElement.hasAttribute("readonly")){
|
||||||
|
Loading…
Reference in New Issue
Block a user