Colors work!

This commit is contained in:
Sören Oesterwind 2022-03-26 19:40:37 +01:00
parent df3f5fdb58
commit 1aea4d54df
2 changed files with 146 additions and 52 deletions

View File

@ -6,20 +6,24 @@ function convertTimeOffset() {
function convertColorSegments(elementId) { function convertColorSegments(elementId) {
const raw = document.getElementById(elementId); const raw = document.getElementById(elementId);
console.log(raw)
const segmentData = {} const segmentData = {}
for (elm in raw.children) { for (elm in raw.children) {
if (raw.children[elm].nodeName == "TBODY") { if (raw.children[elm].nodeName == "TR") {
const child = raw.children[elm].firstChild.childNodes const child = raw.children[elm].children[1].children[0]
segmentData[child[0].innerText] = child[2].firstChild.value let timeVal = parseInt(raw.children[elm].children[0].children[0].value * 1000);
if(Number.isInteger(timeVal)){
segmentData[timeVal] = child.style.color
} else {
segmentData["START"] = child.style.color
}
} }
} }
console.info(segmentData) console.info(segmentData)
return (segmentData) return (segmentData)
} }
$(document).ready(function () { $(function () {
$(".numVal").bind("DOMSubtreeModified", alert); // $(".numVal").bind("DOMSubtreeModified", alert);
const modes = ["timer", "clock", "black", "test"] const modes = ["timer", "clock", "black", "test"]
let selectPresetTime = 0; let selectPresetTime = 0;
@ -43,28 +47,33 @@ $(document).ready(function () {
const tree2 = jsonview.create(dataSystem); const tree2 = jsonview.create(dataSystem);
jsonview.render(tree2, document.getElementById("systemInfo")); jsonview.render(tree2, document.getElementById("systemInfo"));
jsonview.expand(tree2); jsonview.expand(tree2);
// console.log(dataSystem)
}) })
$("#addRow").click(function (event) { $("#addRow").click(function (event) {
$("#colors1").append( tableEntryDom = document.getElementById("tableCopySource").cloneNode(true)
'<tr>' + let temp = tableEntryDom.innerHTML
'<td contenteditable="true" class="time"></td>' + temp = temp.replace("#COLOR#", "gray");
'<td contenteditable="true" class="color full"><input id="demo-input1" "type="text" value="#COLOR#" data-coloris /></td></td>' + temp = temp.replace("#bg-COLOR#", "gray");
'<td><button type="button" class="btn btn-danger btn-rounded btn-sm my-0 deleteRow1">Remove</button></td>' + temp = temp.replace("#VALUE#", 60); // BUG: Doesn't work but not too important
'</tr>' tableEntryDom.innerHTML = temp;
); document.getElementById("colors1").appendChild(tableEntryDom)
$(".deleteRow1").on("click", function removeRowEntry(event) {
$(event.target).closest("tr").remove();
});
}); });
$("#addRow2").click(function (event) { $("#addRow2").click(function (event) {
$("#colors2").append( tableEntryDom = document.getElementById("tableCopySource").cloneNode(true)
'<tr>' + let temp = tableEntryDom.innerHTML
'<td contenteditable="true" class="time"></td>' + temp = temp.replace("#COLOR#", "gray");
'<td contenteditable="true" class="color full"><input id="demo-input2" type="text" value="#COLOR#" data-coloris /></td></td>' + temp = temp.replace("#bg-COLOR#", "gray");
'<td><button type="button" class="btn btn-danger btn-rounded btn-sm my-0 deleteRow1">Remove</button></td>' + temp = temp.replace("#VALUE#", 60);
'</tr>' tableEntryDom.innerHTML = temp;
); document.getElementById("colors2").appendChild(tableEntryDom)
$(".deleteRow1").on("click", function removeRowEntry(event) {
$(event.target).closest("tr").remove();
});
}); });
@ -93,38 +102,93 @@ $(document).ready(function () {
// Restore mode radio // Restore mode radio
const currentModeInt = modes.indexOf(jsonResult.mode); const currentModeInt = modes.indexOf(jsonResult.mode);
$("#btnradio" + (currentModeInt + 1))[0].checked = true $("#btnradio" + (currentModeInt + 1))[0].checked = true
// Restore layout settings // Restore layout settings
$("#showTime")[0].checked = jsonResult.showTimeOnCountdown; $("#showTime")[0].checked = jsonResult.showTimeOnCountdown;
$("#showMillis")[0].checked = jsonResult.showMilliSeconds; $("#showMillis")[0].checked = jsonResult.showMilliSeconds;
$("#progBarShow")[0].checked = jsonResult.showProgressbar; $("#progBarShow")[0].checked = jsonResult.showProgressbar;
$("#textColors")[0].checked = jsonResult.enableColoredText; $("#textColors")[0].checked = jsonResult.enableColoredText;
console.log(document.getElementById("tableCopySource"))
let tableEntryDom = document.getElementById("tableCopySource").cloneNode(true)
let currIndex = 0
for (item in jsonResult.colorSegments) { for (item in jsonResult.colorSegments) {
let temp = tableEntry.replace("#VALUE#", item); tableEntryDom = document.getElementById("tableCopySource").cloneNode(true)
let temp = tableEntryDom.innerHTML
temp = temp.replace("#COLOR#", jsonResult.colorSegments[item]); temp = temp.replace("#COLOR#", jsonResult.colorSegments[item]);
temp = temp.replace("#bg-COLOR#", jsonResult.colorSegments[item]); temp = temp.replace("#bg-COLOR#", jsonResult.colorSegments[item]);
document.getElementById("colors1").innerHTML += temp temp = temp.replace("timeValue-ID", "timeValue-1C" + currIndex)
//console.log(jsonResult.colorSegments[item])
if(item != "START"){
temp = temp.replace("#VALUE#", item/1000);
tableEntryDom.innerHTML = temp;
} else {
tableEntryDom.innerHTML = temp;
tableEntryDom.children[2].children[0].children[0].disabled = true;
tableEntryDom.children[2].children[0].setAttribute("data-toggle", "tooltip")
tableEntryDom.children[2].children[0].setAttribute("data-placement", "right")// 'data-placement="right" title="Tooltip on right"'
tableEntryDom.children[2].children[0].setAttribute("title", "You cannot delete the start time")
tableEntryDom.children[0].innerHTML = '<i class="bi bi-flag-fill"></i> Start'
}
tableEntryDom.id = "1C" + currIndex
tableEntryDom.style.display = "table-row"
document.getElementById("colors1").appendChild(tableEntryDom)
currIndex++;
} }
// Text colors // Text colors
currIndex = 0
for (item in jsonResult.textColors) { for (item in jsonResult.textColors) {
let temp = tableEntry.replace("#VALUE#", item); tableEntryDom = document.getElementById("tableCopySource").cloneNode(true)
let temp = tableEntryDom.innerHTML
temp = temp.replace("#COLOR#", jsonResult.textColors[item]); temp = temp.replace("#COLOR#", jsonResult.textColors[item]);
temp = temp.replace("#bg-COLOR#", jsonResult.textColors[item]); temp = temp.replace("#bg-COLOR#", jsonResult.textColors[item]);
document.getElementById("colors2").innerHTML += temp temp = temp.replace("timeValue-ID", "timeValue-1C" + currIndex)
//console.log(jsonResult.textColors[item])
if(item != "START"){
temp = temp.replace("#VALUE#", item/1000);
tableEntryDom.innerHTML = temp;
} else {
tableEntryDom.innerHTML = temp;
tableEntryDom.children[2].children[0].children[0].disabled = true;
tableEntryDom.children[2].children[0].setAttribute("data-toggle", "tooltip")
tableEntryDom.children[2].children[0].setAttribute("data-placement", "right")// 'data-placement="right" title="Tooltip on right"'
tableEntryDom.children[2].children[0].setAttribute("title", "You cannot delete the start time")
tableEntryDom.children[0].innerHTML = '<i class="bi bi-flag-fill"></i> Start'
}
tableEntryDom.id = "1C" + currIndex
tableEntryDom.style.display = "table-row"
document.getElementById("colors2").appendChild(tableEntryDom)
currIndex++;
} }
$('.timeDurPicker').durationPicker({
showSeconds: true,
showDays: false,
onChanged: function (newVal, test, val2) {
// $('#duration-label2').text(newVal);
val2.days[0].parentElement.parentElement.parentElement.parentElement.children[1].value = newVal
//console.log(val2.days[0].parentElement.parentElement.parentElement.parentElement.children[1].value)
//console.log(val2.days[0].parentElement.parentElement.parentElement.parentElement.children[1])
}
});
//console.debug(jsonResult, currentModeInt) //console.debug(jsonResult, currentModeInt)
$('.colorPicky').on('colorpickerChange', function (event) { $('.colorPicky').on('colorpickerChange', function (event) {
event.target.parentElement.style.backgroundColor = event.target.value event.target.parentElement.style.backgroundColor = event.target.value
}); });
$(".deleteRow1").on("click", function removeRowEntry(event) { $(".deleteRow1").on("click", function removeRowEntry(event) {
//console.warn(event.target.parentElement) $(event.target).closest("tr").remove();
$(event.target).closest("tbody").remove();
}); });
$('[data-toggle="tooltip"]').tooltip({container: "body"})
}) })
$("#copyColors").click(function CopyTextColors(event) { $("#copyColors").click(function CopyTextColors(event) {
@ -174,7 +238,7 @@ $(document).ready(function () {
$("#applyLayout").click(function (event) { $("#applyLayout").click(function (event) {
$("#applyLayout")[0].innerHTML = '<div class="spinner-border-sm spinner-border"></div>' $("#applyLayout")[0].innerHTML = '<div class="spinner-border-sm spinner-border"></div>'
// Collect all data, build all paths3 // Collect all data, build all paths
const allPathes = []; const allPathes = [];
const showTimeB = $("#showTime")[0].checked const showTimeB = $("#showTime")[0].checked
@ -190,7 +254,7 @@ $(document).ready(function () {
allPathes.push("/api/v1/set/progressbar/show?show=" + progBarShowB) allPathes.push("/api/v1/set/progressbar/show?show=" + progBarShowB)
allPathes.push("/api/v1/set/text/enableColoring?enable=" + textColorsB) 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/progressbar/colors?isBase64=true&colors=" + btoa(JSON.stringify(colors)))
allPathes.push("/api/v1/set/text/colors?isBase64=true&colors=" + btoa(JSON.stringify(colors2))) ///allPathes.push("/api/v1/set/text/colors?isBase64=true&colors=" + btoa(JSON.stringify(colors2)))
for (pI in allPathes) { for (pI in allPathes) {

View File

@ -261,7 +261,7 @@
<summary>Text Colors</summary> <summary>Text Colors</summary>
<p> <p>
<div id="table" class="table-editable"> <div id="table2" class="table-editable">
<table class="table table-bordered table-responsive-md table-striped text-center" id="colors2"> <table class="table table-bordered table-responsive-md table-striped text-center" id="colors2">
<thead> <thead>
<tr> <tr>
@ -314,26 +314,53 @@
</div> </div>
<br><br> <br><br>
<i class="bi-alarm"></i> <i class="bi-alarm"></i>
<templateObj id="tableCopySource"> <templateObj>
<tr> <table class="table table-bordered table-responsive-md table-striped text-center" id="colors1">
<td contenteditable="true" class="time"> <thead>
<form> <tr>
<div class="form-group"> <th class="text-center">Time</th>
<label>Duration with seconds</label> <th class="text-center">Color</th>
<input type="text" class="form-control" id="duration2"> <th class="text-center">Remove</th>
</div> </tr>
<value></value> </thead>
</form> <tr id="tableCopySource">
<td contenteditable="false" class="time">
<input type="text" class="form-control timeDurPicker" id="timeValue-ID" value="#VALUE#">
<value></value>
</td>
<td class="pt-3-half full" contenteditable="false">
<div class="clr-field" style="color: #bg-COLOR#;">
<button aria-labelledby="clr-open-label"></button>
<input type="text" class="coloris" value="#COLOR#"></div>
</div>
</td>
<td>
<span class="table-remove"><button type="button"
class="btn btn-danger btn-rounded btn-sm my-0 deleteRow1">
Remove
</button></span>
</td>
</tr>
</tbody>
</table>
</td>
<td contenteditable="true" class="color full"><input id="demo-input2" type="text"
value="#COLOR#" data-coloris /></td>
</td> <tr><td class="pt-3-half numVal" contenteditable="true">#VALUE#</td>
<td> <td class="pt-3-half full" contenteditable="false">
<button type="button" <div class="clr-field" style="color: #bg-COLOR#;">
class="btn btn-danger btn-rounded btn-sm my-0 deleteRow1">Remove</button> <button aria-labelledby="clr-open-label"></button>
</td> <input id="demo-input1" type="text" class="coloris" value="#COLOR#"></div>
</tr> </div>
</td>
<td>
<span class="table-remove"><button type="button"
class="btn btn-danger btn-rounded btn-sm my-0 deleteRow1">
Remove
</button></span>
</td>
</tr>
</templateObj> </templateObj>
<script> <script>
$('#duration2').durationPicker({ $('#duration2').durationPicker({
@ -376,7 +403,10 @@
Coloris({ Coloris({
el: '.coloris', el: '.coloris',
alpha: false, alpha: false,
}); });
$(function () {
$('[data-toggle="tooltip"]').tooltip({container: "body"})
})
</script> </script>
</body> </body>