Style template now uses all available callbacks.
This commit is contained in:
parent
f46e4e181c
commit
ca957f1703
@ -747,8 +747,14 @@ class IgniteTemplate {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (value instanceof IgniteProperty) {
|
if (value instanceof IgniteProperty) {
|
||||||
this._callbacks.push(value.attachOnChange((oldValue, newValue) => this.onStyleChanged(name, (converter ? converter(newValue) : newValue))));
|
this._callbacks.push(value.attachOnChange((oldValue, newValue) => this.onStyleChanged(name, converter ? converter(newValue) : newValue)));
|
||||||
this._styles[name] = { name: name, value: (converter ? converter(value.value) : value.value), priority: priority };
|
this._callbacks.push(value.attachOnPush((list, items) => this.onStyleChanged(name, converter ? converter(list) : null)));
|
||||||
|
this._callbacks.push(value.attachOnUnshift((list, items) => this.onStyleChanged(name, converter ? converter(list) : null)));
|
||||||
|
this._callbacks.push(value.attachOnPop((list) => this.onStyleChanged(name, converter ? converter(list) : null)));
|
||||||
|
this._callbacks.push(value.attachOnShift((list) => this.onStyleChanged(name, converter ? converter(list) : null)));
|
||||||
|
this._callbacks.push(value.attachOnSplice((list, start, deleteCount, items) => this.onStyleChanged(name, converter ? converter(list) : null)));
|
||||||
|
|
||||||
|
this._styles[name] = { name: name, value: converter ? converter(value.value) : value.value, priority: priority };
|
||||||
} else if (Array.isArray(value) && value.length > 0 && value[0] instanceof IgniteProperty) {
|
} else if (Array.isArray(value) && value.length > 0 && value[0] instanceof IgniteProperty) {
|
||||||
//There must be a converter for this to work correctly
|
//There must be a converter for this to work correctly
|
||||||
if (!converter) {
|
if (!converter) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user