blob: 41ab7d740acb91a16a6a3b0d33fc43ba2b3b1acb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
import { Fragment } from "react";
import {
Collapsible,
CollapsibleContent,
CollapsibleTrigger,
} from "@/components/ui/collapsible";
import { useTranslation } from "@/lib/i18n/client";
import { api } from "@/lib/trpc";
import { Separator } from "@radix-ui/react-dropdown-menu";
import { ChevronsDownUp } from "lucide-react";
import HighlightCard from "../highlights/HighlightCard";
export default function HighlightsBox({
bookmarkId,
readOnly,
}: {
bookmarkId: string;
readOnly: boolean;
}) {
const { t } = useTranslation();
const { data: highlights, isPending: isLoading } =
api.highlights.getForBookmark.useQuery({ 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>
);
}
|