Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
8670aca627
@ -965,10 +965,41 @@ class IgniteTemplate {
|
||||
return null;
|
||||
}
|
||||
});
|
||||
} else if (value) {
|
||||
} 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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user