mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-21 17: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
271
app/src/util/Tree.ts
Normal file
271
app/src/util/Tree.ts
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
import {getIconByType} from "../editor/getIcon";
|
||||
import {hasClosestByTag} from "../protyle/util/hasClosest";
|
||||
import {isMobile} from "./functions";
|
||||
import {mathRender} from "../protyle/markdown/mathRender";
|
||||
|
||||
export class Tree {
|
||||
public element: HTMLElement;
|
||||
private data: IBlockTree[];
|
||||
private blockExtHTML: string;
|
||||
|
||||
private click: (element: HTMLElement, event: MouseEvent) => void;
|
||||
|
||||
private ctrlClick: (element: HTMLElement) => void;
|
||||
private shiftClick: (element: HTMLElement) => void;
|
||||
private altClick: (element: HTMLElement) => void;
|
||||
private rightClick: (element: HTMLElement, event: MouseEvent) => void;
|
||||
|
||||
constructor(options: {
|
||||
element: HTMLElement,
|
||||
data: IBlockTree[],
|
||||
blockExtHTML?: string,
|
||||
click?(element: HTMLElement, event: MouseEvent): void
|
||||
ctrlClick?(element: HTMLElement): void
|
||||
altClick?(element: HTMLElement): void
|
||||
shiftClick?(element: HTMLElement): void
|
||||
rightClick?(element: HTMLElement, event: MouseEvent): void
|
||||
}) {
|
||||
this.click = options.click;
|
||||
this.ctrlClick = options.ctrlClick;
|
||||
this.altClick = options.altClick;
|
||||
this.shiftClick = options.shiftClick;
|
||||
this.rightClick = options.rightClick;
|
||||
this.element = options.element;
|
||||
this.blockExtHTML = options.blockExtHTML;
|
||||
this.updateData(options.data);
|
||||
this.bindEvent();
|
||||
}
|
||||
|
||||
public updateData(data: IBlockTree[]) {
|
||||
this.data = data;
|
||||
if (!this.data || this.data.length === 0) {
|
||||
this.element.innerHTML = `<ul class="b3-list b3-list--background"><li class="b3-list--empty">${window.siyuan.languages.emptyContent}</li></ul>`;
|
||||
} else {
|
||||
this.element.innerHTML = this.genHTML(this.data);
|
||||
mathRender(this.element);
|
||||
}
|
||||
}
|
||||
|
||||
private genHTML(data: IBlockTree[]) {
|
||||
let html = `<ul${data[0].depth === 0 ? " class='b3-list b3-list--background'" : ""}>`;
|
||||
data.forEach((item) => {
|
||||
let iconHTML = '<svg class="b3-list-item__graphic"><use xlink:href="#iconFolder"></use></svg>';
|
||||
if (item.type === "bookmark") {
|
||||
iconHTML = '<svg class="b3-list-item__graphic"><use xlink:href="#iconBookmark"></use></svg>';
|
||||
} else if (item.type === "tag") {
|
||||
iconHTML = '<svg class="b3-list-item__graphic"><use xlink:href="#iconTags"></use></svg>';
|
||||
} else if (item.type === "backlink") {
|
||||
iconHTML = `<svg class="b3-list-item__graphic popover__block" data-id="${item.id}"><use xlink:href="#${getIconByType(item.nodeType, item.subType)}"></use></svg>`;
|
||||
} else if (item.type === "NodeHeading") {
|
||||
iconHTML = `<svg class="b3-list-item__graphic popover__block" data-id="${item.id}"><use xlink:href="#${getIconByType(item.type, item.subType)}"></use></svg>`
|
||||
}
|
||||
let countHTML = "";
|
||||
if (item.count) {
|
||||
countHTML = `<span class="counter">${item.count}</span>`;
|
||||
}
|
||||
html += `<li class="b3-list-item"
|
||||
${(item.nodeType !== "NodeDocument" && item.type === "backlink") ? 'draggable="true"' : ""}
|
||||
${item.id ? 'data-node-id="' + item.id + '"' : ""}
|
||||
data-treetype="${item.type}"
|
||||
data-type="${item.nodeType}"
|
||||
data-subtype="${item.subType}"
|
||||
${item.label ? "data-label='" + item.label + "'" : ""}>
|
||||
<span style="padding-left: ${item.depth * 16}px" class="b3-list-item__toggle">
|
||||
<svg data-id="${item.full || (item.name + item.depth)}" class="b3-list-item__arrow ${((item.children && item.children.length > 0) || (item.blocks && item.blocks.length > 0)) ? "b3-list-item__arrow--open" : "fn__hidden"}"><use xlink:href="#iconRight"></use></svg>
|
||||
</span>
|
||||
${iconHTML}
|
||||
<span class="b3-list-item__text">${item.name}</span>
|
||||
${countHTML}
|
||||
</li>`;
|
||||
if (item.children && item.children.length > 0) {
|
||||
html += this.genHTML(item.children) + "</ul>";
|
||||
}
|
||||
if (item.blocks && item.blocks.length > 0) {
|
||||
html += this.genBlockHTML(item.blocks, true, item.type) + "</ul>";
|
||||
}
|
||||
});
|
||||
return html;
|
||||
}
|
||||
|
||||
private genBlockHTML(data: IBlock[], show = false, type: string) {
|
||||
let html = `<ul class="${!show ? "fn__none" : ""}">`;
|
||||
data.forEach((item: IBlock & {
|
||||
subType: string;
|
||||
count: string;
|
||||
}) => {
|
||||
let countHTML = "";
|
||||
if (item.count) {
|
||||
countHTML = `<span class="counter">${item.count}</span>`;
|
||||
}
|
||||
html += `<li ${type === "backlink" ? 'draggable="true"' : ""}
|
||||
class="b3-list-item ${isMobile() ? "" : "b3-list-item--hide-action"}"
|
||||
data-node-id="${item.id}"
|
||||
data-ref-text="${encodeURIComponent(item.refText)}"
|
||||
data-def-id="${item.defID}"
|
||||
data-type="${item.type}"
|
||||
data-subtype="${item.subType}"
|
||||
data-treetype="${type}"
|
||||
data-def-path="${item.defPath}">
|
||||
<span style="padding-left: ${item.depth * 16}px" class="b3-list-item__toggle">
|
||||
<svg data-id="${item.id}" class="b3-list-item__arrow${item.children ? "" : " fn__hidden"}"><use xlink:href="#iconRight"></use></svg>
|
||||
</span>
|
||||
<svg data-defids='["${item.defID}"]' class="b3-list-item__graphic popover__block" data-id="${item.id}"><use xlink:href="#${getIconByType(item.type, item.subType)}"></use></svg>
|
||||
<span class="b3-list-item__text">${item.content}</span>
|
||||
${countHTML}
|
||||
${this.blockExtHTML || ""}
|
||||
</li>`;
|
||||
if (item.children && item.children.length > 0) {
|
||||
html += this.genBlockHTML(item.children, false, type) + "</ul>";
|
||||
}
|
||||
});
|
||||
return html;
|
||||
}
|
||||
|
||||
private toggleBlocks(liElement: HTMLElement) {
|
||||
if (!liElement.nextElementSibling) {
|
||||
return;
|
||||
}
|
||||
const svgElement = liElement.firstElementChild.firstElementChild;
|
||||
if (svgElement.classList.contains("b3-list-item__arrow--open")) {
|
||||
svgElement.classList.remove("b3-list-item__arrow--open");
|
||||
liElement.nextElementSibling.classList.add("fn__none");
|
||||
if (liElement.nextElementSibling.nextElementSibling && liElement.nextElementSibling.nextElementSibling.tagName === "UL") {
|
||||
liElement.nextElementSibling.nextElementSibling.classList.add("fn__none");
|
||||
}
|
||||
} else {
|
||||
svgElement.classList.add("b3-list-item__arrow--open");
|
||||
liElement.nextElementSibling.classList.remove("fn__none");
|
||||
if (liElement.nextElementSibling.nextElementSibling && liElement.nextElementSibling.nextElementSibling.tagName === "UL") {
|
||||
liElement.nextElementSibling.nextElementSibling.classList.remove("fn__none");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private setCurrent(target: HTMLElement) {
|
||||
if (target.classList.contains("b3-list--empty")) {
|
||||
return;
|
||||
}
|
||||
this.element.querySelectorAll("li").forEach((liItem) => {
|
||||
liItem.classList.remove("b3-list-item--focus");
|
||||
});
|
||||
target.classList.add("b3-list-item--focus");
|
||||
}
|
||||
|
||||
private bindEvent() {
|
||||
this.element.addEventListener("contextmenu", (event) => {
|
||||
let target = event.target as HTMLElement;
|
||||
while (target && !target.isEqualNode(this.element)) {
|
||||
if (target.tagName === "LI" && this.rightClick) {
|
||||
this.rightClick(target, event);
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
break;
|
||||
}
|
||||
target = target.parentElement;
|
||||
}
|
||||
});
|
||||
this.element.addEventListener("click", (event: MouseEvent & { target: HTMLElement }) => {
|
||||
let target = event.target as HTMLElement;
|
||||
while (target && !target.isEqualNode(this.element)) {
|
||||
if (target.classList.contains("b3-list-item__toggle") && !target.firstElementChild.classList.contains("fn__hidden")) {
|
||||
this.toggleBlocks(target.parentElement);
|
||||
this.setCurrent(target.parentElement);
|
||||
event.preventDefault();
|
||||
break;
|
||||
}
|
||||
|
||||
if (target.tagName === "LI") {
|
||||
this.setCurrent(target);
|
||||
if (target.getAttribute("data-node-id") || target.getAttribute("data-treetype") === "tag") {
|
||||
if (this.ctrlClick && window.siyuan.ctrlIsPressed) {
|
||||
this.ctrlClick(target);
|
||||
} else if (this.altClick && window.siyuan.altIsPressed) {
|
||||
this.altClick(target);
|
||||
} else if (this.shiftClick && window.siyuan.shiftIsPressed) {
|
||||
this.shiftClick(target);
|
||||
} else if (this.click) {
|
||||
this.click(target, event);
|
||||
}
|
||||
event.stopPropagation();
|
||||
} else {
|
||||
this.toggleBlocks(target);
|
||||
}
|
||||
event.preventDefault();
|
||||
break;
|
||||
}
|
||||
target = target.parentElement;
|
||||
}
|
||||
});
|
||||
this.element.addEventListener("dragstart", (event: DragEvent & { target: HTMLElement }) => {
|
||||
const liElement = hasClosestByTag(event.target, "LI");
|
||||
if (liElement) {
|
||||
event.dataTransfer.setData("text/html", liElement.outerHTML);
|
||||
// event.dataTransfer.setData(Constants.SIYUAN_DROP_FILE, liElement.parentElement);
|
||||
event.dataTransfer.dropEffect = "move";
|
||||
liElement.style.opacity = "0.1";
|
||||
window.siyuan.dragElement = liElement;
|
||||
}
|
||||
});
|
||||
this.element.addEventListener("dragend", (event: DragEvent & { target: HTMLElement }) => {
|
||||
const liElement = hasClosestByTag(event.target, "LI");
|
||||
if (liElement) {
|
||||
liElement.style.opacity = "1";
|
||||
}
|
||||
window.siyuan.dragElement = undefined;
|
||||
});
|
||||
}
|
||||
|
||||
public expandAll() {
|
||||
this.element.querySelectorAll("ul").forEach(item => {
|
||||
if (!item.classList.contains("b3-list")) {
|
||||
item.classList.remove("fn__none");
|
||||
}
|
||||
});
|
||||
this.element.querySelectorAll(".b3-list-item__arrow").forEach(item => {
|
||||
item.classList.add("b3-list-item__arrow--open");
|
||||
});
|
||||
}
|
||||
|
||||
public collapseAll(isFirst = false) {
|
||||
this.element.querySelectorAll("ul").forEach(item => {
|
||||
if (!item.classList.contains("b3-list")) {
|
||||
if (isFirst && item.parentElement.classList.contains("b3-list")) {
|
||||
// 第一层级不进行缩放
|
||||
} else {
|
||||
item.classList.add("fn__none");
|
||||
}
|
||||
}
|
||||
});
|
||||
this.element.querySelectorAll(".b3-list-item__arrow").forEach(item => {
|
||||
if (isFirst && item.parentElement.parentElement.parentElement.classList.contains("b3-list")) {
|
||||
// 第一层级不进行缩放
|
||||
} else {
|
||||
item.classList.remove("b3-list-item__arrow--open");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public getExpandIds() {
|
||||
const ids: string[] = [];
|
||||
this.element.querySelectorAll(".b3-list-item__arrow--open").forEach(item => {
|
||||
ids.push(item.getAttribute("data-id"));
|
||||
});
|
||||
return ids;
|
||||
}
|
||||
|
||||
public setExpandIds(ids: string[]) {
|
||||
this.element.querySelectorAll(".b3-list-item__arrow").forEach(item => {
|
||||
if (ids.includes(item.getAttribute("data-id"))) {
|
||||
item.classList.add("b3-list-item__arrow--open");
|
||||
if (item.parentElement.parentElement.nextElementSibling) {
|
||||
item.parentElement.parentElement.nextElementSibling.classList.remove("fn__none");
|
||||
}
|
||||
} else {
|
||||
item.classList.remove("b3-list-item__arrow--open");
|
||||
if (item.parentElement.parentElement.nextElementSibling && item.parentElement.parentElement.nextElementSibling.tagName === "UL") {
|
||||
item.parentElement.parentElement.nextElementSibling.classList.add("fn__none");
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue