diff --git a/ignite-template.js b/ignite-template.js index 51172c0..82553b0 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -287,7 +287,13 @@ class IgniteTemplate { IgniteRenderingContext.push(); if (value instanceof IgniteProperty) { - this._callbacks.push(value.attachOnChange((oldValue, newValue) => this.onInnerHTMLChanged(oldValue, newValue, converter))); + this._callbacks.push(value.attachOnChange((oldValue, newValue) => this.onInnerHTMLChanged((converter != null ? converter(oldValue) : oldValue), (converter != null ? converter(newValue) : newValue)))); + this._callbacks.push(value.attachOnPush((list, items) => this.onInnerHTMLChanged((converter != null ? converter(list) : list), (converter != null ? converter(list) : null)))); + this._callbacks.push(value.attachOnUnshift((list, items) => this.onInnerHTMLChanged((converter != null ? converter(list) : list), (converter != null ? converter(list) : null)))); + this._callbacks.push(value.attachOnPop((list) => this.onInnerHTMLChanged((converter != null ? converter(list) : list), (converter != null ? converter(list) : null)))); + this._callbacks.push(value.attachOnShift((list) => this.onInnerHTMLChanged((converter != null ? converter(list) : list), (converter != null ? converter(list) : null)))); + this._callbacks.push(value.attachOnSplice((list, start, deleteCount, items) => this.onInnerHTMLChanged((converter != null ? converter(list) : list), (converter != null ? converter(list) : null)))); + this._elementInnerHTML = (converter != null ? converter(value.value) : value.value); } else { this._elementInnerHTML = (converter != null ? converter(value) : value); @@ -1026,16 +1032,9 @@ class IgniteTemplate { * on the template's element. * @param {any} oldValue * @param {any} newValue - * @param {Function} converter * @ignore */ - onInnerHTMLChanged(oldValue, newValue, converter) { - if (converter !== null) { - IgniteRenderingContext.push(); - newValue = converter(newValue); - IgniteRenderingContext.pop(); - } - + onInnerHTMLChanged(oldValue, newValue) { if (this.element) { this.element.innerHTML = newValue; }