chatbot-template/components/sidebar-item.tsx

103 lines
2.8 KiB
TypeScript
Raw Normal View History

'use client'
import * as React from 'react'
import { useTransition } from 'react'
import Link from 'next/link'
import { usePathname, useRouter } from 'next/navigation'
import { cn } from '@/lib/utils'
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle
} from '@/components/ui/alert-dialog'
import { Button, buttonVariants } from '@/components/ui/button'
import { removeChat } from '@/app/actions'
2023-06-13 16:02:07 +04:00
import { IconMessage, IconSpinner, IconTrash } from '@/components/ui/icons'
export function SidebarItem({
title,
href,
id,
userId
}: {
title: string
href: string
id: string
userId: string
}) {
const [open, setIsOpen] = React.useState(false)
const pathname = usePathname()
const router = useRouter()
const isActive = pathname === href
const [isPending, startTransition] = useTransition()
if (!id) return null
return (
<>
<Link
href={href}
className={cn(
buttonVariants({ variant: 'ghost' }),
'group w-full px-2',
isActive && 'bg-accent'
)}
>
2023-06-13 16:02:07 +04:00
<IconMessage className="mr-2" />
<div
className="relative max-h-5 flex-1 select-none overflow-hidden text-ellipsis break-all"
title={title}
>
<span className="whitespace-nowrap">{title}</span>
</div>
{isActive && (
<Button
variant="ghost"
size="icon"
className="h-7 w-7"
disabled={isPending}
onClick={() => setIsOpen(true)}
>
2023-06-13 16:02:07 +04:00
<IconTrash />
<span className="sr-only">Delete</span>
</Button>
)}
</Link>
<AlertDialog open={open} onOpenChange={setIsOpen}>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle>
<AlertDialogDescription>
This will permanently delete your chat message and remove your
data from our servers.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel disabled={isPending}>Cancel</AlertDialogCancel>
<AlertDialogAction
disabled={isPending}
onClick={event => {
event.preventDefault()
startTransition(async () => {
await removeChat({ id, userId, path: href })
setIsOpen(false)
router.push('/')
})
}}
>
2023-06-13 16:02:07 +04:00
{isPending && <IconSpinner className="mr-2 animate-spin" />}
Delete
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
</>
)
}