diff --git a/ignite-template.js b/ignite-template.js index 1d2968d..394ba8b 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -965,9 +965,40 @@ class IgniteTemplate { return null; } }); - } else if (value) { - this.attribute("disabled", "disabled"); - this.class("disabled"); + } else if (Array.isArray(value) && value.length > 0 && value[0] instanceof IgniteProperty) { + //There must be a converter for this to work correctly + if (!converter) { + throw "Cannot pass an array of properties without using a converter!"; + } + + //Attack a callback for all the properties + value.forEach(prop => { + if (prop instanceof IgniteProperty) { + let updateDisabled = () => { + this.onAttributeChanged("disabled", converter(...value.getPropertyValues()) ? "disabled" : null); + this.onClassChanged("disabled", converter(...value.getPropertyValues()) ? "disabled" : null); + } + + this._callbacks.push(prop.attachOnChange((oldValue, newValue) => updateDisabled())); + this._callbacks.push(prop.attachOnPush((list, items) => updateDisabled())); + this._callbacks.push(prop.attachOnUnshift((list, items) => updateDisabled())); + this._callbacks.push(prop.attachOnPop((list) => updateDisabled())); + this._callbacks.push(prop.attachOnShift((list) => updateDisabled())); + this._callbacks.push(prop.attachOnSplice((list, start, deleteCount, items) => updateDisabled())); + } + }); + + if (converter(...value.getPropertyValues())) { + this.attribute("disabled", "disabled"); + this.class("disabled"); + } + } else { + value = converter ? converter(value) : value; + + if (value) { + this.attribute("disabled", "disabled"); + this.class("disabled"); + } } return this;