aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/dashboard/bookmarks/components/TextCard.tsx
blob: 7ee1a90bdd2a620c10aab2e5fa955059c2a022f3 (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
51
52
53
54
55
56
57
58
59
60
61
62
"use client";

import { ZBookmark } from "@/lib/types/api/bookmarks";
import BookmarkOptions from "./BookmarkOptions";
import { api } from "@/lib/trpc";
import { Star } from "lucide-react";
import { cn } from "@/lib/utils";
import TagList from "./TagList";

export default function TextCard({
  bookmark: initialData,
  className,
}: {
  bookmark: ZBookmark;
  className: string;
}) {
  const { data: bookmark } = api.bookmarks.getBookmark.useQuery(
    {
      bookmarkId: initialData.id,
    },
    {
      initialData,
    },
  );
  const bookmarkedText = bookmark.content;
  if (bookmarkedText.type != "text") {
    throw new Error("Unexpected bookmark type");
  }

  const numWords = bookmarkedText.text.split(" ").length;

  return (
    <div
      className={cn(
        className,
        cn(
          "flex flex-col gap-y-1 overflow-hidden rounded-lg p-2 shadow-md",
          numWords > 12 ? "row-span-2 h-96" : "row-span-1 h-40",
        ),
      )}
    >
      <p className="grow overflow-hidden text-ellipsis">
        {bookmarkedText.text}
      </p>
      <div className="flex flex-none flex-wrap gap-1 overflow-hidden">
        <TagList bookmark={bookmark} />
      </div>
      <div className="flex w-full justify-between">
        <div>
          {bookmark.favourited && (
            <Star
              className="my-1 size-8 rounded p-1"
              color="#ebb434"
              fill="#ebb434"
            />
          )}
        </div>
        <BookmarkOptions bookmark={bookmark} />
      </div>
    </div>
  );
}