Skip to content
Snippets Groups Projects
Commit 7c7b52bb authored by Neuber, Eugen Ramon's avatar Neuber, Eugen Ramon :speech_balloon:
Browse files

Add *unboserved* attributes to the internal list of properties

When added in HTML a mutation observer does not recognize them...
parent 019aa200
No related branches found
No related tags found
1 merge request!28Observer test
Pipeline #15667 passed with warnings
...@@ -107,7 +107,7 @@ export class Provider extends HTMLElement { ...@@ -107,7 +107,7 @@ export class Provider extends HTMLElement {
for(const mutation of mutationsList) { for(const mutation of mutationsList) {
if (mutation.type === 'attributes') { if (mutation.type === 'attributes') {
const name = mutation.attributeName; const name = mutation.attributeName;
console.log('The ' + name + ' attribute was modified.'); console.log('Provider (' + that.id() + ') observed attribute "' + name + '" changed');
that[name] = that.getAttribute(name); that[name] = that.getAttribute(name);
that.callbackStore.forEach(item => { that.callbackStore.forEach(item => {
if (item.name === name) { if (item.name === name) {
...@@ -123,6 +123,22 @@ export class Provider extends HTMLElement { ...@@ -123,6 +123,22 @@ export class Provider extends HTMLElement {
// Start observing the target node for configured mutations // Start observing the target node for configured mutations
observer.observe(this, config); observer.observe(this, config);
// get all *not observed* attributes
if (this.hasAttributes()) {
const attrs = this.attributes;
for(let i = attrs.length - 1; i >= 0; i--) {
if (['id', 'class', 'style', 'data-tag-name'].includes(attrs[i].name)) {
continue;
}
if (Provider.observedAttributes.includes(attrs[i].name)) {
continue;
}
this[attrs[i].name] = attrs[i].value;
console.log('Provider (' + that.id() + ') found attribute "' + attrs[i].name + '" = "' + attrs[i].value + '"');
}
}
} }
id() { id() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment