From 1ea51c1451539ae644fb230cc5710745b940f281 Mon Sep 17 00:00:00 2001 From: MattMo Date: Sat, 8 Jul 2023 09:47:49 -0700 Subject: [PATCH] Modified value function for ignite template to reflect even if the value isn't an ignite property. Cleaned up the code and simplified it. --- ignite-template.js | 80 +++++++++++++++++++++++----------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/ignite-template.js b/ignite-template.js index 1d2968d..67462bd 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -198,48 +198,48 @@ class IgniteTemplate { this._callbacks.push(value.attachOnShift((list) => this.onValueChanged((converter != null ? converter(list) : null)))); this._callbacks.push(value.attachOnSplice((list, start, deleteCount, items) => this.onValueChanged((converter != null ? converter(list) : null)))); - if (reflect != null && ((typeof (reflect) == "boolean" && reflect == true) || reflect instanceof Function)) { - var valueChanged = () => { - var newValue = null; - - var type = this.element.hasAttribute("type") ? this.element.getAttribute("type").toLowerCase().trim() : null; - - if (type == "checkbox") { - newValue = this.element.checked; - } else if (type == "radio") { - newValue = this.element.checked; - } else if (type == "number") { - newValue = Number(this.element.value); - } else if (type == "file") { - newValue = this.element.files && this.element.files.length > 0 ? this.element.files[0] : null; - } else if (this.element.hasAttribute("contenteditable") && this.element.getAttribute("contenteditable").toLowerCase().trim() == "true") { - newValue = this.element.textContent; - } else { - newValue = this.element.value; - } - - if (reflect instanceof Function) { - reflect(newValue); - } else { - value.setValue(newValue, true); - } - - this._elementValue = newValue; - }; - - if (live) { - this.on("input", valueChanged); - } - - this.on("change", valueChanged); - this.on("keyup", valueChanged); - } - this._elementValue = (converter != null ? converter(value.value) : value.value); } else { this._elementValue = (converter != null ? converter(value) : value); } + if (reflect != null && ((typeof (reflect) == "boolean" && reflect == true) || reflect instanceof Function)) { + var valueChanged = () => { + var newValue = null; + + var type = this.element.hasAttribute("type") ? this.element.getAttribute("type").toLowerCase().trim() : null; + + if (type == "checkbox") { + newValue = this.element.checked; + } else if (type == "radio") { + newValue = this.element.checked; + } else if (type == "number") { + newValue = Number(this.element.value); + } else if (type == "file") { + newValue = this.element.files && this.element.files.length > 0 ? this.element.files[0] : null; + } else if (this.element.hasAttribute("contenteditable") && this.element.getAttribute("contenteditable").toLowerCase().trim() == "true") { + newValue = this.element.textContent; + } else { + newValue = this.element.value; + } + + if (reflect instanceof Function) { + reflect(newValue); + } else if (value instanceof IgniteProperty) { + value.setValue(newValue, true); + } + + this._elementValue = newValue; + }; + + if (live) { + this.on("input", valueChanged); + } + + this.on("change", valueChanged); + this.on("keyup", valueChanged); + } + IgniteRendering.pop(); return this; } @@ -2766,7 +2766,7 @@ class pagination extends IgniteTemplate { } else { template.element.style.removeProperty("display"); } - + this.pages[page].push(template.element); this.children.push(template); this.elements.push(template.element); @@ -3099,9 +3099,9 @@ class pager extends IgniteTemplate { while (rightSiblingIndex < this.pageCount - 2 && (rightSiblingIndex - leftSiblingIndex) < this.pageRange * 2) { rightSiblingIndex++; } - + var shouldShowLeftDots = leftSiblingIndex > 2; - + var shouldShowRightDots = rightSiblingIndex < this.pageCount - 2; if (shouldShowLeftDots) {