mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-23 18:10:12 +01:00
❤️ 完整开源界面和内核 https://github.com/siyuan-note/siyuan/issues/5013
This commit is contained in:
parent
e650b8100c
commit
f40ed985e1
1214 changed files with 345766 additions and 9 deletions
626
app/src/layout/Wnd.ts
Normal file
626
app/src/layout/Wnd.ts
Normal file
|
|
@ -0,0 +1,626 @@
|
|||
import {Layout} from "./index";
|
||||
import {genUUID} from "../util/genID";
|
||||
import {
|
||||
getInstanceById,
|
||||
getWndByLayout,
|
||||
newCenterEmptyTab,
|
||||
resizeTabs,
|
||||
setPanelFocus,
|
||||
switchWnd
|
||||
} from "./util";
|
||||
import {Tab} from "./Tab";
|
||||
import {Model} from "./Model";
|
||||
import {Editor} from "../editor";
|
||||
import {Graph} from "./dock/Graph";
|
||||
import {hasClosestByAttribute, hasClosestByClassName, hasClosestByTag} from "../protyle/util/hasClosest";
|
||||
import {Constants} from "../constants";
|
||||
/// #if !BROWSER
|
||||
import {webFrame} from "electron";
|
||||
import {getCurrentWindow} from "@electron/remote";
|
||||
/// #endif
|
||||
import {Search} from "../search";
|
||||
import {showMessage} from "../dialog/message";
|
||||
import {openFileById, updatePanelByEditor} from "../editor/util";
|
||||
import {scrollCenter} from "../util/highlightById";
|
||||
|
||||
export class Wnd {
|
||||
public id: string;
|
||||
public parent?: Layout;
|
||||
public element: HTMLElement;
|
||||
public headersElement: HTMLElement;
|
||||
public children: Tab[] = [];
|
||||
public resize?: TDirection;
|
||||
|
||||
constructor(resize?: TDirection, parentType?: TLayout) {
|
||||
this.id = genUUID();
|
||||
this.resize = resize;
|
||||
this.element = document.createElement("div");
|
||||
this.element.classList.add("fn__flex-1", "fn__flex");
|
||||
let dragHTML = '<div class="layout-tab-container__drag fn__none"></div>';
|
||||
if (parentType === "left" || parentType === "right" || parentType === "top" || parentType === "bottom") {
|
||||
dragHTML = "";
|
||||
}
|
||||
this.element.innerHTML = `<div data-type="wnd" data-id="${this.id}" class="fn__flex-column fn__flex fn__flex-1">
|
||||
<ul class="fn__flex layout-tab-bar"></ul>
|
||||
<div class="layout-tab-container fn__flex-1">${dragHTML}</div>
|
||||
</div>`;
|
||||
this.headersElement = this.element.querySelector(".layout-tab-bar");
|
||||
this.headersElement.addEventListener("mousedown", (event) => {
|
||||
// 点击鼠标滚轮关闭
|
||||
if (event.button !== 1) {
|
||||
return;
|
||||
}
|
||||
let target = event.target as HTMLElement;
|
||||
while (target && !target.isEqualNode(this.headersElement)) {
|
||||
if (target.tagName === "LI") {
|
||||
this.removeTab(target.getAttribute("data-id"));
|
||||
window.siyuan.menus.menu.remove();
|
||||
event.stopPropagation();
|
||||
event.preventDefault();
|
||||
break;
|
||||
}
|
||||
target = target.parentElement;
|
||||
}
|
||||
|
||||
});
|
||||
this.headersElement.addEventListener("mousewheel", (event: WheelEvent) => {
|
||||
this.headersElement.scrollLeft = this.headersElement.scrollLeft + event.deltaY;
|
||||
}, {passive: true});
|
||||
this.headersElement.addEventListener("click", (event) => {
|
||||
let target = event.target as HTMLElement;
|
||||
while (target && !target.isEqualNode(this.headersElement)) {
|
||||
if (target.tagName === "LI") {
|
||||
this.switchTab(target, true);
|
||||
break;
|
||||
}
|
||||
target = target.parentElement;
|
||||
}
|
||||
});
|
||||
this.headersElement.addEventListener("dblclick", (event) => {
|
||||
if (window.siyuan.config.fileTree.openFilesUseCurrentTab) {
|
||||
let target = event.target as HTMLElement;
|
||||
while (target && !target.isEqualNode(this.headersElement)) {
|
||||
if (target.tagName === "LI") {
|
||||
target.classList.remove("item--unupdate");
|
||||
break;
|
||||
}
|
||||
target = target.parentElement;
|
||||
}
|
||||
}
|
||||
});
|
||||
const dragElement = this.element.querySelector(".layout-tab-container__drag") as HTMLElement;
|
||||
if (!dragElement) {
|
||||
return;
|
||||
}
|
||||
this.element.addEventListener("dragenter", (event: DragEvent & { target: HTMLElement }) => {
|
||||
if (event.dataTransfer.types.includes(Constants.SIYUAN_DROP_TAB)) {
|
||||
const tabHeadersElement = hasClosestByClassName(event.target, "layout-tab-bar");
|
||||
if (tabHeadersElement) {
|
||||
return;
|
||||
}
|
||||
const tabPanelsElement = hasClosestByClassName(event.target, "layout-tab-container", true);
|
||||
if (tabPanelsElement) {
|
||||
dragElement.classList.remove("fn__none");
|
||||
dragElement.setAttribute("style", "height:100%;width:100%;right:auto;bottom:auto");
|
||||
}
|
||||
}
|
||||
});
|
||||
this.headersElement.addEventListener("dragover", function (event: DragEvent & { target: HTMLElement }) {
|
||||
if (!window.siyuan.dragElement || !event.dataTransfer.types.includes(Constants.SIYUAN_DROP_TAB)) {
|
||||
return;
|
||||
}
|
||||
event.preventDefault();
|
||||
const it = this as HTMLElement;
|
||||
const newTabHeaderElement = hasClosestByTag(event.target, "LI");
|
||||
let oldTabHeaderElement = window.siyuan.dragElement;
|
||||
let exitDrag = false;
|
||||
Array.from(it.childNodes).find((item: HTMLElement) => {
|
||||
if (item.style.opacity === "0.1") {
|
||||
oldTabHeaderElement = item;
|
||||
exitDrag = true;
|
||||
return true;
|
||||
}
|
||||
});
|
||||
if (!newTabHeaderElement && !oldTabHeaderElement.classList.contains("item--pin")) {
|
||||
it.classList.add("layout-tab-bar--drag");
|
||||
}
|
||||
if (!exitDrag) {
|
||||
if (oldTabHeaderElement.classList.contains("item--pin")) {
|
||||
return;
|
||||
}
|
||||
oldTabHeaderElement = oldTabHeaderElement.cloneNode(true) as HTMLElement;
|
||||
oldTabHeaderElement.setAttribute("data-clone", "true");
|
||||
it.append(oldTabHeaderElement);
|
||||
return;
|
||||
}
|
||||
if (!newTabHeaderElement) {
|
||||
return;
|
||||
}
|
||||
if (!newTabHeaderElement.isSameNode(oldTabHeaderElement) &&
|
||||
((oldTabHeaderElement.classList.contains("item--pin") && newTabHeaderElement.classList.contains("item--pin")) ||
|
||||
(!oldTabHeaderElement.classList.contains("item--pin") && !newTabHeaderElement.classList.contains("item--pin")))) {
|
||||
const rect = newTabHeaderElement.getClientRects()[0];
|
||||
if (event.clientX > rect.left + rect.width / 2) {
|
||||
newTabHeaderElement.after(oldTabHeaderElement);
|
||||
} else {
|
||||
newTabHeaderElement.before(oldTabHeaderElement);
|
||||
}
|
||||
}
|
||||
});
|
||||
this.headersElement.addEventListener("dragleave", function () {
|
||||
const it = this as HTMLElement;
|
||||
it.classList.remove("layout-tab-bar--drag");
|
||||
document.querySelectorAll(".layout-tab-bar").forEach(item => {
|
||||
if (item !== it) {
|
||||
const cloneElement = item.querySelector("li[data-clone='true']");
|
||||
if (cloneElement) {
|
||||
cloneElement.remove();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
this.headersElement.addEventListener("drop", function (event: DragEvent & { target: HTMLElement }) {
|
||||
const oldTab = getInstanceById(event.dataTransfer.getData(Constants.SIYUAN_DROP_TAB)) as Tab;
|
||||
const it = this as HTMLElement;
|
||||
it.classList.remove("layout-tab-bar--drag");
|
||||
|
||||
const nextTabHeaderElement = (Array.from(it.childNodes).find((item: HTMLElement) => {
|
||||
if (item.style.opacity === "0.1") {
|
||||
return true;
|
||||
}
|
||||
}) as HTMLElement)?.nextElementSibling;
|
||||
|
||||
if (!it.contains(oldTab.headElement)) {
|
||||
// 从其他 Wnd 拖动过来
|
||||
const cloneTabElement = it.querySelector("[data-clone='true']");
|
||||
if (!cloneTabElement) {
|
||||
return;
|
||||
}
|
||||
cloneTabElement.before(oldTab.headElement);
|
||||
cloneTabElement.remove();
|
||||
// 对象顺序
|
||||
const newWnd = getInstanceById(it.parentElement.getAttribute("data-id")) as Wnd;
|
||||
newWnd.moveTab(oldTab, nextTabHeaderElement ? nextTabHeaderElement.getAttribute("data-id") : undefined);
|
||||
resizeTabs();
|
||||
return;
|
||||
}
|
||||
|
||||
let tempTab: Tab;
|
||||
oldTab.parent.children.find((item, index) => {
|
||||
if (item.id === oldTab.id) {
|
||||
tempTab = oldTab.parent.children.splice(index, 1)[0];
|
||||
return true;
|
||||
}
|
||||
});
|
||||
if (nextTabHeaderElement) {
|
||||
oldTab.parent.children.find((item, index) => {
|
||||
if (item.id === nextTabHeaderElement.getAttribute("data-id")) {
|
||||
oldTab.parent.children.splice(index, 0, tempTab);
|
||||
return true;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
oldTab.parent.children.push(tempTab);
|
||||
}
|
||||
});
|
||||
dragElement.addEventListener("dragover", (event: DragEvent & { layerX: number, layerY: number }) => {
|
||||
event.preventDefault();
|
||||
if (!dragElement.nextElementSibling) {
|
||||
return;
|
||||
}
|
||||
const rect = dragElement.parentElement.getBoundingClientRect();
|
||||
const height = rect.height;
|
||||
const width = rect.width;
|
||||
const x = event.clientX - rect.left;
|
||||
const y = event.clientY - rect.top;
|
||||
if ((x <= width / 3 && (y <= height / 8 || y >= height * 7 / 8)) ||
|
||||
(x <= width / 8 && (y > height / 8 || y < height * 7 / 8))) {
|
||||
dragElement.setAttribute("style", "height:100%;width:50%;right:50%;bottom:0;left:0;top:0");
|
||||
} else if ((x > width * 2 / 3 && (y <= height / 8 || y >= height * 7 / 8)) ||
|
||||
(x >= width * 7 / 8 && (y > height / 8 || y < height * 7 / 8))) {
|
||||
dragElement.setAttribute("style", "height:100%;width:50%;right:0;bottom:0;left:50%;top:0");
|
||||
} else if (x > width / 3 && x < width * 2 / 3 && y <= height / 8) {
|
||||
dragElement.setAttribute("style", "height:50%;width:100%;right:0;bottom:50%;left:0;top:0");
|
||||
} else if (x > width / 3 && x < width * 2 / 3 && y >= height * 7 / 8) {
|
||||
dragElement.setAttribute("style", "height:50%;width:100%;right:0;bottom:0;left:0;top:50%");
|
||||
} else {
|
||||
dragElement.setAttribute("style", "height:100%;width:100%;right:0;bottom:0;top:0;left:0");
|
||||
}
|
||||
});
|
||||
dragElement.addEventListener("dragleave", () => {
|
||||
dragElement.classList.add("fn__none");
|
||||
});
|
||||
dragElement.addEventListener("drop", (event: DragEvent & { target: HTMLElement }) => {
|
||||
dragElement.classList.add("fn__none");
|
||||
const targetWndElement = event.target.parentElement.parentElement;
|
||||
const targetWnd = getInstanceById(targetWndElement.getAttribute("data-id")) as Wnd;
|
||||
const tabId = event.dataTransfer.getData(Constants.SIYUAN_DROP_TAB);
|
||||
const oldTab = getInstanceById(tabId) as Tab;
|
||||
if (dragElement.style.height === "50%" || dragElement.style.width === "50%") {
|
||||
// split
|
||||
if (dragElement.style.height === "50%") {
|
||||
// split to bottom
|
||||
const newWnd = targetWnd.split("tb");
|
||||
newWnd.headersElement.append(oldTab.headElement);
|
||||
newWnd.moveTab(oldTab);
|
||||
|
||||
if (dragElement.style.bottom === "auto" && newWnd.element.previousElementSibling && targetWnd.element.parentElement) {
|
||||
// 交换位置
|
||||
switchWnd(newWnd, targetWnd);
|
||||
}
|
||||
} else if (dragElement.style.width === "50%") {
|
||||
// split to right
|
||||
const newWnd = targetWnd.split("lr");
|
||||
newWnd.headersElement.append(oldTab.headElement);
|
||||
newWnd.moveTab(oldTab);
|
||||
|
||||
if (dragElement.style.right === "auto" && newWnd.element.previousElementSibling && targetWnd.element.parentElement) {
|
||||
// 交换位置
|
||||
switchWnd(newWnd, targetWnd);
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if (targetWndElement.contains(document.querySelector(`[data-id="${tabId}"]`))) {
|
||||
return;
|
||||
}
|
||||
if (targetWnd) {
|
||||
targetWnd.headersElement.append(oldTab.headElement);
|
||||
targetWnd.moveTab(oldTab);
|
||||
resizeTabs();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public showHeading() {
|
||||
const currentElement = this.headersElement.querySelector(".item--focus") as HTMLElement;
|
||||
if (currentElement.offsetLeft + currentElement.clientWidth > this.headersElement.scrollLeft + this.headersElement.clientWidth) {
|
||||
this.headersElement.scrollLeft = currentElement.offsetLeft + currentElement.clientWidth - this.headersElement.clientWidth;
|
||||
} else if (currentElement.offsetLeft < this.headersElement.scrollLeft) {
|
||||
this.headersElement.scrollLeft = currentElement.offsetLeft;
|
||||
}
|
||||
}
|
||||
|
||||
public switchTab(target: HTMLElement, pushBack = false, update = true) {
|
||||
setPanelFocus(this.headersElement.parentElement);
|
||||
let currentTab: Tab;
|
||||
this.children.forEach((item) => {
|
||||
if (target === item.headElement) {
|
||||
if (item.headElement && item.headElement.classList.contains("fn__none")) {
|
||||
// https://github.com/siyuan-note/siyuan/issues/267
|
||||
} else {
|
||||
item.headElement?.classList.add("item--focus");
|
||||
item.panelElement.classList.remove("fn__none");
|
||||
}
|
||||
currentTab = item;
|
||||
} else {
|
||||
item.headElement?.classList.remove("item--focus");
|
||||
if (!item.panelElement.classList.contains("fn__none")) {
|
||||
// 必须现判断,否则会触发 observer.observe(this.element, {attributeFilter: ["class"]}); 导致 https://ld246.com/article/1641198819303
|
||||
item.panelElement.classList.add("fn__none");
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if (currentTab && currentTab.model instanceof Editor) {
|
||||
const keepCursorId = currentTab.headElement.getAttribute("keep-cursor");
|
||||
if (keepCursorId) {
|
||||
// 在新页签中打开,但不跳转到新页签,单切换到新页签时需调整滚动
|
||||
let nodeElement: HTMLElement;
|
||||
Array.from(currentTab.model.editor.protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${keepCursorId}"]`)).find((item: HTMLElement) => {
|
||||
if (!hasClosestByAttribute(item, "data-type", "NodeBlockQueryEmbed", true)) {
|
||||
nodeElement = item;
|
||||
return true;
|
||||
}
|
||||
});
|
||||
if (nodeElement) {
|
||||
if (!currentTab.model.editor.protyle.toolbar.range) {
|
||||
const range = document.createRange();
|
||||
range.selectNodeContents(nodeElement);
|
||||
range.collapse();
|
||||
currentTab.model.editor.protyle.toolbar.range = range;
|
||||
}
|
||||
scrollCenter(currentTab.model.editor.protyle, nodeElement, true);
|
||||
} else {
|
||||
openFileById({
|
||||
id: keepCursorId,
|
||||
hasContext: true,
|
||||
action: [Constants.CB_GET_FOCUS]
|
||||
});
|
||||
}
|
||||
currentTab.headElement.removeAttribute("keep-cursor");
|
||||
}
|
||||
// focusin 触发前,layout__wnd--active 和 tab 已设置,需在调用里面更新
|
||||
if (update) {
|
||||
updatePanelByEditor(currentTab.model.editor.protyle, true, pushBack);
|
||||
}
|
||||
} else {
|
||||
updatePanelByEditor(undefined, false);
|
||||
}
|
||||
|
||||
if (currentTab && target === currentTab.headElement && currentTab.model instanceof Graph) {
|
||||
currentTab.model.onGraph(false);
|
||||
}
|
||||
}
|
||||
|
||||
public addTab(tab: Tab, keepCursor = false) {
|
||||
if (keepCursor) {
|
||||
tab.headElement?.classList.remove("item--focus");
|
||||
tab.panelElement.classList.add("fn__none");
|
||||
}
|
||||
let oldFocusIndex = 0;
|
||||
this.children.forEach((item, index) => {
|
||||
if (item.headElement?.classList.contains("item--focus")) {
|
||||
oldFocusIndex = index;
|
||||
}
|
||||
if (!keepCursor) {
|
||||
item.headElement?.classList.remove("item--focus");
|
||||
item.panelElement.classList.add("fn__none");
|
||||
}
|
||||
});
|
||||
|
||||
this.children.splice(oldFocusIndex + 1, 0, tab);
|
||||
|
||||
if (tab.headElement) {
|
||||
if (this.headersElement.childElementCount === 0) {
|
||||
this.headersElement.append(tab.headElement);
|
||||
} else {
|
||||
this.headersElement.children[oldFocusIndex].after(tab.headElement);
|
||||
}
|
||||
|
||||
tab.headElement.querySelector(".item__close").addEventListener("click", (event) => {
|
||||
if (tab.headElement.classList.contains("item--pin")) {
|
||||
tab.unpin();
|
||||
} else {
|
||||
tab.parent.removeTab(tab.id);
|
||||
}
|
||||
window.siyuan.menus.menu.remove();
|
||||
event.stopPropagation();
|
||||
event.preventDefault();
|
||||
});
|
||||
}
|
||||
const containerElement = this.element.querySelector(".layout-tab-container")
|
||||
if (!containerElement.querySelector(".fn__flex-1")) {
|
||||
// empty center
|
||||
containerElement.append(tab.panelElement);
|
||||
} else if (!containerElement.querySelector(".layout-tab-container__drag")) {
|
||||
// Dock
|
||||
containerElement.children[oldFocusIndex].after(tab.panelElement);
|
||||
} else {
|
||||
containerElement.children[oldFocusIndex + 1].after(tab.panelElement);
|
||||
}
|
||||
|
||||
tab.parent = this;
|
||||
if (tab.callback) {
|
||||
tab.callback(tab);
|
||||
}
|
||||
// 移除 centerLayout 中的 empty
|
||||
if (this.parent.type === "center" && this.children.length === 2 && !this.children[0].headElement) {
|
||||
this.removeTab(this.children[0].id);
|
||||
}
|
||||
}
|
||||
|
||||
private destroyModel(model: Model) {
|
||||
if (!model) {
|
||||
return;
|
||||
}
|
||||
if (model instanceof Editor && model.editor) {
|
||||
window.siyuan.blockPanels.forEach((item) => {
|
||||
if (item.element && model.editor.protyle.wysiwyg.element.contains(item.element)) {
|
||||
item.destroy();
|
||||
}
|
||||
});
|
||||
model.editor.destroy();
|
||||
return;
|
||||
}
|
||||
if (model instanceof Search) {
|
||||
if (model.protyle) {
|
||||
model.protyle.destroy();
|
||||
}
|
||||
return;
|
||||
}
|
||||
model.send("closews", {});
|
||||
}
|
||||
|
||||
private removeTabAction = (id: string, closeAll = false) => {
|
||||
this.children.find((item, index) => {
|
||||
if (item.id === id) {
|
||||
if (this.children.length === 1) {
|
||||
if (this.children[0].model && this.children[0].model instanceof Editor) {
|
||||
// 关闭窗口中的最后一个 tab
|
||||
setPanelFocus(this.headersElement.parentElement);
|
||||
updatePanelByEditor();
|
||||
}
|
||||
this.destroyModel(this.children[0].model);
|
||||
this.children = [];
|
||||
if (["top", "bottom", "left", "right"].includes(this.parent.type)) {
|
||||
item.panelElement.remove();
|
||||
} else {
|
||||
this.remove();
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (item.headElement) {
|
||||
if (item.headElement.classList.contains("item--focus")) {
|
||||
let currentIndex = index + 1;
|
||||
if (index === this.children.length - 1) {
|
||||
currentIndex = index - 1;
|
||||
}
|
||||
if (this.children[currentIndex] && !closeAll) {
|
||||
this.switchTab(this.children[currentIndex].headElement, true);
|
||||
}
|
||||
}
|
||||
item.headElement.remove();
|
||||
}
|
||||
item.panelElement.remove();
|
||||
this.destroyModel(item.model);
|
||||
this.children.splice(index, 1);
|
||||
resizeTabs();
|
||||
return true;
|
||||
}
|
||||
});
|
||||
const wnd = getWndByLayout(window.siyuan.layout.centerLayout);
|
||||
if (!wnd) {
|
||||
const wnd = new Wnd();
|
||||
window.siyuan.layout.centerLayout.addWnd(wnd);
|
||||
wnd.addTab(newCenterEmptyTab());
|
||||
}
|
||||
/// #if !BROWSER
|
||||
webFrame.clearCache();
|
||||
getCurrentWindow().webContents.session.clearCache();
|
||||
/// #endif
|
||||
};
|
||||
|
||||
public removeTab(id: string, closeAll = false) {
|
||||
for (let index = 0; index < this.children.length; index++) {
|
||||
const item = this.children[index];
|
||||
if (item.id === id) {
|
||||
if ((item.model instanceof Editor) && item.model.editor?.protyle) {
|
||||
if (item.model.editor.protyle.upload.isUploading) {
|
||||
showMessage(window.siyuan.languages.uploading);
|
||||
return;
|
||||
}
|
||||
this.removeTabAction(id, closeAll);
|
||||
} else {
|
||||
this.removeTabAction(id, closeAll);
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public moveTab(tab: Tab, nextId?: string) {
|
||||
this.element.querySelector(".layout-tab-container").append(tab.panelElement);
|
||||
|
||||
if (nextId) {
|
||||
// 只能用 find https://github.com/siyuan-note/siyuan/issues/3455
|
||||
this.children.find((item, index) => {
|
||||
if (item.id === nextId) {
|
||||
this.children.splice(index, 0, tab);
|
||||
return true;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
this.children.push(tab);
|
||||
}
|
||||
this.switchTab(tab.headElement);
|
||||
|
||||
const oldWnd = tab.parent;
|
||||
if (oldWnd.children.length === 1) {
|
||||
oldWnd.children = [];
|
||||
oldWnd.remove();
|
||||
} else {
|
||||
oldWnd.children.find((item, index) => {
|
||||
if (item.id === tab.id) {
|
||||
oldWnd.children.splice(index, 1);
|
||||
resizeTabs();
|
||||
return true;
|
||||
}
|
||||
});
|
||||
oldWnd.switchTab(oldWnd.children[oldWnd.children.length - 1].headElement);
|
||||
}
|
||||
tab.parent = this;
|
||||
resizeTabs();
|
||||
}
|
||||
|
||||
public split(direction: TDirection) {
|
||||
if (this.children.length === 1 && !this.children[0].headElement) {
|
||||
// 场景:没有打开的文档,点击标签面板打开
|
||||
return this;
|
||||
}
|
||||
const wnd = new Wnd(direction);
|
||||
if (direction === this.parent.direction) {
|
||||
this.parent.addWnd(wnd, this.id);
|
||||
} else if (this.parent.children.length === 1) {
|
||||
// layout 仅含一个时,只需更新 direction
|
||||
this.parent.direction = direction;
|
||||
if (direction === "tb") {
|
||||
this.parent.element.classList.add("fn__flex-column");
|
||||
this.parent.element.classList.remove("fn__flex");
|
||||
} else {
|
||||
this.parent.element.classList.remove("fn__flex-column");
|
||||
this.parent.element.classList.add("fn__flex");
|
||||
}
|
||||
this.parent.addWnd(wnd, this.id);
|
||||
} else {
|
||||
this.parent.children.find((item, index) => {
|
||||
if (item.id === this.id) {
|
||||
const layout = new Layout({
|
||||
resize: item.resize,
|
||||
direction,
|
||||
});
|
||||
this.parent.addLayout(layout, item.id);
|
||||
const movedWnd = this.parent.children.splice(index, 1)[0];
|
||||
if (movedWnd.resize) {
|
||||
movedWnd.element.previousElementSibling.remove();
|
||||
movedWnd.resize = undefined;
|
||||
}
|
||||
layout.addWnd.call(layout, movedWnd);
|
||||
layout.addWnd.call(layout, wnd);
|
||||
|
||||
if (direction === "tb" && movedWnd.element.style.width) {
|
||||
layout.element.style.width = movedWnd.element.style.width;
|
||||
layout.element.classList.remove("fn__flex-1");
|
||||
movedWnd.element.style.width = "";
|
||||
movedWnd.element.classList.add("fn__flex-1");
|
||||
} else if (direction === "lr" && movedWnd.element.style.height) {
|
||||
layout.element.style.height = movedWnd.element.style.height;
|
||||
layout.element.classList.remove("fn__flex-1");
|
||||
movedWnd.element.style.height = "";
|
||||
movedWnd.element.classList.add("fn__flex-1");
|
||||
}
|
||||
return true;
|
||||
}
|
||||
});
|
||||
}
|
||||
return wnd;
|
||||
}
|
||||
|
||||
private remove() {
|
||||
let layout = this.parent;
|
||||
let element = this.element;
|
||||
let id = this.id;
|
||||
while (layout && layout.children.length === 1 && "center" !== layout.type) {
|
||||
id = layout.id;
|
||||
element = layout.element;
|
||||
layout = layout.parent;
|
||||
}
|
||||
|
||||
layout.children.find((item, index) => {
|
||||
if (item.id === id) {
|
||||
if (layout.children.length > 1) {
|
||||
let previous = layout.children[index - 1];
|
||||
if (index === 0) {
|
||||
previous = layout.children[1];
|
||||
}
|
||||
if (layout.children.length === 2) {
|
||||
if (layout.direction === "lr") {
|
||||
previous.element.style.width = "";
|
||||
} else {
|
||||
previous.element.style.height = "";
|
||||
}
|
||||
previous.resize = undefined;
|
||||
previous.element.classList.add("fn__flex-1");
|
||||
} else {
|
||||
if (layout.direction === "lr") {
|
||||
previous.element.style.width = (previous.element.clientWidth + element.clientWidth) + "px";
|
||||
} else {
|
||||
previous.element.style.height = (previous.element.clientHeight + element.clientHeight) + "px";
|
||||
}
|
||||
}
|
||||
}
|
||||
layout.children.splice(index, 1);
|
||||
return true;
|
||||
}
|
||||
});
|
||||
if (element.previousElementSibling && element.previousElementSibling.classList.contains("layout__resize")) {
|
||||
element.previousElementSibling.remove();
|
||||
} else if (element.nextElementSibling && element.nextElementSibling.classList.contains("layout__resize")) {
|
||||
element.nextElementSibling.remove();
|
||||
}
|
||||
element.remove();
|
||||
resizeTabs();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue