Vanessa 2023-05-24 11:26:49 +08:00
parent 9f64cbf5a8
commit 228da65358
3 changed files with 13 additions and 4 deletions

View file

@ -75,7 +75,7 @@ export class Dock {
}
})
}
if (!showDock) {
if (!showDock && options.data.data[1]) {
options.data.data[1].find(item => {
if (TYPES.includes(item.type)) {
showDock = true
@ -664,5 +664,12 @@ export class Dock {
this.element.lastElementChild.innerHTML = html;
}
}
if (typeof tabIndex === "number") {
this.element.classList.remove("fn__none");
if (data[0].show) {
this.toggleModel(data[0].type, true);
}
}
}
}

View file

@ -91,6 +91,7 @@ const updateDock = (dockItem: IDockTab[], index: number, plugin: Plugin, type: s
plugin.docks[tabItem.type].config.position = index === 0 ? "BottomLeft" : "BottomRight";
}
plugin.docks[tabItem.type].config.index = tabIndex;
plugin.docks[tabItem.type].config.show = tabItem.show;
plugin.docks[tabItem.type].config.size = tabItem.size;
}
})
@ -126,7 +127,7 @@ export const afterLoadPlugin = (plugin: Plugin) => {
window.siyuan.layout.leftDock.genButton([{
type: key,
size: dock.config.size,
show: false,
show: dock.config.show,
icon: dock.config.icon,
title: dock.config.title,
hotkey: dock.config.hotkey
@ -135,7 +136,7 @@ export const afterLoadPlugin = (plugin: Plugin) => {
window.siyuan.layout.bottomDock.genButton([{
type: key,
size: dock.config.size,
show: false,
show: dock.config.show,
icon: dock.config.icon,
title: dock.config.title,
hotkey: dock.config.hotkey
@ -144,7 +145,7 @@ export const afterLoadPlugin = (plugin: Plugin) => {
window.siyuan.layout.rightDock.genButton([{
type: key,
size: dock.config.size,
show: false,
show: dock.config.show,
icon: dock.config.icon,
title: dock.config.title,
hotkey: dock.config.hotkey

View file

@ -314,6 +314,7 @@ declare interface IPluginDockTab {
hotkey?: string,
title: string,
index?: number
show?: boolean
}
declare interface IOpenFileOptions {