Translate the older FileNode rights, so Rename and Delete work again

Deleting a file did nothing on the live 0.15.5 server, with no error: the menu
items are gated on myRights.mayDelete and myRights.mayRename, and 0.16 was the
release that split rights up. Before it a node carried mayRead, mayWrite and
mayShare, with the one mayWrite covering everything the newer release names
separately — so both items sat permanently disabled.

Widen mayWrite into the four rights the newer shape names, alongside the
nodeType normalisation, and the UI can keep reading the 0.16 vocabulary.
This commit is contained in:
2026-08-24 09:56:53 -07:00
parent 49ea07eeaa
commit 5befef7ed7
4 changed files with 68 additions and 14 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
import { create } from "zustand";
import { CAP, JmapMethodError, client, setErrorMessage } from "@/jmap/client";
import { directoryCreate, fileCreate, fileNodeProps, withNodeType } from "@/lib/filenode";
import { directoryCreate, fileCreate, fileNodeProps, normalizeFileNodes } from "@/lib/filenode";
import type { FileNode, GetResponse, Id, QueryResponse, SetResponse } from "@/jmap/types";
import { useSession } from "./session";
@@ -41,7 +41,7 @@ async function loadAllNodes(accountId: Id, set: (fn: (s: FilesState) => Partial<
]);
const q = res.get("q")?.[0] as unknown as QueryResponse;
const g = res.get("g")?.[0] as unknown as GetResponse<FileNode>;
all.push(...withNodeType(g.list));
all.push(...normalizeFileNodes(g.list));
position += q.ids.length;
if (!q.ids.length || (q.total != null && position >= q.total)) break;
}
@@ -90,7 +90,7 @@ export const useFiles = create<FilesState>((set, get) => ({
const g = res.get("g")?.[0] as unknown as GetResponse<FileNode>;
set((s) => {
const nodes = { ...s.nodes };
for (const n of withNodeType(g.list)) nodes[n.id] = n;
for (const n of normalizeFileNodes(g.list)) nodes[n.id] = n;
return { nodes, children: { ...s.children, [parentId ?? "root"]: q.ids }, loading: false, error: null };
});
} catch (err) {