import { CollectionIncludingMembersAndLinkCount, LinkIncludingShortenedCollectionAndTags, } from "@/types/global"; import { useEffect, useState } from "react"; import useLinkStore from "@/store/links"; import useCollectionStore from "@/store/collections"; import unescapeString from "@/lib/client/unescapeString"; import LinkActions from "@/components/LinkViews/LinkComponents/LinkActions"; import LinkDate from "@/components/LinkViews/LinkComponents/LinkDate"; import LinkCollection from "@/components/LinkViews/LinkComponents/LinkCollection"; import LinkIcon from "@/components/LinkViews/LinkComponents/LinkIcon"; import Link from "next/link"; type Props = { link: LinkIncludingShortenedCollectionAndTags; count: number; className?: string; }; export default function LinkCardCompact({ link, count, className }: Props) { const { collections } = useCollectionStore(); const { links } = useLinkStore(); let shortendURL; try { shortendURL = new URL(link.url || "").host.toLowerCase(); } catch (error) { console.log(error); } const [collection, setCollection] = useState( collections.find( (e) => e.id === link.collection.id ) as CollectionIncludingMembersAndLinkCount ); useEffect(() => { setCollection( collections.find( (e) => e.id === link.collection.id ) as CollectionIncludingMembersAndLinkCount ); }, [collections, links]); const [showInfo, setShowInfo] = useState(false); return ( <>
link.url && window.open(link.url || "", "_blank")} className="flex items-center cursor-pointer py-3 px-3" >

{unescapeString(link.name || link.description) || link.url}

{collection ? ( <> · ) : undefined} {link.url ? (

{shortendURL}

) : (
{link.type}
)}
·
setShowInfo(!showInfo)} // linkInfo={showInfo} /> {showInfo ? (

Description


{link.description ? ( unescapeString(link.description) ) : ( No description provided. )}

{link.tags[0] ? ( <>

Tags


{link.tags.map((e, i) => ( { e.stopPropagation(); }} className="btn btn-xs btn-ghost truncate max-w-[19rem]" > #{e.name} ))}
) : undefined}
) : undefined}
); }