blob: 460dbe98d023f43e64a498400aaa0bc60fedd94e (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
"use client";
import Image from "next/image";
import { isBookmarkStillTagging } from "@/lib/bookmarkUtils";
import { api } from "@/lib/trpc";
import { cn } from "@/lib/utils";
import type { ZBookmark } from "@hoarder/trpc/types/bookmarks";
import BookmarkActionBar from "./BookmarkActionBar";
import TagList from "./TagList";
export default function AssetCard({
bookmark: initialData,
className,
}: {
bookmark: ZBookmark;
className?: string;
}) {
const { data: bookmark } = api.bookmarks.getBookmark.useQuery(
{
bookmarkId: initialData.id,
},
{
initialData,
refetchInterval: (query) => {
const data = query.state.data;
if (!data) {
return false;
}
if (isBookmarkStillTagging(data)) {
return 1000;
}
return false;
},
},
);
const bookmarkedAsset = bookmark.content;
if (bookmarkedAsset.type != "asset") {
throw new Error("Unexpected bookmark type");
}
return (
<div
className={cn(
className,
cn(
"flex h-min max-h-96 flex-col gap-y-1 overflow-hidden rounded-lg shadow-md",
),
)}
>
{bookmarkedAsset.assetType == "image" && (
<div className="relative h-56 max-h-56">
<Image
alt="asset"
src={`/api/assets/${bookmarkedAsset.assetId}`}
fill={true}
className="rounded-t-lg object-cover"
/>
</div>
)}
<div className="flex flex-col gap-y-1 overflow-hidden p-2">
<div className="flex h-full flex-wrap gap-1 overflow-hidden">
<TagList
bookmark={bookmark}
loading={isBookmarkStillTagging(bookmark)}
/>
</div>
<div className="flex w-full justify-between">
<div />
<BookmarkActionBar bookmark={bookmark} />
</div>
</div>
</div>
);
}
|