浏览代码

:art: 重建索引时清空 scroll

Vanessa 1 年之前
父节点
当前提交
f3b0ee51d5
共有 3 个文件被更改,包括 15 次插入3 次删除
  1. 11 1
      app/src/dialog/processSystem.ts
  2. 2 1
      app/src/layout/dock/Files.ts
  3. 2 1
      app/src/mobile/dock/MobileFiles.ts

+ 11 - 1
app/src/dialog/processSystem.ts

@@ -278,11 +278,21 @@ export const transactionError = () => {
         /// #endif
     });
     btnsElement[1].addEventListener("click", () => {
-        fetchPost("/api/filetree/refreshFiletree", {});
+        refreshFileTree();
         dialog.destroy();
     });
 };
 
+export const refreshFileTree = (cb?:() => void) => {
+    window.siyuan.storage[Constants.LOCAL_FILEPOSITION] = {};
+    setStorageVal(Constants.LOCAL_FILEPOSITION, window.siyuan.storage[Constants.LOCAL_FILEPOSITION]);
+    fetchPost("/api/filetree/refreshFiletree", {}, () => {
+        if (cb) {
+            cb()
+        }
+    });
+}
+
 let statusTimeout: number;
 export const progressStatus = (data: IWebSocketData) => {
     const statusElement = document.querySelector("#status") as HTMLElement;

+ 2 - 1
app/src/layout/dock/Files.ts

@@ -19,6 +19,7 @@ import {openFileById} from "../../editor/util";
 import {hasClosestByAttribute, hasClosestByTag, hasTopClosestByTag} from "../../protyle/util/hasClosest";
 import {isTouchDevice} from "../../util/functions";
 import {App} from "../../index";
+import {refreshFileTree} from "../../dialog/processSystem";
 
 export class Files extends Model {
     public element: HTMLElement;
@@ -1074,7 +1075,7 @@ aria-label="${escapeHtml(ariaLabel)}">${getDisplayName(item.name, true, true)}</
             click: () => {
                 if (!this.element.getAttribute("disabled")) {
                     this.element.setAttribute("disabled", "disabled");
-                    fetchPost("/api/filetree/refreshFiletree", {}, () => {
+                    refreshFileTree(() => {
                         this.element.removeAttribute("disabled");
                         this.init(false);
                     });

+ 2 - 1
app/src/mobile/dock/MobileFiles.ts

@@ -14,6 +14,7 @@ import {confirmDialog} from "../../dialog/confirmDialog";
 import {newFile} from "../../util/newFile";
 import {MenuItem} from "../../menus/Menu";
 import {App} from "../../index";
+import {refreshFileTree} from "../../dialog/processSystem";
 
 export class MobileFiles extends Model {
     public element: HTMLElement;
@@ -113,7 +114,7 @@ export class MobileFiles extends Model {
                         Array.from(this.element.children).forEach(item => {
                             notebooks.push(item.getAttribute("data-url"));
                         });
-                        fetchPost("/api/filetree/refreshFiletree", {}, () => {
+                        refreshFileTree(() => {
                             target.removeAttribute("disabled");
                             this.init(false);
                         });