|
| 1 | +import useWorkspace from "@/lib/swr/use-workspace"; |
1 | 2 | import { LinkProps } from "@/lib/types";
|
2 | 3 | import { CopyButton, LinkLogo } from "@dub/ui";
|
3 |
| -import { ArrowTurnRight2 } from "@dub/ui/icons"; |
| 4 | +import { ArrowTurnRight2, ArrowUpRight } from "@dub/ui/icons"; |
4 | 5 | import { getApexDomain, getPrettyUrl, linkConstructor } from "@dub/utils";
|
| 6 | +import Link from "next/link"; |
5 | 7 | import { CommentsBadge } from "../links/comments-badge";
|
6 | 8 |
|
7 | 9 | export default function LinkPreviewTooltip({ data }: { data: LinkProps }) {
|
| 10 | + const { slug } = useWorkspace(); |
8 | 11 | const { domain, key, url, comments } = data;
|
9 | 12 |
|
| 13 | + const As = slug ? Link : "div"; |
| 14 | + |
10 | 15 | return (
|
11 |
| - <div className="relative flex w-[28rem] items-center gap-x-2 px-4 py-2"> |
12 |
| - <div className="relative flex-none rounded-full border border-neutral-200 bg-gradient-to-t from-neutral-100 pr-0.5 sm:p-2"> |
13 |
| - <LinkLogo |
14 |
| - apexDomain={getApexDomain(url)} |
15 |
| - className="h-4 w-4 shrink-0 transition-[width,height] sm:h-6 sm:w-6 group-data-[variant=loose]/card-list:sm:h-5 group-data-[variant=loose]/card-list:sm:w-5" |
16 |
| - /> |
17 |
| - </div> |
18 |
| - <div> |
19 |
| - <div className="min-w-0 shrink grow-0 text-neutral-950"> |
20 |
| - <div className="flex items-center gap-2"> |
21 |
| - <a |
22 |
| - href={linkConstructor({ domain, key })} |
23 |
| - target="_blank" |
24 |
| - rel="noopener noreferrer" |
25 |
| - title={linkConstructor({ domain, key, pretty: true })} |
26 |
| - className="truncate text-sm font-semibold leading-6 text-neutral-800 transition-colors hover:text-black" |
27 |
| - > |
28 |
| - {linkConstructor({ domain, key, pretty: true })} |
29 |
| - </a> |
30 |
| - <CopyButton |
31 |
| - value={linkConstructor({ |
32 |
| - domain, |
33 |
| - key, |
34 |
| - pretty: false, |
35 |
| - })} |
36 |
| - variant="neutral" |
37 |
| - className="p-1.5" |
38 |
| - /> |
39 |
| - {comments && <CommentsBadge comments={comments} />} |
40 |
| - </div> |
| 16 | + <As |
| 17 | + href={slug ? `/${slug}/links/${domain}/${key}` : "#"} |
| 18 | + {...(slug && { |
| 19 | + target: "_blank", |
| 20 | + onClick: (e) => e.stopPropagation(), |
| 21 | + })} |
| 22 | + className="group relative flex w-[28rem] items-center justify-between px-4 py-2" |
| 23 | + > |
| 24 | + <div className="flex items-center gap-x-2"> |
| 25 | + <div className="relative flex-none rounded-full border border-neutral-200 bg-gradient-to-t from-neutral-100 pr-0.5 sm:p-2"> |
| 26 | + <LinkLogo |
| 27 | + apexDomain={getApexDomain(url)} |
| 28 | + className="h-4 w-4 shrink-0 transition-[width,height] sm:h-6 sm:w-6 group-data-[variant=loose]/card-list:sm:h-5 group-data-[variant=loose]/card-list:sm:w-5" |
| 29 | + /> |
41 | 30 | </div>
|
42 |
| - <div className="flex min-w-0 items-center gap-1 text-sm"> |
43 |
| - <ArrowTurnRight2 className="h-3 w-3 shrink-0 text-neutral-400" /> |
44 |
| - {url ? ( |
45 |
| - <a |
46 |
| - href={url} |
47 |
| - target="_blank" |
48 |
| - rel="noopener noreferrer" |
49 |
| - title={url} |
50 |
| - className="max-w-[20rem] truncate text-neutral-500 transition-colors hover:text-neutral-700 hover:underline hover:underline-offset-2" |
51 |
| - > |
52 |
| - {getPrettyUrl(url)} |
53 |
| - </a> |
54 |
| - ) : ( |
55 |
| - <span className="truncate text-neutral-400">No URL configured</span> |
56 |
| - )} |
| 31 | + <div> |
| 32 | + <div className="min-w-0 shrink grow-0 text-neutral-950"> |
| 33 | + <div className="flex items-center gap-2"> |
| 34 | + <a |
| 35 | + href={linkConstructor({ domain, key })} |
| 36 | + target="_blank" |
| 37 | + rel="noopener noreferrer" |
| 38 | + title={linkConstructor({ domain, key, pretty: true })} |
| 39 | + className="truncate text-sm font-semibold leading-6 text-neutral-800 transition-colors hover:text-black" |
| 40 | + > |
| 41 | + {linkConstructor({ domain, key, pretty: true })} |
| 42 | + </a> |
| 43 | + <CopyButton |
| 44 | + value={linkConstructor({ |
| 45 | + domain, |
| 46 | + key, |
| 47 | + pretty: false, |
| 48 | + })} |
| 49 | + variant="neutral" |
| 50 | + className="p-1.5" |
| 51 | + /> |
| 52 | + {comments && <CommentsBadge comments={comments} />} |
| 53 | + </div> |
| 54 | + </div> |
| 55 | + <div className="flex min-w-0 items-center gap-1 text-sm"> |
| 56 | + <ArrowTurnRight2 className="h-3 w-3 shrink-0 text-neutral-400" /> |
| 57 | + {url ? ( |
| 58 | + <a |
| 59 | + href={url} |
| 60 | + target="_blank" |
| 61 | + rel="noopener noreferrer" |
| 62 | + title={url} |
| 63 | + className="max-w-[20rem] truncate text-neutral-500 transition-colors hover:text-neutral-700 hover:underline hover:underline-offset-2" |
| 64 | + > |
| 65 | + {getPrettyUrl(url)} |
| 66 | + </a> |
| 67 | + ) : ( |
| 68 | + <span className="truncate text-neutral-400"> |
| 69 | + No URL configured |
| 70 | + </span> |
| 71 | + )} |
| 72 | + </div> |
57 | 73 | </div>
|
58 | 74 | </div>
|
59 |
| - </div> |
| 75 | + <div className="flex size-8 items-center justify-center rounded-full bg-neutral-50 transition-colors group-hover:bg-neutral-100"> |
| 76 | + <ArrowUpRight className="size-3.5 text-neutral-400 transition-all group-hover:scale-110 group-hover:text-neutral-500" /> |
| 77 | + </div> |
| 78 | + </As> |
60 | 79 | );
|
61 | 80 | }
|
0 commit comments