127 lines
3.5 KiB
TypeScript
Raw Normal View History

2024-04-11 04:24:36 -04:00
"use client"
import Image from "next/image"
import { getIconForFile } from "vscode-icons-js"
import { TFile, TTab } from "@/lib/types"
2024-04-27 11:08:19 -04:00
import { useEffect, useRef, useState } from "react"
2024-04-30 01:56:43 -04:00
import {
ContextMenu,
ContextMenuContent,
ContextMenuItem,
ContextMenuTrigger,
} from "@/components/ui/context-menu"
import { Loader2, Pencil, Trash2 } from "lucide-react"
2024-04-26 00:10:53 -04:00
export default function SidebarFile({
data,
selectFile,
2024-04-27 14:23:09 -04:00
handleRename,
2024-04-30 01:56:43 -04:00
handleDeleteFile,
2024-04-26 00:10:53 -04:00
}: {
data: TFile
2024-04-27 11:08:19 -04:00
selectFile: (file: TTab) => void
2024-04-27 14:23:09 -04:00
handleRename: (
id: string,
newName: string,
oldName: string,
type: "file" | "folder"
) => boolean
2024-04-30 01:56:43 -04:00
handleDeleteFile: (file: TFile) => void
2024-04-26 00:10:53 -04:00
}) {
const [imgSrc, setImgSrc] = useState(`/icons/${getIconForFile(data.name)}`)
2024-04-27 11:08:19 -04:00
const [editing, setEditing] = useState(false)
const inputRef = useRef<HTMLInputElement>(null)
2024-04-30 01:56:43 -04:00
const [pendingDelete, setPendingDelete] = useState(false)
2024-04-27 11:08:19 -04:00
useEffect(() => {
if (editing) {
2024-04-30 01:56:43 -04:00
setTimeout(() => inputRef.current?.focus(), 0)
2024-04-27 11:08:19 -04:00
}
2024-04-30 01:56:43 -04:00
if (!inputRef.current) {
console.log("no input ref")
}
}, [editing, inputRef.current])
2024-04-11 04:24:36 -04:00
2024-04-27 14:23:09 -04:00
const renameFile = () => {
const renamed = handleRename(
data.id,
inputRef.current?.value ?? data.name,
data.name,
"file"
)
if (!renamed && inputRef.current) {
inputRef.current.value = data.name
}
setEditing(false)
}
2024-04-11 04:24:36 -04:00
return (
2024-04-30 01:56:43 -04:00
<ContextMenu>
<ContextMenuTrigger
disabled={pendingDelete}
onClick={() => {
if (!editing && !pendingDelete) selectFile({ ...data, saved: true })
2024-04-27 11:08:19 -04:00
}}
2024-04-30 01:56:43 -04:00
// onDoubleClick={() => {
// setEditing(true)
// }}
className="data-[state=open]:bg-secondary/50 w-full flex items-center h-7 px-1 hover:bg-secondary rounded-sm cursor-pointer transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring"
2024-04-27 11:08:19 -04:00
>
2024-04-30 01:56:43 -04:00
<Image
src={imgSrc}
alt="File Icon"
width={18}
height={18}
className="mr-2"
onError={() => setImgSrc("/icons/default_file.svg")}
2024-04-27 11:08:19 -04:00
/>
2024-04-30 01:56:43 -04:00
{pendingDelete ? (
<>
<Loader2 className="text-muted-foreground w-4 h-4 animate-spin mr-2" />
<div className="text-muted-foreground">Deleting...</div>
</>
) : (
<form
onSubmit={(e) => {
e.preventDefault()
renameFile()
}}
>
<input
ref={inputRef}
className={`bg-transparent transition-all focus-visible:outline-none focus-visible:ring-offset-2 focus-visible:ring-offset-background focus-visible:ring-2 focus-visible:ring-ring rounded-sm w-full ${
editing ? "" : "pointer-events-none"
}`}
disabled={!editing}
defaultValue={data.name}
onBlur={() => renameFile()}
/>
</form>
)}
</ContextMenuTrigger>
<ContextMenuContent>
<ContextMenuItem
onClick={() => {
console.log("rename")
setEditing(true)
}}
>
<Pencil className="w-4 h-4 mr-2" />
Rename
</ContextMenuItem>
<ContextMenuItem
disabled={pendingDelete}
onClick={() => {
console.log("delete")
setPendingDelete(true)
handleDeleteFile(data)
}}
>
<Trash2 className="w-4 h-4 mr-2" />
Delete
</ContextMenuItem>
</ContextMenuContent>
</ContextMenu>
2024-04-11 04:24:36 -04:00
)
}