mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
import TabAwareWidget from "./tab_aware_widget.js";
|
|
|
|
export default class TabCachingWidget extends TabAwareWidget {
|
|
constructor(appContext, parent, widgetFactory) {
|
|
super(appContext, parent);
|
|
|
|
this.widgetFactory = widgetFactory;
|
|
this.widgets = {};
|
|
}
|
|
|
|
isEnabled() {
|
|
return this.tabContext && this.tabContext.isActive();
|
|
}
|
|
|
|
doRender() {
|
|
return this.$widget = $(`<div class="marker" style="display: none;">`);
|
|
}
|
|
|
|
async triggerChildren(name, data) {
|
|
// stop propagation of the event to the children, individual tab widget should not know about tab switching
|
|
// since they are per-tab
|
|
if (name !== 'activeTabChanged') {
|
|
await super.triggerChildren(name, data);
|
|
}
|
|
}
|
|
|
|
refreshWithNote() {
|
|
for (const widget of Object.values(this.widgets)) {
|
|
widget.toggle(false);
|
|
}
|
|
|
|
if (!this.tabContext) {
|
|
console.log(`No tabContext in widget ${this.componentId}.`);
|
|
|
|
return;
|
|
}
|
|
|
|
let widget = this.widgets[this.tabContext.tabId];
|
|
|
|
if (!widget) {
|
|
widget = this.widgets[this.tabContext.tabId] = this.widgetFactory(this);
|
|
this.children.push(widget);
|
|
this.$widget.after(widget.render());
|
|
|
|
widget.eventReceived('setTabContext', {tabContext: this.tabContext});
|
|
}
|
|
|
|
widget.toggle(widget.isEnabled());
|
|
}
|
|
|
|
tabRemovedListener({tabId}) {
|
|
const widget = this.widgets[tabId];
|
|
|
|
if (widget) {
|
|
widget.remove();
|
|
delete this.widgets[tabId];
|
|
|
|
this.children = this.children.filter(ch => ch !== widget);
|
|
}
|
|
}
|
|
|
|
toggle(show) {
|
|
for (const tabId in this.widgets) {
|
|
this.widgets[tabId].toggle(
|
|
show
|
|
&& this.isTab(tabId)
|
|
&& this.widgets[tabId].isEnabled());
|
|
}
|
|
}
|
|
} |