updating attributes widget based on sync data changes

This commit is contained in:
zadam
2019-08-06 23:20:27 +02:00
parent bfbc124e78
commit de4733e848
6 changed files with 32 additions and 7 deletions

View File

@@ -26,8 +26,6 @@ class AttributesWidget {
async renderBody() {
const $body = this.$widget.find('.card-body');
$body.empty();
const attributes = await this.ctx.attributes.getAttributes();
const ownedAttributes = attributes.filter(attr => attr.noteId === this.ctx.note.noteId);
@@ -35,7 +33,9 @@ class AttributesWidget {
$body.text("No own attributes yet...");
}
await this.renderAttributes(ownedAttributes, $body);
const $attributesContainer = $("<div>");
await this.renderAttributes(ownedAttributes, $attributesContainer);
const inheritedAttributes = attributes.filter(attr => attr.noteId !== this.ctx.note.noteId);
@@ -57,14 +57,16 @@ class AttributesWidget {
$inheritedAttrs.hide();
});
$body.append($showInheritedAttributes);
$body.append($inheritedAttrs);
$attributesContainer.append($showInheritedAttributes);
$attributesContainer.append($inheritedAttrs);
await this.renderAttributes(inheritedAttributes, $inheritedAttrs);
$inheritedAttrs.append($hideInheritedAttributes);
$inheritedAttrs.hide();
}
$body.empty().append($attributesContainer);
}
async renderAttributes(attributes, $container) {
@@ -86,6 +88,14 @@ class AttributesWidget {
}
}
}
syncDataReceived(syncData) {
if (syncData.find(sd => sd.entityName === 'attributes' && sd.noteId === this.ctx.note.noteId)) {
// no need to invalidate attributes since the Attribute class listens to this as well
// (and is guaranteed to run first)
this.renderBody();
}
}
}
export default AttributesWidget;