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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
"use client";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";
import {
ImageCard,
ImageCardBody,
ImageCardFooter,
ImageCardTitle,
} from "@/components/ui/imageCard";
import { useToast } from "@/components/ui/use-toast";
import APIClient from "@/lib/api";
import { ZBookmarkedLink } from "@/lib/types/api/links";
import { MoreHorizontal, Trash2 } from "lucide-react";
import Link from "next/link";
import { useRouter } from "next/navigation";
export function LinkOptions({ linkId }: { linkId: string }) {
const { toast } = useToast();
const router = useRouter();
const unbookmarkLink = async () => {
let [_, error] = await APIClient.unbookmarkLink(linkId);
if (error) {
toast({
variant: "destructive",
title: "Something went wrong",
description: "There was a problem with your request.",
});
} else {
toast({
description: "The link has been deleted!",
});
}
router.refresh();
};
return (
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="ghost">
<MoreHorizontal />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent className="w-fit">
<DropdownMenuItem className="text-destructive" onClick={unbookmarkLink}>
<Trash2 className="mr-2 h-4 w-4" />
<span>Delete</span>
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
);
}
export default function LinkCard({ link }: { link: ZBookmarkedLink }) {
const parsedUrl = new URL(link.url);
return (
<ImageCard
className={
"bg-gray-50 duration-300 ease-in border border-grey-100 hover:transition-all hover:border-blue-300"
}
image={link.details?.imageUrl ?? undefined}
>
<ImageCardTitle>
<Link className="line-clamp-3" href={link.url}>
{link.details?.title ?? parsedUrl.host}
</Link>
</ImageCardTitle>
<ImageCardBody className="py-2 overflow-clip">
{link.tags.map((t) => (
<Badge variant="default" className="bg-gray-300 text-gray-500" key={t.id}>
#{t.name}
</Badge>
))}
</ImageCardBody>
<ImageCardFooter>
<div className="flex justify-between text-gray-500">
<div className="my-auto">
<Link className="line-clamp-1 hover:text-black" href={link.url}>
{parsedUrl.host}
</Link>
</div>
<LinkOptions linkId={link.id} />
</div>
</ImageCardFooter>
</ImageCard>
);
}
|