mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-10 14:42:33 +01:00
This commit is contained in:
parent
bec5fbc9cb
commit
bb36ff79b5
12 changed files with 62 additions and 15 deletions
|
|
@ -1,80 +0,0 @@
|
|||
import {Tree} from "../../util/Tree";
|
||||
import {fetchPost} from "../../util/fetch";
|
||||
import {openMobileFileById} from "../editor";
|
||||
import {Constants} from "../../constants";
|
||||
import {getEventName} from "../../protyle/util/compatibility";
|
||||
|
||||
export class MobileOutline {
|
||||
private tree: Tree;
|
||||
private openNodes: { [key: string]: string[] } = {};
|
||||
private element: Element;
|
||||
|
||||
constructor() {
|
||||
this.element = document.querySelector('#sidebar [data-type="sidebar-outline"]');
|
||||
this.element.innerHTML = `<div class="toolbar toolbar--border toolbar--dark">
|
||||
<div class="fn__space"></div>
|
||||
<div class="toolbar__text">
|
||||
${window.siyuan.languages.outline}
|
||||
</div>
|
||||
<span class="fn__flex-1 fn__space"></span>
|
||||
<svg data-type="expand" class="toolbar__icon"><use xlink:href="#iconExpand"></use></svg>
|
||||
<span class="fn__space"></span>
|
||||
<svg data-type="collapse" class="toolbar__icon"><use xlink:href="#iconContract"></use></svg>
|
||||
</div>
|
||||
<div class="fn__flex-1"></div>`;
|
||||
this.tree = new Tree({
|
||||
element: this.element.lastElementChild as HTMLElement,
|
||||
data: null,
|
||||
click: (element: HTMLElement) => {
|
||||
const id = element.getAttribute("data-node-id");
|
||||
fetchPost("/api/block/checkBlockFold", {id}, (foldResponse) => {
|
||||
openMobileFileById(id, foldResponse.data ? [Constants.CB_GET_FOCUS, Constants.CB_GET_ALL, Constants.CB_GET_HTML] : [Constants.CB_GET_FOCUS, Constants.CB_GET_SETID, Constants.CB_GET_CONTEXT, Constants.CB_GET_HTML]);
|
||||
});
|
||||
}
|
||||
});
|
||||
this.element.firstElementChild.querySelector('[data-type="collapse"]').addEventListener(getEventName(), () => {
|
||||
this.tree.collapseAll();
|
||||
});
|
||||
const expandElement = this.element.firstElementChild.querySelector('[data-type="expand"]');
|
||||
expandElement.addEventListener(getEventName(), () => {
|
||||
if (expandElement.classList.contains("toolbar__icon--active")) {
|
||||
expandElement.classList.remove("toolbar__icon--active");
|
||||
} else {
|
||||
expandElement.classList.add("toolbar__icon--active");
|
||||
}
|
||||
this.tree.expandAll();
|
||||
});
|
||||
this.update();
|
||||
}
|
||||
|
||||
public update() {
|
||||
fetchPost("/api/outline/getDocOutline", {
|
||||
id: window.siyuan.mobile.editor.protyle.block.rootID,
|
||||
}, response => {
|
||||
let currentId;
|
||||
let currentElement = this.element.querySelector(".b3-list-item--focus");
|
||||
if (currentElement) {
|
||||
currentId = currentElement.getAttribute("data-node-id");
|
||||
}
|
||||
|
||||
const blockId = window.siyuan.mobile.editor.protyle.block.rootID;
|
||||
if (this.openNodes[blockId]) {
|
||||
this.openNodes[blockId] = this.tree.getExpandIds();
|
||||
}
|
||||
this.tree.updateData(response.data);
|
||||
if (this.openNodes[blockId] && !this.element.firstElementChild.querySelector('[data-type="expand"]').classList.contains("toolbar__icon--active")) {
|
||||
this.tree.setExpandIds(this.openNodes[blockId]);
|
||||
} else {
|
||||
this.tree.expandAll();
|
||||
this.openNodes[blockId] = this.tree.getExpandIds();
|
||||
}
|
||||
|
||||
if (currentId) {
|
||||
currentElement = this.element.querySelector(`[data-node-id="${currentId}"]`);
|
||||
if (currentElement) {
|
||||
currentElement.classList.add("b3-list-item--focus");
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue