import { Fragment } from "react";
import {
Collapsible,
CollapsibleContent,
CollapsibleTrigger,
} from "@/components/ui/collapsible";
import { useTranslation } from "@/lib/i18n/client";
import { Separator } from "@radix-ui/react-dropdown-menu";
import { useQuery } from "@tanstack/react-query";
import { ChevronsDownUp } from "lucide-react";
import { useTRPC } from "@karakeep/shared-react/trpc";
import HighlightCard from "../highlights/HighlightCard";
export default function HighlightsBox({
bookmarkId,
readOnly,
}: {
bookmarkId: string;
readOnly: boolean;
}) {
const api = useTRPC();
const { t } = useTranslation();
const { data: highlights, isPending: isLoading } = useQuery(
api.highlights.getForBookmark.queryOptions({ bookmarkId }),
);
if (isLoading || !highlights || highlights?.highlights.length === 0) {
return null;
}
return (
<Collapsible defaultOpen={true}>
<CollapsibleTrigger className="flex w-full items-center justify-between gap-2 text-sm text-gray-400">
{t("common.highlights")}
<ChevronsDownUp className="size-4" />
</CollapsibleTrigger>
<CollapsibleContent className="group flex flex-col py-3 text-sm">
{highlights.highlights.map((highlight) => (
<Fragment key={highlight.id}>
<HighlightCard
highlight={highlight}
clickable
readOnly={readOnly}
/>
<Separator className="m-2 h-0.5 bg-gray-200 last:hidden" />
</Fragment>
))}
</CollapsibleContent>
</Collapsible>
);
}