2023-06-05 05:16:04 -05:00
|
|
|
import {
|
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-15 22:05:19 -06:00
|
|
|
import LinkIcon from "@/components/LinkViews/LinkComponents/LinkIcon";
|
2023-12-21 09:55:07 -06:00
|
|
|
import Link from "next/link";
|
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-21 09:55:07 -06:00
|
|
|
<div className="border border-solid border-neutral-content bg-base-200 shadow-md hover:shadow-none duration-100 rounded-2xl relative p-3">
|
2023-12-15 22:08:28 -06:00
|
|
|
<div
|
|
|
|
onClick={() => link.url && window.open(link.url || "", "_blank")}
|
2023-12-21 09:55:07 -06:00
|
|
|
className="cursor-pointer"
|
2023-12-15 22:08:28 -06:00
|
|
|
>
|
2023-12-21 09:55:07 -06:00
|
|
|
<LinkIcon link={link} width="w-12 mb-3" />
|
|
|
|
<p className="truncate w-full">
|
|
|
|
{unescapeString(link.name || link.description) || link.url}
|
|
|
|
</p>
|
2023-12-15 21:25:39 -06:00
|
|
|
|
2023-12-21 09:55:07 -06:00
|
|
|
<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 ? (
|
|
|
|
<div
|
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
window.open(link.url || "", "_blank");
|
|
|
|
}}
|
|
|
|
className="flex items-center hover:opacity-60 cursor-pointer duration-100"
|
|
|
|
>
|
|
|
|
<p className="truncate">{shortendURL}</p>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<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
|
|
|
}
|