import { ArchivedFormat, CollectionIncludingMembersAndLinkCount, LinkIncludingShortenedCollectionAndTags, } from "@/types/global"; import { useEffect, useRef, 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 Image from "next/image"; import { previewAvailable } from "@/lib/shared/getArchiveValidity"; import Link from "next/link"; import LinkIcon from "./LinkComponents/LinkIcon"; import useOnScreen from "@/hooks/useOnScreen"; import { generateLinkHref } from "@/lib/client/generateLinkHref"; import useAccountStore from "@/store/account"; import usePermissions from "@/hooks/usePermissions"; type Props = { link: LinkIncludingShortenedCollectionAndTags; count: number; className?: string; flipDropdown?: boolean; showCheckbox?: boolean; editMode?: boolean; }; export default function LinkCard({ link, flipDropdown, showCheckbox = true, editMode }: Props) { const { collections } = useCollectionStore(); const { account } = useAccountStore(); const { links, getLink, setSelectedLinks, selectedLinks } = useLinkStore(); const handleCheckboxClick = ( link: LinkIncludingShortenedCollectionAndTags ) => { if (selectedLinks.includes(link)) { setSelectedLinks(selectedLinks.filter((e) => e !== link)); } else { setSelectedLinks([...selectedLinks, link]); } }; 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 ref = useRef(null); const isVisible = useOnScreen(ref); const permissions = usePermissions(collection?.id as number); useEffect(() => { let interval: any; if ( isVisible && !link.preview?.startsWith("archives") && link.preview !== "unavailable" ) { interval = setInterval(async () => { getLink(link.id as number); }, 5000); } return () => { if (interval) { clearInterval(interval); } }; }, [isVisible, link.preview]); const [showInfo, setShowInfo] = useState(false); return (
{showCheckbox && editMode && (permissions === true || permissions?.canCreate || permissions?.canDelete) && ( handleCheckboxClick(link)} /> )}
{previewAvailable(link) ? ( { const target = e.target as HTMLElement; target.style.display = "none"; }} /> ) : link.preview === "unavailable" ? (
) : (
)}

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

{shortendURL}


{collection ? ( ) : undefined}
{showInfo ? (
setShowInfo(!showInfo)} className=" float-right btn btn-sm outline-none btn-circle btn-ghost z-10" >

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} setShowInfo(!showInfo)} linkInfo={showInfo} flipDropdown={flipDropdown} />
); }