62 lines
2.2 KiB
TypeScript
62 lines
2.2 KiB
TypeScript
"use client"
|
|
|
|
import { FilePlus, FolderPlus, Loader2, Search } from "lucide-react"
|
|
import SidebarFile from "./file"
|
|
import SidebarFolder from "./folder"
|
|
import { TFile, TFolder } from "./types"
|
|
|
|
// Note: add renaming validation:
|
|
// In general: must not contain / or \ or whitespace, not empty, no duplicates
|
|
// Files: must contain dot
|
|
// Folders: must not contain dot
|
|
|
|
export default function Sidebar({
|
|
files,
|
|
selectFile,
|
|
}: {
|
|
files: (TFile | TFolder)[]
|
|
selectFile: (tab: TFile) => void
|
|
}) {
|
|
return (
|
|
<div className="h-full w-56 select-none flex flex-col text-sm items-start p-2">
|
|
<div className="flex w-full items-center justify-between h-8 mb-1 ">
|
|
<div className="text-muted-foreground">Explorer</div>
|
|
<div className="flex space-x-1">
|
|
<div className="h-6 w-6 text-muted-foreground ml-0.5 flex items-center justify-center translate-x-1 transition-colors bg-transparent hover:bg-muted-foreground/25 cursor-pointer rounded-sm">
|
|
<FilePlus className="w-4 h-4" />
|
|
</div>
|
|
<div className="h-6 w-6 text-muted-foreground ml-0.5 flex items-center justify-center translate-x-1 transition-colors bg-transparent hover:bg-muted-foreground/25 cursor-pointer rounded-sm">
|
|
<FolderPlus className="w-4 h-4" />
|
|
</div>
|
|
<div className="h-6 w-6 text-muted-foreground ml-0.5 flex items-center justify-center translate-x-1 transition-colors bg-transparent hover:bg-muted-foreground/25 cursor-pointer rounded-sm">
|
|
<Search className="w-4 h-4" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="w-full mt-1 flex flex-col">
|
|
{files.length === 0 ? (
|
|
<div className="w-full flex justify-center">
|
|
<Loader2 className="w-4 h-4 animate-spin" />
|
|
</div>
|
|
) : (
|
|
files.map((child) =>
|
|
child.type === "file" ? (
|
|
<SidebarFile
|
|
key={child.id}
|
|
data={child}
|
|
selectFile={selectFile}
|
|
/>
|
|
) : (
|
|
<SidebarFolder
|
|
key={child.id}
|
|
data={child}
|
|
selectFile={selectFile}
|
|
/>
|
|
)
|
|
)
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|