2023-06-05 05:16:04 -05:00
|
|
|
import {
|
2023-12-23 11:11:47 -06:00
|
|
|
ArchivedFormat,
|
2023-12-15 22:08:28 -06:00
|
|
|
CollectionIncludingMembersAndLinkCount,
|
|
|
|
LinkIncludingShortenedCollectionAndTags,
|
2023-06-05 05:16:04 -05:00
|
|
|
} from "@/types/global";
|
2023-12-21 09:55:07 -06:00
|
|
|
import { useEffect, useState } from "react";
|
2023-03-23 10:25:17 -05:00
|
|
|
import useLinkStore from "@/store/links";
|
2023-06-05 05:16:04 -05:00
|
|
|
import useCollectionStore from "@/store/collections";
|
2023-10-17 15:02:07 -05:00
|
|
|
import unescapeString from "@/lib/client/unescapeString";
|
2023-12-15 21:25:39 -06:00
|
|
|
import LinkActions from "@/components/LinkViews/LinkComponents/LinkActions";
|
|
|
|
import LinkDate from "@/components/LinkViews/LinkComponents/LinkDate";
|
|
|
|
import LinkCollection from "@/components/LinkViews/LinkComponents/LinkCollection";
|
2023-12-23 11:11:47 -06:00
|
|
|
import Image from "next/image";
|
|
|
|
import { previewAvailable } from "@/lib/shared/getArchiveValidity";
|
2023-12-21 09:55:07 -06:00
|
|
|
import Link from "next/link";
|
2023-12-23 11:11:47 -06:00
|
|
|
import LinkIcon from "./LinkComponents/LinkIcon";
|
2023-03-05 15:03:20 -06:00
|
|
|
|
2023-05-27 11:53:02 -05:00
|
|
|
type Props = {
|
2023-12-15 22:08:28 -06:00
|
|
|
link: LinkIncludingShortenedCollectionAndTags;
|
|
|
|
count: number;
|
|
|
|
className?: string;
|
2023-05-27 11:53:02 -05:00
|
|
|
};
|
|
|
|
|
2023-12-21 09:55:07 -06:00
|
|
|
export default function LinkGrid({ link, count, className }: Props) {
|
|
|
|
const { collections } = useCollectionStore();
|
|
|
|
|
2023-12-15 22:08:28 -06:00
|
|
|
const { links } = useLinkStore();
|
2023-06-26 17:33:40 -05:00
|
|
|
|
2023-12-21 09:55:07 -06:00
|
|
|
let shortendURL;
|
|
|
|
|
|
|
|
try {
|
|
|
|
shortendURL = new URL(link.url || "").host.toLowerCase();
|
|
|
|
} catch (error) {
|
|
|
|
console.log(error);
|
|
|
|
}
|
2023-06-26 17:33:40 -05:00
|
|
|
|
2023-12-15 22:08:28 -06:00
|
|
|
const [collection, setCollection] =
|
|
|
|
useState<CollectionIncludingMembersAndLinkCount>(
|
|
|
|
collections.find(
|
2023-12-16 14:06:26 -06:00
|
|
|
(e) => e.id === link.collection.id
|
|
|
|
) as CollectionIncludingMembersAndLinkCount
|
2023-12-15 22:08:28 -06:00
|
|
|
);
|
2023-06-26 17:33:40 -05:00
|
|
|
|
2023-12-15 22:08:28 -06:00
|
|
|
useEffect(() => {
|
|
|
|
setCollection(
|
|
|
|
collections.find(
|
2023-12-16 14:06:26 -06:00
|
|
|
(e) => e.id === link.collection.id
|
|
|
|
) as CollectionIncludingMembersAndLinkCount
|
2023-12-15 22:08:28 -06:00
|
|
|
);
|
|
|
|
}, [collections, links]);
|
2023-06-26 17:33:40 -05:00
|
|
|
|
2023-12-15 22:08:28 -06:00
|
|
|
return (
|
2023-12-23 11:11:47 -06:00
|
|
|
<div className="border border-solid border-neutral-content bg-base-200 shadow-md hover:shadow-none duration-100 rounded-2xl relative">
|
|
|
|
<div className="relative rounded-t-2xl h-52">
|
|
|
|
{previewAvailable(link) ? (
|
|
|
|
<Image
|
|
|
|
src={`/api/v1/archives/${link.id}?format=${ArchivedFormat.jpeg}&preview=true`}
|
|
|
|
width={1280}
|
|
|
|
height={720}
|
|
|
|
alt=""
|
|
|
|
className="rounded-t-2xl select-none object-cover z-10 h-52 w-full shadow"
|
|
|
|
draggable="false"
|
|
|
|
onError={(e) => {
|
|
|
|
const target = e.target as HTMLElement;
|
|
|
|
target.style.display = "none";
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
) : undefined}
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
background: "radial-gradient(circle, #ffffff, transparent)",
|
|
|
|
}}
|
|
|
|
className="absolute top-0 left-0 right-0 rounded-t-2xl flex items-center justify-center h-52 shadow rounded-md"
|
|
|
|
>
|
|
|
|
<LinkIcon link={link} width="w-12" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="p-3">
|
2023-12-21 09:55:07 -06:00
|
|
|
<p className="truncate w-full">
|
|
|
|
{unescapeString(link.name || link.description) || link.url}
|
|
|
|
</p>
|
|
|
|
<div className="mt-1 flex flex-col text-xs text-neutral">
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<LinkCollection link={link} collection={collection} />
|
|
|
|
·
|
|
|
|
{link.url ? (
|
2023-12-23 11:11:47 -06:00
|
|
|
<Link
|
|
|
|
href={link.url}
|
|
|
|
target="_blank"
|
2023-12-21 09:55:07 -06:00
|
|
|
className="flex items-center hover:opacity-60 cursor-pointer duration-100"
|
|
|
|
>
|
|
|
|
<p className="truncate">{shortendURL}</p>
|
2023-12-23 11:11:47 -06:00
|
|
|
</Link>
|
2023-12-21 09:55:07 -06:00
|
|
|
) : (
|
|
|
|
<div className="badge badge-primary badge-sm my-1">
|
|
|
|
{link.type}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<LinkDate link={link} />
|
2023-12-15 22:08:28 -06:00
|
|
|
</div>
|
2023-12-21 09:55:07 -06:00
|
|
|
{/* <p className="truncate">{unescapeString(link.description)}</p>
|
|
|
|
{link.tags[0] ? (
|
|
|
|
<div className="flex gap-3 items-center flex-wrap mt-2 truncate relative">
|
|
|
|
<div className="flex gap-1 items-center flex-wrap">
|
|
|
|
{link.tags.map((e, i) => (
|
|
|
|
<Link
|
|
|
|
href={"/tags/" + e.id}
|
|
|
|
key={i}
|
|
|
|
onClick={(e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
}}
|
|
|
|
className="btn btn-xs btn-ghost truncate max-w-[19rem]"
|
|
|
|
>
|
|
|
|
#{e.name}
|
|
|
|
</Link>
|
|
|
|
))}
|
|
|
|
</div>
|
2023-12-15 22:08:28 -06:00
|
|
|
</div>
|
2023-12-21 09:55:07 -06:00
|
|
|
) : undefined} */}
|
2023-12-15 22:08:28 -06:00
|
|
|
</div>
|
2023-12-15 21:25:39 -06:00
|
|
|
|
2023-12-21 09:55:07 -06:00
|
|
|
<LinkActions link={link} collection={collection} />
|
2023-12-15 22:08:28 -06:00
|
|
|
</div>
|
|
|
|
);
|
2023-03-05 15:03:20 -06:00
|
|
|
}
|