2023-10-25 17:06:19 +08:00
|
|
|
|
import {Tab} from "./Tab";
|
2023-12-18 00:00:00 +08:00
|
|
|
|
import {getInstanceById, newModelByInitData, saveLayout} from "./util";
|
2023-10-25 17:06:19 +08:00
|
|
|
|
import {getAllModels, getAllTabs} from "./getAll";
|
|
|
|
|
|
import {hideAllElements, hideElements} from "../protyle/ui/hideElements";
|
|
|
|
|
|
import {pdfResize} from "../asset/renderAssets";
|
|
|
|
|
|
import {App} from "../index";
|
|
|
|
|
|
import {Model} from "./Model";
|
|
|
|
|
|
import {Editor} from "../editor";
|
|
|
|
|
|
import {Asset} from "../asset";
|
|
|
|
|
|
import {Graph} from "./dock/Graph";
|
|
|
|
|
|
import {Files} from "./dock/Files";
|
|
|
|
|
|
import {Outline} from "./dock/Outline";
|
|
|
|
|
|
import {Backlink} from "./dock/Backlink";
|
|
|
|
|
|
import {Bookmark} from "./dock/Bookmark";
|
|
|
|
|
|
import {Tag} from "./dock/Tag";
|
|
|
|
|
|
import {Search} from "../search";
|
|
|
|
|
|
import {Custom} from "./dock/Custom";
|
|
|
|
|
|
import {newCardModel} from "../card/newCardTab";
|
|
|
|
|
|
import {updateHotkeyTip} from "../protyle/util/compatibility";
|
|
|
|
|
|
import {openSearch} from "../search/spread";
|
|
|
|
|
|
import {openRecentDocs} from "../business/openRecentDocs";
|
|
|
|
|
|
import {openHistory} from "../history/history";
|
|
|
|
|
|
import {newFile} from "../util/newFile";
|
|
|
|
|
|
import {mountHelp, newNotebook} from "../util/mount";
|
2023-12-22 12:30:12 +08:00
|
|
|
|
import {Constants} from "../constants";
|
2023-10-25 17:06:19 +08:00
|
|
|
|
|
|
|
|
|
|
export const getActiveTab = (wndActive = true) => {
|
|
|
|
|
|
const activeTabElement = document.querySelector(".layout__wnd--active .item--focus");
|
|
|
|
|
|
let tab;
|
|
|
|
|
|
if (activeTabElement) {
|
|
|
|
|
|
tab = getInstanceById(activeTabElement.getAttribute("data-id")) as Tab;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!tab && !wndActive) {
|
|
|
|
|
|
getAllTabs().find(item => {
|
|
|
|
|
|
if (item.headElement?.classList.contains("item--focus")) {
|
|
|
|
|
|
tab = item;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
return tab;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const switchTabByIndex = (index: number) => {
|
|
|
|
|
|
const activeDockIcoElement = document.querySelector(".dock .dock__item--activefocus");
|
|
|
|
|
|
if (activeDockIcoElement) {
|
2023-10-25 17:34:45 +08:00
|
|
|
|
let indexElement = activeDockIcoElement.parentElement.children[index];
|
2023-10-25 17:06:19 +08:00
|
|
|
|
if (index === -1) {
|
|
|
|
|
|
// 最后一个
|
2023-10-25 17:34:45 +08:00
|
|
|
|
indexElement = activeDockIcoElement.parentElement.lastElementChild;
|
2023-10-25 17:06:19 +08:00
|
|
|
|
if (!indexElement.getAttribute("data-type")) {
|
2023-10-25 17:34:45 +08:00
|
|
|
|
indexElement = indexElement.previousElementSibling;
|
2023-10-25 17:06:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
} else if (index === -2) {
|
|
|
|
|
|
// 上一个
|
2023-10-25 17:34:45 +08:00
|
|
|
|
indexElement = activeDockIcoElement.previousElementSibling;
|
2024-03-11 16:01:10 +08:00
|
|
|
|
if (!indexElement) {
|
|
|
|
|
|
indexElement = activeDockIcoElement.parentElement.lastElementChild;
|
|
|
|
|
|
if (indexElement.classList.contains("dock__item--pin")) {
|
|
|
|
|
|
indexElement = indexElement.previousElementSibling;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-10-25 17:06:19 +08:00
|
|
|
|
} else if (index === -3) {
|
|
|
|
|
|
// 下一个
|
2023-10-25 17:34:45 +08:00
|
|
|
|
indexElement = activeDockIcoElement.nextElementSibling;
|
2024-03-11 16:01:10 +08:00
|
|
|
|
if (!indexElement || indexElement.classList.contains("dock__item--pin")) {
|
|
|
|
|
|
indexElement = activeDockIcoElement.parentElement.firstElementChild;
|
|
|
|
|
|
}
|
2023-10-25 17:06:19 +08:00
|
|
|
|
}
|
2023-10-25 17:34:45 +08:00
|
|
|
|
const type = indexElement?.getAttribute("data-type");
|
2023-10-25 17:06:19 +08:00
|
|
|
|
if (type) {
|
|
|
|
|
|
getDockByType(type)?.toggleModel(type, true, false);
|
|
|
|
|
|
}
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
const tab = getActiveTab(false);
|
|
|
|
|
|
if (tab) {
|
2023-10-25 17:34:45 +08:00
|
|
|
|
let indexElement = tab.parent.headersElement.children[index];
|
2023-10-25 17:06:19 +08:00
|
|
|
|
if (index === -1) {
|
|
|
|
|
|
// 最后一个
|
2023-10-25 17:34:45 +08:00
|
|
|
|
indexElement = tab.parent.headersElement.lastElementChild;
|
2023-10-25 17:06:19 +08:00
|
|
|
|
} else if (index === -2) {
|
|
|
|
|
|
// 上一个
|
2023-10-25 17:34:45 +08:00
|
|
|
|
indexElement = tab.headElement.previousElementSibling;
|
2024-03-11 16:01:10 +08:00
|
|
|
|
if (!indexElement) {
|
|
|
|
|
|
indexElement = tab.headElement.parentElement.lastElementChild;
|
|
|
|
|
|
}
|
2023-10-25 17:06:19 +08:00
|
|
|
|
} else if (index === -3) {
|
|
|
|
|
|
// 下一个
|
2023-10-25 17:34:45 +08:00
|
|
|
|
indexElement = tab.headElement.nextElementSibling;
|
2024-03-11 16:01:10 +08:00
|
|
|
|
if (!indexElement) {
|
|
|
|
|
|
indexElement = tab.headElement.parentElement.firstElementChild;
|
|
|
|
|
|
}
|
2023-10-25 17:06:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (indexElement) {
|
|
|
|
|
|
tab.parent.switchTab(indexElement as HTMLElement, true);
|
|
|
|
|
|
tab.parent.showHeading();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-10-25 17:34:45 +08:00
|
|
|
|
};
|
2023-10-25 17:06:19 +08:00
|
|
|
|
|
|
|
|
|
|
let resizeTimeout: number;
|
2023-12-17 23:54:16 +08:00
|
|
|
|
export const resizeTabs = (isSaveLayout = true) => {
|
2023-10-25 17:06:19 +08:00
|
|
|
|
clearTimeout(resizeTimeout);
|
|
|
|
|
|
// .layout .fn__flex-shrink {width .15s cubic-bezier(0, 0, .2, 1) 0ms} 时需要再次计算 padding
|
|
|
|
|
|
// PDF 避免分屏多次调用后,页码跳转到1 https://github.com/siyuan-note/siyuan/issues/5646
|
|
|
|
|
|
resizeTimeout = window.setTimeout(() => {
|
|
|
|
|
|
const models = getAllModels();
|
|
|
|
|
|
models.editor.forEach((item) => {
|
|
|
|
|
|
if (item.editor && item.editor.protyle &&
|
|
|
|
|
|
item.element.parentElement && !item.element.classList.contains("fn__none")) {
|
|
|
|
|
|
item.editor.resize();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
// https://github.com/siyuan-note/siyuan/issues/6250
|
|
|
|
|
|
models.backlink.forEach(item => {
|
|
|
|
|
|
const mTreeElement = item.element.querySelector(".backlinkMList") as HTMLElement;
|
|
|
|
|
|
if (mTreeElement.style.height && mTreeElement.style.height !== "0px" && item.element.clientHeight !== 0) {
|
|
|
|
|
|
mTreeElement.style.height = (item.element.clientHeight - mTreeElement.previousElementSibling.clientHeight * 2) + "px";
|
|
|
|
|
|
}
|
|
|
|
|
|
item.editors.forEach(editorItem => {
|
|
|
|
|
|
hideElements(["gutter"], editorItem.protyle);
|
|
|
|
|
|
editorItem.resize();
|
|
|
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
|
|
models.search.forEach(item => {
|
2024-02-29 00:33:11 +08:00
|
|
|
|
if (item.element.querySelector("#searchUnRefPanel").classList.contains("fn__none")) {
|
|
|
|
|
|
item.editors.edit.resize();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
item.editors.unRefEdit.resize();
|
|
|
|
|
|
}
|
2023-10-25 17:06:19 +08:00
|
|
|
|
});
|
|
|
|
|
|
models.custom.forEach(item => {
|
|
|
|
|
|
if (item.resize) {
|
|
|
|
|
|
item.resize();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
pdfResize();
|
|
|
|
|
|
hideAllElements(["gutter"]);
|
2023-12-17 23:54:16 +08:00
|
|
|
|
if (isSaveLayout) {
|
|
|
|
|
|
saveLayout();
|
2023-12-17 12:17:22 +08:00
|
|
|
|
}
|
2023-10-25 17:06:19 +08:00
|
|
|
|
}, 200);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const getDockByType = (type: string) => {
|
|
|
|
|
|
if (!window.siyuan.layout.leftDock) {
|
|
|
|
|
|
return undefined;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (window.siyuan.layout.leftDock.data[type]) {
|
|
|
|
|
|
return window.siyuan.layout.leftDock;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (window.siyuan.layout.rightDock.data[type]) {
|
|
|
|
|
|
return window.siyuan.layout.rightDock;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (window.siyuan.layout.bottomDock.data[type]) {
|
|
|
|
|
|
return window.siyuan.layout.bottomDock;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const newCenterEmptyTab = (app: App) => {
|
|
|
|
|
|
return new Tab({
|
|
|
|
|
|
panel: `<div class="layout__empty b3-list">
|
|
|
|
|
|
<div class="${!window.siyuan.config.readonly ? " fn__none" : ""}">
|
|
|
|
|
|
<div class="config-about__logo">
|
|
|
|
|
|
<img src="/stage/icon.png">
|
|
|
|
|
|
${window.siyuan.languages.siyuanNote}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="b3-label__text">${window.siyuan.languages.slogan}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="fn__hr"></div>
|
|
|
|
|
|
<div class="b3-list-item" id="editorEmptySearch">
|
|
|
|
|
|
<svg class="b3-list-item__graphic"><use xlink:href="#iconSearch"></use></svg>
|
|
|
|
|
|
<span>${window.siyuan.languages.search}</span>
|
|
|
|
|
|
<span class="b3-list-item__meta">${updateHotkeyTip(window.siyuan.config.keymap.general.globalSearch.custom)}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div id="editorEmptyRecent" class="b3-list-item">
|
|
|
|
|
|
<svg class="b3-list-item__graphic"><use xlink:href="#iconList"></use></svg>
|
|
|
|
|
|
<span>${window.siyuan.languages.recentDocs}</span>
|
|
|
|
|
|
<span class="b3-list-item__meta">${updateHotkeyTip(window.siyuan.config.keymap.general.recentDocs.custom)}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div id="editorEmptyHistory" class="b3-list-item${window.siyuan.config.readonly ? " fn__none" : ""}">
|
|
|
|
|
|
<svg class="b3-list-item__graphic"><use xlink:href="#iconHistory"></use></svg>
|
|
|
|
|
|
<span>${window.siyuan.languages.dataHistory}</span>
|
|
|
|
|
|
<span class="b3-list-item__meta">${updateHotkeyTip(window.siyuan.config.keymap.general.dataHistory.custom)}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="b3-list-item${window.siyuan.config.readonly ? " fn__none" : ""}" id="editorEmptyFile">
|
|
|
|
|
|
<svg class="b3-list-item__graphic"><use xlink:href="#iconFile"></use></svg>
|
|
|
|
|
|
<span>${window.siyuan.languages.newFile}</span>
|
|
|
|
|
|
<span class="b3-list-item__meta">${updateHotkeyTip(window.siyuan.config.keymap.general.newFile.custom)}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="b3-list-item${window.siyuan.config.readonly ? " fn__none" : ""}" id="editorEmptyNewNotebook">
|
|
|
|
|
|
<svg class="b3-list-item__graphic"><use xlink:href="#iconFilesRoot"></use></svg>
|
|
|
|
|
|
<span>${window.siyuan.languages.newNotebook}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="b3-list-item" id="editorEmptyHelp">
|
|
|
|
|
|
<svg class="b3-list-item__graphic"><use xlink:href="#iconHelp"></use></svg>
|
|
|
|
|
|
<span>${window.siyuan.languages.help}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>`,
|
|
|
|
|
|
callback(tab: Tab) {
|
|
|
|
|
|
tab.panelElement.addEventListener("click", (event) => {
|
|
|
|
|
|
let target = event.target as HTMLElement;
|
|
|
|
|
|
while (target && !target.isEqualNode(tab.panelElement)) {
|
|
|
|
|
|
if (target.id === "editorEmptySearch") {
|
|
|
|
|
|
openSearch({
|
|
|
|
|
|
app,
|
2023-12-22 12:30:12 +08:00
|
|
|
|
hotkey: Constants.DIALOG_GLOBALSEARCH,
|
2023-10-25 17:06:19 +08:00
|
|
|
|
});
|
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
break;
|
|
|
|
|
|
} else if (target.id === "editorEmptyRecent") {
|
|
|
|
|
|
openRecentDocs();
|
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
break;
|
|
|
|
|
|
} else if (target.id === "editorEmptyHistory") {
|
|
|
|
|
|
openHistory(app);
|
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
break;
|
|
|
|
|
|
} else if (target.id === "editorEmptyFile") {
|
|
|
|
|
|
newFile({
|
|
|
|
|
|
app,
|
|
|
|
|
|
useSavePath: true
|
|
|
|
|
|
});
|
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
break;
|
|
|
|
|
|
} else if (target.id === "editorEmptyNewNotebook") {
|
|
|
|
|
|
newNotebook();
|
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
break;
|
|
|
|
|
|
} else if (target.id === "editorEmptyHelp") {
|
|
|
|
|
|
mountHelp();
|
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
target = target.parentElement;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const copyTab = (app: App, tab: Tab) => {
|
|
|
|
|
|
return new Tab({
|
|
|
|
|
|
icon: tab.icon,
|
|
|
|
|
|
docIcon: tab.docIcon,
|
|
|
|
|
|
title: tab.title,
|
|
|
|
|
|
callback(newTab: Tab) {
|
|
|
|
|
|
let model: Model;
|
|
|
|
|
|
if (tab.model instanceof Editor) {
|
|
|
|
|
|
model = new Editor({
|
|
|
|
|
|
app,
|
|
|
|
|
|
tab: newTab,
|
2023-12-09 22:58:33 +08:00
|
|
|
|
blockId: tab.model.editor.protyle.block.id,
|
|
|
|
|
|
rootId: tab.model.editor.protyle.block.rootID
|
2023-10-25 17:06:19 +08:00
|
|
|
|
});
|
|
|
|
|
|
} else if (tab.model instanceof Asset) {
|
|
|
|
|
|
model = new Asset({
|
|
|
|
|
|
app,
|
|
|
|
|
|
tab: newTab,
|
|
|
|
|
|
path: tab.model.path
|
|
|
|
|
|
});
|
|
|
|
|
|
} else if (tab.model instanceof Graph) {
|
|
|
|
|
|
model = new Graph({
|
|
|
|
|
|
app,
|
|
|
|
|
|
tab: newTab,
|
|
|
|
|
|
blockId: tab.model.blockId,
|
|
|
|
|
|
rootId: tab.model.rootId,
|
|
|
|
|
|
type: tab.model.type,
|
|
|
|
|
|
});
|
|
|
|
|
|
} else if (tab.model instanceof Files) {
|
|
|
|
|
|
model = new Files({
|
|
|
|
|
|
app,
|
|
|
|
|
|
tab: newTab
|
|
|
|
|
|
});
|
|
|
|
|
|
} else if (tab.model instanceof Outline) {
|
|
|
|
|
|
model = new Outline({
|
|
|
|
|
|
app,
|
|
|
|
|
|
tab: newTab,
|
|
|
|
|
|
blockId: tab.model.blockId,
|
|
|
|
|
|
type: tab.model.type,
|
|
|
|
|
|
isPreview: tab.model.isPreview
|
|
|
|
|
|
});
|
|
|
|
|
|
} else if (tab.model instanceof Backlink) {
|
|
|
|
|
|
model = new Backlink({
|
|
|
|
|
|
app,
|
|
|
|
|
|
tab: newTab,
|
|
|
|
|
|
blockId: tab.model.blockId,
|
|
|
|
|
|
rootId: tab.model.rootId,
|
|
|
|
|
|
type: tab.model.type
|
|
|
|
|
|
});
|
|
|
|
|
|
} else if (tab.model instanceof Bookmark) {
|
|
|
|
|
|
model = new Bookmark(app, newTab);
|
|
|
|
|
|
} else if (tab.model instanceof Tag) {
|
|
|
|
|
|
model = new Tag(app, newTab);
|
|
|
|
|
|
} else if (tab.model instanceof Search) {
|
|
|
|
|
|
model = new Search({
|
|
|
|
|
|
app,
|
|
|
|
|
|
tab: newTab,
|
|
|
|
|
|
config: tab.model.config
|
|
|
|
|
|
});
|
|
|
|
|
|
} else if (tab.model instanceof Custom) {
|
|
|
|
|
|
const custom = tab.model as Custom;
|
|
|
|
|
|
if (custom.type === "siyuan-card") {
|
|
|
|
|
|
model = newCardModel({
|
|
|
|
|
|
app,
|
|
|
|
|
|
tab: newTab,
|
|
|
|
|
|
data: custom.data
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
app.plugins.find(item => {
|
|
|
|
|
|
if (item.models[custom.type]) {
|
|
|
|
|
|
model = item.models[custom.type]({
|
|
|
|
|
|
tab: newTab,
|
|
|
|
|
|
data: custom.data
|
|
|
|
|
|
});
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (!tab.model && tab.headElement) {
|
|
|
|
|
|
const initData = JSON.parse(tab.headElement.getAttribute("data-initdata") || "{}");
|
|
|
|
|
|
if (initData) {
|
|
|
|
|
|
model = newModelByInitData(app, newTab, initData);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
newTab.addModel(model);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const closeTabByType = async (tab: Tab, type: "closeOthers" | "closeAll" | "other", tabs?: Tab[]) => {
|
|
|
|
|
|
if (type === "closeOthers") {
|
|
|
|
|
|
for (let index = 0; index < tab.parent.children.length; index++) {
|
|
|
|
|
|
if (tab.parent.children[index].id !== tab.id && !tab.parent.children[index].headElement.classList.contains("item--pin")) {
|
2023-12-09 12:09:46 +08:00
|
|
|
|
await tab.parent.children[index].parent.removeTab(tab.parent.children[index].id, true, false);
|
2023-10-25 17:34:07 +08:00
|
|
|
|
index--;
|
2023-10-25 17:06:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-11-10 18:26:29 +08:00
|
|
|
|
} else if (type === "closeAll") {
|
2023-10-25 17:06:19 +08:00
|
|
|
|
for (let index = 0; index < tab.parent.children.length; index++) {
|
|
|
|
|
|
if (!tab.parent.children[index].headElement.classList.contains("item--pin")) {
|
|
|
|
|
|
await tab.parent.children[index].parent.removeTab(tab.parent.children[index].id, true);
|
2023-10-25 17:34:07 +08:00
|
|
|
|
index--;
|
2023-10-25 17:06:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-11-10 18:26:29 +08:00
|
|
|
|
} else if (tabs.length > 0) {
|
2023-10-25 17:06:19 +08:00
|
|
|
|
for (let index = 0; index < tabs.length; index++) {
|
|
|
|
|
|
if (!tabs[index].headElement.classList.contains("item--pin")) {
|
|
|
|
|
|
await tabs[index].parent.removeTab(tabs[index].id);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-11-10 18:26:29 +08:00
|
|
|
|
|
|
|
|
|
|
if (tab.headElement.parentElement && !tab.headElement.parentElement.querySelector(".item--focus")) {
|
|
|
|
|
|
tab.parent.switchTab(tab.headElement, true);
|
|
|
|
|
|
} else if (tab.parent.children.length > 0) {
|
|
|
|
|
|
tab.parent.switchTab(tab.parent.children[tab.parent.children.length - 1].headElement, true);
|
|
|
|
|
|
}
|
2023-10-25 17:34:07 +08:00
|
|
|
|
};
|