0.1.04 文件树与导入mmap

This commit is contained in:
liaibo
2026-01-07 18:38:56 +08:00
parent 103e36b1c5
commit 294d1d5fb1
28 changed files with 2703 additions and 442 deletions
@@ -0,0 +1,45 @@
import { describe, expect, it } from "vitest";
import {
decodeFileTreeClipboardPayload,
encodeFileTreeClipboardPayload,
inferPasteTargetDocId,
isTextInputTarget,
} from "./clipboard";
describe("file-tree clipboard payload", () => {
it("可编码/解码", () => {
const payload = { type: "mnote-file-tree", version: 1 as const, action: "copy" as const, rowIds: ["doc:a", "asset:x"] };
const text = encodeFileTreeClipboardPayload(payload);
expect(decodeFileTreeClipboardPayload(text)).toEqual(payload);
expect(decodeFileTreeClipboardPayload("not-a-payload")).toBeNull();
});
});
describe("inferPasteTargetDocId", () => {
it("focused 为 doc/index/asset 三分支覆盖", () => {
const rowById = new Map<string, any>();
rowById.set("asset:x", { kind: "asset", rowId: "asset:x", docId: "d1", asset: { id: "x" } });
expect(inferPasteTargetDocId({ focusedRowId: "doc:d2", rowById, activeDocId: "active" })).toBe("d2");
expect(inferPasteTargetDocId({ focusedRowId: "index:d3", rowById, activeDocId: "active" })).toBe("d3");
expect(inferPasteTargetDocId({ focusedRowId: "asset:x", rowById, activeDocId: "active" })).toBe("d1");
});
it("无 focused 时回退 activeDocId", () => {
const rowById = new Map<string, any>();
expect(inferPasteTargetDocId({ focusedRowId: null, rowById, activeDocId: "active" })).toBe("active");
expect(inferPasteTargetDocId({ focusedRowId: null, rowById, activeDocId: null })).toBeNull();
});
});
describe("isTextInputTarget", () => {
it("input/textarea/contenteditable 不拦截快捷键", () => {
const input = document.createElement("input");
const textarea = document.createElement("textarea");
const div = document.createElement("div");
div.setAttribute("contenteditable", "true");
expect(isTextInputTarget(input)).toBe(true);
expect(isTextInputTarget(textarea)).toBe(true);
expect(isTextInputTarget(div)).toBe(true);
expect(isTextInputTarget(document.createElement("button"))).toBe(false);
});
});