55 lines
1.1 KiB
TypeScript
55 lines
1.1 KiB
TypeScript
import type { Id } from "../_generated/dataModel"
|
|
import type { AuthenticatedMutationCtx } from "../functions"
|
|
import * as Err from "./error"
|
|
import type { DirectoryHandle, FileHandle } from "./filesystem"
|
|
|
|
export async function renameFile(
|
|
ctx: AuthenticatedMutationCtx,
|
|
{
|
|
directoryId,
|
|
itemId,
|
|
newName,
|
|
}: {
|
|
directoryId?: Id<"directories">
|
|
itemId: Id<"files">
|
|
newName: string
|
|
},
|
|
) {
|
|
const existing = await ctx.db
|
|
.query("files")
|
|
.withIndex("uniqueFileInDirectory", (q) =>
|
|
q
|
|
.eq("userId", ctx.user._id)
|
|
.eq("directoryId", directoryId)
|
|
.eq("name", newName)
|
|
.eq("deletedAt", undefined),
|
|
)
|
|
.first()
|
|
|
|
if (existing) {
|
|
throw Err.create(
|
|
Err.Code.FileExists,
|
|
`File with name ${newName} already exists in ${directoryId ? `directory ${directoryId}` : "root"}`,
|
|
)
|
|
}
|
|
|
|
await ctx.db.patch(itemId, { name: newName })
|
|
}
|
|
|
|
export async function move(
|
|
ctx: AuthenticatedMutationCtx,
|
|
{
|
|
targetDirectory: targetDirectoryHandle,
|
|
items,
|
|
}: {
|
|
targetDirectory: DirectoryHandle
|
|
items: FileHandle[]
|
|
},
|
|
) {
|
|
await Promise.all(
|
|
items.map((item) =>
|
|
ctx.db.patch(item.id, { directoryId: targetDirectoryHandle.id }),
|
|
),
|
|
)
|
|
}
|