mirror of
https://github.com/zadam/trilium.git
synced 2025-11-17 10:40:41 +01:00
added promotedAttributesExpanded option
This commit is contained in:
@@ -120,11 +120,11 @@ export default class AttributeListWidget extends TabAwareWidget {
|
||||
this.$allAttrWrapper = this.$widget.find('.all-attr-wrapper');
|
||||
|
||||
this.$promotedExpander.on('click', async () => {
|
||||
if (this.$allAttrWrapper.is(":visible")) {
|
||||
this.$allAttrWrapper.slideUp(200);
|
||||
} else {
|
||||
this.$allAttrWrapper.slideDown(200);
|
||||
}
|
||||
const collapse = this.$allAttrWrapper.is(":visible");
|
||||
|
||||
await options.save('promotedAttributesExpanded', !collapse);
|
||||
|
||||
this.triggerEvent(`promotedAttributesCollapsedStateChanged`, {collapse});
|
||||
});
|
||||
|
||||
this.$ownedAndInheritedWrapper = this.$widget.find('.owned-and-inherited-wrapper');
|
||||
@@ -165,7 +165,7 @@ export default class AttributeListWidget extends TabAwareWidget {
|
||||
const hasPromotedAttrs = this.promotedAttributesWidget.getPromotedAttributes().length > 0;
|
||||
|
||||
if (hasPromotedAttrs) {
|
||||
this.$allAttrWrapper.show();
|
||||
this.$allAttrWrapper.toggle(options.is('promotedAttributesExpanded'));
|
||||
this.$ownedAndInheritedWrapper.hide();
|
||||
this.$inheritedAttributesWrapper.hide();
|
||||
}
|
||||
@@ -240,4 +240,16 @@ export default class AttributeListWidget extends TabAwareWidget {
|
||||
this.$ownedAndInheritedWrapper.slideDown(200);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This event is used to synchronize collapsed state of all the tab-cached widgets since they are all rendered
|
||||
* separately but should behave uniformly for the user.
|
||||
*/
|
||||
promotedAttributesCollapsedStateChangedEvent({collapse}) {
|
||||
if (collapse) {
|
||||
this.$allAttrWrapper.slideUp(200);
|
||||
} else {
|
||||
this.$allAttrWrapper.slideDown(200);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user