feat: impl file rename

This commit is contained in:
2025-09-18 00:14:16 +00:00
parent 2f181cef45
commit 9fbd5e678a
15 changed files with 377 additions and 393 deletions

View File

@@ -14,3 +14,9 @@ export const optimisticDeletedItemsAtom = atom(
export const selectedFileRowsAtom = atom<RowSelectionState>({})
export const newItemKindAtom = atom<DirectoryItemKind | null>(null)
export const itemBeingRenamedAtom = atom<{
kind: DirectoryItemKind
originalItem: DirectoryItem
name: string
} | null>(null)