mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-02-28 05:32:52 +00:00
This commit is contained in:
@@ -692,6 +692,11 @@ export class Wnd {
|
||||
clearCounter();
|
||||
this.children.find((item, index) => {
|
||||
if (item.id === id) {
|
||||
if (item.model instanceof Custom) {
|
||||
if (item.model.beforeDestroy) {
|
||||
item.model.beforeDestroy();
|
||||
}
|
||||
}
|
||||
if (item.model instanceof Editor && hasSaveScroll) {
|
||||
saveScroll(item.model.editor.protyle);
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@ export class Custom extends Model {
|
||||
public type: string;
|
||||
public init: () => void;
|
||||
public destroy: () => void;
|
||||
public beforeDestroy: () => void;
|
||||
public resize: () => void;
|
||||
public update: () => void;
|
||||
|
||||
@@ -18,6 +19,7 @@ export class Custom extends Model {
|
||||
tab: Tab,
|
||||
data: any,
|
||||
destroy?: () => void,
|
||||
beforeDestroy?: () => void,
|
||||
resize?: () => void,
|
||||
update?: () => void,
|
||||
init: () => void
|
||||
@@ -33,6 +35,7 @@ export class Custom extends Model {
|
||||
this.type = options.type;
|
||||
this.init = options.init;
|
||||
this.destroy = options.destroy;
|
||||
this.beforeDestroy = options.beforeDestroy;
|
||||
this.resize = options.resize;
|
||||
this.update = options.update;
|
||||
this.init();
|
||||
|
||||
@@ -174,6 +174,7 @@ export class Plugin {
|
||||
public addTab(options: {
|
||||
type: string,
|
||||
destroy?: () => void,
|
||||
beforeDestroy?: () => void,
|
||||
resize?: () => void,
|
||||
update?: () => void,
|
||||
init: () => void
|
||||
@@ -187,6 +188,7 @@ export class Plugin {
|
||||
type: type2,
|
||||
data: arg.data,
|
||||
init: options.init,
|
||||
beforeDestroy: options.beforeDestroy,
|
||||
destroy: options.destroy,
|
||||
resize: options.resize,
|
||||
update: options.update,
|
||||
|
||||
Reference in New Issue
Block a user