Skip to content

Commit

Permalink
info text for ID
Browse files Browse the repository at this point in the history
  • Loading branch information
MiRo1310 committed Oct 22, 2023
1 parent e5aaf47 commit a54c73e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion admin/js/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,12 @@ function newSelectInstanceRow(id) {
}

function addTextToInputField(element) {
let btn = "";
if (element.text != "")
btn = /*html*/ `<a class="btn-floating btn-small waves-effect waves-light blue btn-addText"><i class="material-icons">add</i></a>`;
return /*html*/ `<tr>
<td class="data-text"><p >${element.text}</p></td>
<td><p class="info-text">${element.info}</p></td>
<td><a class="btn-floating btn-small waves-effect waves-light blue btn-addText"><i class="material-icons">add</i></a></td>
<td>${btn}</td>
</tr>`;
}
4 changes: 3 additions & 1 deletion admin/js/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const globalText = {
text1: "TRIGGER durch einen eindeutigen Wert ersetzen.",
textID: "",
textID: "Um eine ID einzufügen, einfach erst den Block einfügen, ID auswählen diese wird dann automatisch an der passenden Stelle eingefügt, auch wenn die ID geändert werden soll. Wenn der Code den Block nicht erkennt, wird die ID am Ende angehängt.",
};
const helperText = {
nav: [
Expand Down Expand Up @@ -36,6 +36,7 @@ const helperText = {
text: "{set:'id':'ID',val,ack}",
info: "Setzt den Wert der ID auf den val, mit ack(bestätigt)",
},
{ text: "", info: globalText.textID },
],
getText: [
{ text: "{math:/10}", info: "Rechnet den Wert um, /10 kann ersetzt werden" },
Expand All @@ -55,5 +56,6 @@ const helperText = {
text: "{'id':'ID','text':'Wert wurde gesetzt:'}",
info: "Wenn man die Änderung eines anderen Datenpunkts mitgeteilt bekommmen möchte nachdem man den Datenpunkt im ID Input Feld gesetzt hat. Die Änderung wird nur dann mit geteilt wenn diese mit ack:true gesetzt wird. Es muss zwingend ein Text ausserhalb der {} angegeben werden, ansonsten wird dieser automatisch hinzugefügt.",
},
{ text: "", info: globalText.textID },
],
};

0 comments on commit a54c73e

Please sign in to comment.