Added a special onDeconstruct template function that allows a function to be invoked when the element is being destroyed.

This commit is contained in:
MattMo 2023-07-24 08:51:54 -07:00
parent e4602b710d
commit 841d03d2c3

View File

@ -775,6 +775,25 @@ class IgniteTemplate {
return this; return this;
} }
/**
* Adds an event handler that gets called when this element is being deconstructed from the DOM.
* @param {Function} eventCallback The callback function to be invoked once this element is disconnected.
* @returns {IgniteTemplate} This ignite template so function calls can be chained.
*/
onDeconstruct(eventCallback) {
if (eventCallback) {
this._destructors.push(() => {
IgniteRendering.push();
eventCallback();
IgniteRendering.pop();
});
}
return this;
}
/** /**
* Adds a CSS property to this template with a value and priority. * Adds a CSS property to this template with a value and priority.
* @param {String} name The name of the CSS property to set. * @param {String} name The name of the CSS property to set.