mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-22 01:20:12 +01:00
This commit is contained in:
parent
da4f3cb8fd
commit
16b9480b62
1 changed files with 9 additions and 11 deletions
|
|
@ -921,14 +921,8 @@ export class Files extends Model {
|
||||||
emojiElement.innerHTML = unicode2Emoji(window.siyuan.storage[Constants.LOCAL_IMAGES].folder);
|
emojiElement.innerHTML = unicode2Emoji(window.siyuan.storage[Constants.LOCAL_IMAGES].folder);
|
||||||
}
|
}
|
||||||
const arrowElement = newElement.querySelector(".b3-list-item__arrow");
|
const arrowElement = newElement.querySelector(".b3-list-item__arrow");
|
||||||
if (arrowElement.classList.contains("b3-list-item__arrow--open")) {
|
if (arrowElement.classList.contains("b3-list-item__arrow--open") && response.callback !== Constants.CB_MOVE_NOLIST) {
|
||||||
arrowElement.classList.remove("b3-list-item__arrow--open");
|
this.getLeaf(newElement, response.data.toNotebook, true);
|
||||||
if (newElement.nextElementSibling && newElement.nextElementSibling.tagName === "UL") {
|
|
||||||
newElement.nextElementSibling.remove();
|
|
||||||
}
|
|
||||||
if (response.callback !== Constants.CB_MOVE_NOLIST) {
|
|
||||||
this.getLeaf(newElement, response.data.toNotebook);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -948,7 +942,11 @@ export class Files extends Model {
|
||||||
let nextElement = liElement.nextElementSibling;
|
let nextElement = liElement.nextElementSibling;
|
||||||
if (nextElement && nextElement.tagName === "UL") {
|
if (nextElement && nextElement.tagName === "UL") {
|
||||||
// 文件展开时,刷新
|
// 文件展开时,刷新
|
||||||
nextElement.remove();
|
nextElement.innerHTML = fileHTML;
|
||||||
|
if (typeof scrollTop === "number") {
|
||||||
|
this.element.scroll({top: scrollTop, behavior: "smooth"});
|
||||||
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
liElement.querySelector(".b3-list-item__arrow").classList.add("b3-list-item__arrow--open");
|
liElement.querySelector(".b3-list-item__arrow").classList.add("b3-list-item__arrow--open");
|
||||||
liElement.insertAdjacentHTML("afterend", `<ul class="file-tree__sliderDown">${fileHTML}</ul>`);
|
liElement.insertAdjacentHTML("afterend", `<ul class="file-tree__sliderDown">${fileHTML}</ul>`);
|
||||||
|
|
@ -1021,9 +1019,9 @@ export class Files extends Model {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public getLeaf(liElement: Element, notebookId: string) {
|
public getLeaf(liElement: Element, notebookId: string, focusUpdate = false) {
|
||||||
const toggleElement = liElement.querySelector(".b3-list-item__arrow");
|
const toggleElement = liElement.querySelector(".b3-list-item__arrow");
|
||||||
if (toggleElement.classList.contains("b3-list-item__arrow--open")) {
|
if (toggleElement.classList.contains("b3-list-item__arrow--open") && !focusUpdate) {
|
||||||
toggleElement.classList.remove("b3-list-item__arrow--open");
|
toggleElement.classList.remove("b3-list-item__arrow--open");
|
||||||
liElement.nextElementSibling?.remove();
|
liElement.nextElementSibling?.remove();
|
||||||
this.getOpenPaths();
|
this.getOpenPaths();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue