47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
|
"use client"
|
||
|
|
||
|
import Image from "next/image"
|
||
|
import { useState } from "react"
|
||
|
import { getIconForFolder, getIconForOpenFolder } from "vscode-icons-js"
|
||
|
import { TFolder } from "./types"
|
||
|
import SidebarFile from "./file"
|
||
|
|
||
|
export default function SidebarFolder({ data }: { data: TFolder }) {
|
||
|
const [isOpen, setIsOpen] = useState(false)
|
||
|
const folder = isOpen
|
||
|
? getIconForOpenFolder(data.name)
|
||
|
: getIconForFolder(data.name)
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<div
|
||
|
onClick={() => setIsOpen((prev) => !prev)}
|
||
|
className="w-full flex items-center h-7 px-1 transition-colors hover:bg-secondary rounded-sm cursor-pointer"
|
||
|
>
|
||
|
<Image
|
||
|
src={`/icons/${folder}`}
|
||
|
alt="Folder icon"
|
||
|
width={18}
|
||
|
height={18}
|
||
|
className="mr-2"
|
||
|
/>
|
||
|
{data.name}
|
||
|
</div>
|
||
|
{isOpen ? (
|
||
|
<div className="flex w-full items-stretch">
|
||
|
<div className="w-[1px] bg-border mx-2 h-full"></div>
|
||
|
<div className="flex flex-col grow">
|
||
|
{data.children.map((child) =>
|
||
|
child.type === "file" ? (
|
||
|
<SidebarFile key={child.id} data={child} />
|
||
|
) : (
|
||
|
<SidebarFolder key={child.id} data={child} />
|
||
|
)
|
||
|
)}
|
||
|
</div>
|
||
|
</div>
|
||
|
) : null}
|
||
|
</>
|
||
|
)
|
||
|
}
|