From 809615b3b8ec833be01115cf3f52e13fa77e48a2 Mon Sep 17 00:00:00 2001 From: grey Date: Tue, 8 Mar 2022 16:13:39 +0100 Subject: [PATCH] Adds more color picking stuff --- index.js | 11 +- static/js/interface.js | 397 ++++++++++++++++++++++++++++++++ templates/newAdminPanel.html | 435 ++++------------------------------- 3 files changed, 447 insertions(+), 396 deletions(-) diff --git a/index.js b/index.js index f04edcf..e7ca89a 100644 --- a/index.js +++ b/index.js @@ -151,7 +151,6 @@ app.get("/api/v1/set/progressbar/colors", function (req, res) { if(req.query.isBase64 === "true"){ data = atob(data) } - console.debug(data) currentState.colorSegments = JSON.parse(data); if (req.query.persist === 'true') { dataToBeWritten.colorSegments = currentState.colorSegments @@ -165,17 +164,19 @@ app.get("/api/v1/set/progressbar/colors", function (req, res) { app.get("/api/v1/set/text/colors", function (req, res) { try { - if (req.query.copy === "true") { - currentState.textColors = currentState.colorSegments; - } else { - currentState.textColors = JSON.parse(req.query.colors); + let data = req.query.colors + if(req.query.isBase64 === "true"){ + data = atob(data) } + console.debug(data) + currentState.textColors = JSON.parse(data); if (req.query.persist === 'true') { dataToBeWritten.textColors = currentState.textColors } res.json({ status: "ok" }); } catch (error) { res.json({ status: "error", message: error }); + console.error(error) } }); diff --git a/static/js/interface.js b/static/js/interface.js index 827a688..2f5e0a4 100644 --- a/static/js/interface.js +++ b/static/js/interface.js @@ -2,3 +2,400 @@ function convertTimeOffset(){ selTime = new Date().getTime() + document.getElementById('time2').valueAsNumber document.getElementById("time").value = selTime } + + +function convertColorSegments(elementId) { + const raw = document.getElementById(elementId); + console.log(raw) + const segmentData = {} + for (elm in raw.children) { + if (raw.children[elm].nodeName == "TBODY") { + const child = raw.children[elm].firstChild.childNodes + segmentData[child[0].innerText] = child[2].firstChild.value + } + } + console.info(segmentData) + return (segmentData) +} + +$(document).ready(function () { + $(".numVal").bind("DOMSubtreeModified", alert); + + const modes = ["timer", "clock", "black", "test"] + let selectPresetTime = 0; + + if (Cookies.get("interfaceColor") != undefined) { + const color = Cookies.get("interfaceColor"); + $("#Mbtnradio" + (color))[0].checked = true + if (color == 1) { + DarkReader.disable() + } else if (color == 2) { + DarkReader.enable() + } else { + DarkReader.auto() + } + } + + $("#addRow").click(function (event) { + $("#colors1").append( + '' + + '' + + '' + + '' + + '' + ); + $('.colorPicky').colorpicker(); + + }); + + $("#addRow2").click(function (event) { + $("#colors2").append( + '' + + '' + + '' + + '' + + '' + ); + $('.colorPicky').colorpicker(); + }); + + $("#copyColors").click(function CopyTextColors(event) { + event.target.innerHTML = '
' + saveOption("/api/v1/set/text/colors?copy=true", function finishCopyColors(event){ + setTimeout(function(){ + document.getElementById("copyColors").innerHTML = "Copy from progressbar colors" + }, 500) + + }) + }); + + + $("input[name='btnradio2']").click(function (event) { + console.debug() + const darkid = parseInt(event.currentTarget.id.replace("Mbtnradio", "")) + if (darkid == 1) { + DarkReader.disable() + } else if (darkid == 2) { + DarkReader.enable() + } else { + DarkReader.auto() + } + Cookies.set("interfaceColor", darkid) + }); + + // Restore settings + saveOption("/api/v1/data", function (event, xmlHttp) { + + const tableEntry = ' #VALUE#\ + \ + \ + \ + ' + + const jsonResult = JSON.parse(xmlHttp.response) + document.getElementById("responeSnippet").innerHTML = JSON.stringify(jsonResult) + // Restore mode radio + const currentModeInt = modes.indexOf(jsonResult.mode); + $("#btnradio" + (currentModeInt + 1))[0].checked = true + // Restore layout settings + $("#showTime")[0].checked = jsonResult.showTimeOnCountdown; + $("#showMillis")[0].checked = jsonResult.showMilliSeconds; + $("#progBarShow")[0].checked = jsonResult.showProgressbar; + $("#textColors")[0].checked = jsonResult.enableColoredText; + for (item in jsonResult.colorSegments) { + let temp = tableEntry.replace("#VALUE#", item); + temp = temp.replace("#COLOR#", jsonResult.colorSegments[item]); + temp = temp.replace("#bg-COLOR#", jsonResult.colorSegments[item]); + document.getElementById("colors1").innerHTML += temp + console.log(jsonResult.colorSegments[item]) + } + + // Text colors + for (item in jsonResult.textColors) { + let temp = tableEntry.replace("#VALUE#", item); + temp = temp.replace("#COLOR#", jsonResult.textColors[item]); + temp = temp.replace("#bg-COLOR#", jsonResult.textColors[item]); + document.getElementById("colors2").innerHTML += temp + console.log(jsonResult.textColors[item]) + } + + + + console.debug(jsonResult, currentModeInt) + $('.colorPicky').colorpicker(); + $('.colorPicky').on('colorpickerChange', function (event) { + event.target.parentElement.style.backgroundColor = event.target.value + }); + $(".deleteRow1").on("click", function removeRowEntry(event) { + console.warn(event.target.parentElement) + $(event.target).closest("tbody").remove(); + }); + }) + + // Presets + $(".pres").click(function (event) { + currentTime = parseInt(event.currentTarget.value) + const times = msToTime(currentTime) + $("#timerHoursV")[0].innerHTML = times[3]; + $("#timerMinuteV")[0].innerHTML = times[2]; + $("#timerSecondsV")[0].innerHTML = times[1]; + }) + + + $(".goTimer").click(function (event) { + event.currentTarget.innerHTML = '
' + setTimeout(function () { + event.currentTarget.innerHTML = 'Go' + }, 200); + + saveOption("/api/v1/set/addMillisToTimer?time=" + currentTime, function (ev) { + }) + }) + + // Layout settings + $("#applyLayout").click(function (event) { + $("#applyLayout")[0].innerHTML = '
' + + // Collect all data, build all paths3 + const allPathes = []; + + const showTimeB = $("#showTime")[0].checked + const showMillisB = $("#showMillis")[0].checked + const progBarShowB = $("#progBarShow")[0].checked + const textColorsB = $("#textColors")[0].checked + + const colors = convertColorSegments("colors1") + const colors2 = convertColorSegments("colors2") + + console.log(JSON.stringify(colors)) + + allPathes.push("/api/v1/set/layout/showTime?show=" + showTimeB) + allPathes.push("/api/v1/set/layout/showMillis?show=" + showMillisB) + allPathes.push("/api/v1/set/progressbar/show?show=" + progBarShowB) + allPathes.push("/api/v1/set/text/enableColoring?enable=" + textColorsB) + allPathes.push("/api/v1/set/progressbar/colors?isBase64=true&colors=" + btoa(JSON.stringify(colors))) + allPathes.push("/api/v1/set/text/colors?isBase64=true&colors=" + btoa(JSON.stringify(colors2))) + + + for (pI in allPathes) { + const path = allPathes[pI]; + console.warn(path) + saveOption(path, function (event) { + console.debug(event) + }) + } + + setTimeout(function () { + $("#applyLayout")[0].innerHTML = 'Apply settings' + }, 500) + }) + + + $("#saveLayout").click(function (event) { + $("#saveLayout")[0].innerHTML = '
' + + // Collect all data, build all paths3 + const allPathes = []; + + const showTimeB = $("#showTime")[0].checked + const showMillisB = $("#showMillis")[0].checked + const progBarShowB = $("#progBarShow")[0].checked + const textColorsB = $("#textColors")[0].checked + + allPathes.push("/api/v1/set/layout/showTime?persist=true&show=" + showTimeB) + allPathes.push("/api/v1/set/layout/showMillis?persist=true&show=" + showMillisB) + allPathes.push("/api/v1/set/progressbar/show?persist=true&show=" + progBarShowB) + allPathes.push("/api/v1/set/text/enableColoring?persist=true&enable=" + textColorsB) + + for (pI in allPathes) { + const path = allPathes[pI]; + console.warn(path) + saveOption(path, function (event) { + console.debug(event) + }) + } + + saveOption("/api/v1/storage/commit", function (event) { + console.debug(event) + setTimeout(function () { + $("#saveLayout")[0].innerHTML = 'Save as startup settings (Layout only)' + }, 500) + }) + + + + }) + + + function msToTime(s, data) { + var ms = s % 1000; + s = (s - ms) / 1000; + var secs = s % 60; + s = (s - secs) / 60; + var mins = s % 60; + var hrs = (s - mins) / 60; + let out = "" + + return [ms, secs, mins, hrs]; + } + + // Timer custom + let currentTime = 0; + $("#timerHourInc").click(function (event) { + currentTime += 3600000 + const times = msToTime(currentTime) + $("#timerHoursV")[0].innerHTML = times[3]; + $("#timerMinuteV")[0].innerHTML = times[2]; + $("#timerSecondsV")[0].innerHTML = times[1]; + }) + + $("#timerHourDec").click(function (event) { + if (currentTime > 3600000) { + currentTime -= 3600000 + const times = msToTime(currentTime) + $("#timerHoursV")[0].innerHTML = times[3]; + $("#timerMinuteV")[0].innerHTML = times[2]; + $("#timerSecondsV")[0].innerHTML = times[1]; + } + }) + + $("#timerMinuteInc").click(function (event) { + currentTime += 60000 + const times = msToTime(currentTime) + $("#timerHoursV")[0].innerHTML = times[3]; + $("#timerMinuteV")[0].innerHTML = times[2]; + $("#timerSecondsV")[0].innerHTML = times[1]; + }) + $("#timerMinuteDec").click(function (event) { + if (currentTime > 60000) { + currentTime -= 60000 + const times = msToTime(currentTime) + $("#timerHoursV")[0].innerHTML = times[3]; + $("#timerMinuteV")[0].innerHTML = times[2]; + $("#timerSecondsV")[0].innerHTML = times[1]; + } + }) + $("#timerSecondsInc").click(function (event) { + currentTime += 1000 + const times = msToTime(currentTime) + $("#timerHoursV")[0].innerHTML = times[3]; + $("#timerMinuteV")[0].innerHTML = times[2]; + $("#timerSecondsV")[0].innerHTML = times[1]; + }) + $("#timerSecondsDec").click(function (event) { + if (currentTime > 1000) { + currentTime -= 1000 + const times = msToTime(currentTime) + $("#timerHoursV")[0].innerHTML = times[3]; + $("#timerMinuteV")[0].innerHTML = times[2]; + $("#timerSecondsV")[0].innerHTML = times[1]; + } + }) + + $("input[name='btnradio']").click(function (event) { + $("#sendMessage")[0].innerHTML = '
' + let value = modes[parseInt(event.currentTarget.id.replace("btnradio", "")) - 1] + console.log(value, parseInt(event.currentTarget.id.replace("btnradio", ""))) + saveOption("/api/v1/set/mode?mode=" + value, function (event) { + setTimeout(function () { + $("#sendMessage")[0].innerHTML = ' \ + \ + ' + }, 200) + + }) + }) + + + $("#sendMessage").click(function (event) { + $("#sendMessage")[0].innerHTML = '
' + let value = $("#messageContent").val() + saveOption("/api/v1/ctrl/message/show?msg=" + value, function (event) { + setTimeout(function () { + $("#sendMessage")[0].innerHTML = ' \ + \ + ' + }, 200) + + }) + }) + + $("#ctrlRemoveMessage").click(function (event) { + $("#ctrlRemoveMessage")[0].innerHTML = '
' + saveOption("/api/v1/ctrl/message/hide", function (event) { + setTimeout(function () { + $("#ctrlRemoveMessage")[0].innerHTML = '\ + \ + \ + ' + }, 200) + + }) + }) + + $("#funcPlay").click(function (event) { + $("#funcPlay")[0].innerHTML = '
' + saveOption("/api/v1/ctrl/timer/play", function (event) { + setTimeout(function () { + $("#funcPlay")[0].innerHTML = '' + }, 200); + }) + }) + + + $("#funcPause").click(function (event) { + $("#funcPause")[0].innerHTML = '
' + + saveOption("/api/v1/ctrl/timer/pause", function (event) { + setTimeout(function () { + $("#funcPause")[0].innerHTML = '' + }, 200); + }) + }) + + $("#funcRestart").click(function (event) { + $("#funcRestart")[0].innerHTML = '
' + saveOption("/api/v1/ctrl/timer/restart", function (event) { + setTimeout(function () { + $("#funcRestart")[0].innerHTML = '' + }, 200) + }) + }) + + $("#applyDebug").click(function (event) { + $("#applyDebug")[0].innerHTML = '
' + let value = $("#debugModeEnable")[0].checked + saveOption("/api/v1/debug?enable=" + value, function (event) { + setTimeout(function () { + $("#applyDebug")[0].innerHTML = "Apply settings" + }, 200) + + }) + }) + + $("a.nav-link").click(function (event) { + event.preventDefault(); + $("a.nav-link").removeClass("active") + + event.currentTarget.classList.add("active") + + $(".pageC").addClass("hidden") + $("#" + event.target.href.split("#")[1]).removeClass("hidden") + console.log(event.target.href.split("#")[1]) + }); +}); + +function saveOption(path, callback) { + var xmlHttp = new XMLHttpRequest(); + xmlHttp.open("GET", path, true); // false for synchronous request + xmlHttp.send(null); + xmlHttp.onerror = function (e) { + console.log(e); // ToDo: Popup, etc. + }; + xmlHttp.onloadend = function (event) { + callback(event, xmlHttp) + } +} \ No newline at end of file diff --git a/templates/newAdminPanel.html b/templates/newAdminPanel.html index 9182239..62bfb7c 100644 --- a/templates/newAdminPanel.html +++ b/templates/newAdminPanel.html @@ -342,31 +342,53 @@
-
- Add a way to add more rows - -
- - - - - - - - - - - + +
+ Progressbar Colors +

+

+ +
TimeColorRemove
+ + + + + + + -
TimeColorRemove
-
- -
- + + + +

+ +

+
+ Text Colors +

+ +

+ + + + + + + + + +
TimeColorRemove
+
+ + + +

+

@@ -410,376 +432,7 @@ - +