mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	fix duplicated cached widgets
This commit is contained in:
		| @@ -44,6 +44,7 @@ app.on('will-quit', () => { | ||||
|     globalShortcut.unregisterAll(); | ||||
| }); | ||||
|  | ||||
| // this is to disable electron warning spam in the dev console (local development only) | ||||
| process.env['ELECTRON_DISABLE_SECURITY_WARNINGS'] = 'true'; | ||||
|  | ||||
| require('./src/www'); | ||||
|   | ||||
| @@ -38,12 +38,6 @@ export default class CalendarWidget extends CollapsibleWidget { | ||||
|         console.log("set tab context", tabContext.tabId, "to", this.componentId); | ||||
|     } | ||||
|  | ||||
|     async refresh() { | ||||
|         super.refresh(); | ||||
|  | ||||
|         //console.trace("tab", this.tabContext.tabId); | ||||
|     } | ||||
|  | ||||
|     async doRenderBody() { | ||||
|         await libraryLoader.requireLibrary(libraryLoader.CALENDAR_WIDGET); | ||||
|  | ||||
|   | ||||
| @@ -13,6 +13,14 @@ export default class TabCachingWidget extends TabAwareWidget { | ||||
|         return this.$widget; | ||||
|     } | ||||
|  | ||||
|     activeTabChangedListener(param) { | ||||
|         super.activeTabChangedListener(param); | ||||
|  | ||||
|         // stop propagation of the event to the children, individual tab widget should not know about tab switching | ||||
|         // since they are per-tab | ||||
|         return false; | ||||
|     } | ||||
|  | ||||
|     refreshWithNote() { | ||||
|         for (const widget of Object.values(this.widgets)) { | ||||
|             widget.toggle(false); | ||||
| @@ -28,17 +36,13 @@ export default class TabCachingWidget extends TabAwareWidget { | ||||
|  | ||||
|         if (!widget) { | ||||
|             widget = this.widgets[this.tabContext.tabId] = this.widgetFactory(); | ||||
|             this.children.push(widget); | ||||
|             this.children.push(widget);console.log("Creating widget",widget.componentId,"for", this.tabContext.tabId); | ||||
|             this.$widget.after(widget.render()); | ||||
|  | ||||
|             widget.eventReceived('setTabContext', {tabContext: this.tabContext}); | ||||
|         } | ||||
|  | ||||
|         widget.toggle(true); | ||||
|  | ||||
|         // stop propagation of the event to the children, individual tab widget should not know about tab switching | ||||
|         // since they are per-tab | ||||
|         return false; | ||||
|     } | ||||
|  | ||||
|     tabRemovedListener({tabId}) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user