From bbce0fdd20b7e095b5fdea6ac2c7a03efe838c67 Mon Sep 17 00:00:00 2001 From: Ivan Goethals Date: Mon, 15 Jan 2024 21:58:27 +0100 Subject: [PATCH] Cosmetische aanpassing lichtcircuit tekst --- builddate.js | 2 +- eendraadschema.js | 18 +++++++++++++++--- src/List_Item/Schakelaars/Lichtcircuit.ts | 4 ++-- src/eendraadschema.js | 4 ++-- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/builddate.js b/builddate.js index 54d2617..7a9232e 100644 --- a/builddate.js +++ b/builddate.js @@ -1 +1 @@ -var CONF_builddate="20240114-222859" +var CONF_builddate="20240115-215745" diff --git a/eendraadschema.js b/eendraadschema.js index 4acd511..2807eab 100644 --- a/eendraadschema.js +++ b/eendraadschema.js @@ -928,10 +928,22 @@ var Lichtcircuit = /** @class */ (function (_super) { output += ", Trekschakelaar: " + this.checkboxPropToHTML('is_trekschakelaar'); switch (this.props.type_schakelaar) { case "enkelpolig": - output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["1", "2", "3", "4", "5"]); + if (this.props.aantal_schakelaars == 0) { + output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["0", "1", "2", "3", "4", "5"]) + + ' Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; + } + else { + output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["1", "2", "3", "4", "5"]); + } break; case "dubbelpolig": - output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["1", "2"]); + if (this.props.aantal_schakelaars == 0) { + output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["0", "1", "2"]) + + ' Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; + } + else { + output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["1", "2"]); + } break; } output += ", Aantal lichtpunten: " + this.selectPropToHTML('aantal_lichtpunten', ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10"]); @@ -4795,7 +4807,7 @@ var Print_Table = /** @class */ (function () { for (pagenum = 0; pagenum < this.pages.length; pagenum++) { outstr += '' + (pagenum + 1) + '' + this.pages[pagenum].start + ''; if (pagenum != this.pages.length - 1) { - outstr += ''; + outstr += ''; } else { outstr += this.pages[pagenum].stop.toString(); diff --git a/src/List_Item/Schakelaars/Lichtcircuit.ts b/src/List_Item/Schakelaars/Lichtcircuit.ts index e618868..bd8e86c 100644 --- a/src/List_Item/Schakelaars/Lichtcircuit.ts +++ b/src/List_Item/Schakelaars/Lichtcircuit.ts @@ -27,14 +27,14 @@ class Lichtcircuit extends Schakelaars { case "enkelpolig": if (this.props.aantal_schakelaars == 0) { output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars',["0", "1","2","3","4","5"]) - + 'Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; + + ' Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; } else { output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars',["1","2","3","4","5"]); } break; case "dubbelpolig": if (this.props.aantal_schakelaars == 0) { output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars',["0","1","2"]) - + 'Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; + + ' Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; } else { output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars',["1","2"]); } break; diff --git a/src/eendraadschema.js b/src/eendraadschema.js index 9b86684..2807eab 100644 --- a/src/eendraadschema.js +++ b/src/eendraadschema.js @@ -930,7 +930,7 @@ var Lichtcircuit = /** @class */ (function (_super) { case "enkelpolig": if (this.props.aantal_schakelaars == 0) { output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["0", "1", "2", "3", "4", "5"]) - + 'Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; + + ' Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; } else { output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["1", "2", "3", "4", "5"]); @@ -939,7 +939,7 @@ var Lichtcircuit = /** @class */ (function (_super) { case "dubbelpolig": if (this.props.aantal_schakelaars == 0) { output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["0", "1", "2"]) - + 'Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; + + ' Compatibiliteitsmodus, kies aantal schakelaars verschillend van 0 of gebruik element lichtpunt'; } else { output += ", Aantal schakelaars: " + this.selectPropToHTML('aantal_schakelaars', ["1", "2"]);