2023-12-15 21:25:39 -06:00
|
|
|
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";
|
2023-12-23 18:00:53 -06:00
|
|
|
import Link from "next/link";
|
2023-12-15 21:25:39 -06:00
|
|
|
|
|
|
|
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<CollectionIncludingMembersAndLinkCount>(
|
|
|
|
collections.find(
|
2023-12-16 14:06:26 -06:00
|
|
|
(e) => e.id === link.collection.id
|
|
|
|
) as CollectionIncludingMembersAndLinkCount
|
2023-12-15 21:25:39 -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 21:25:39 -06:00
|
|
|
);
|
|
|
|
}, [collections, links]);
|
|
|
|
|
2023-12-23 18:00:53 -06:00
|
|
|
const [showInfo, setShowInfo] = useState(false);
|
|
|
|
|
2023-12-15 21:25:39 -06:00
|
|
|
return (
|
2023-12-16 14:06:26 -06:00
|
|
|
<>
|
2023-12-24 06:30:45 -06:00
|
|
|
<div
|
|
|
|
className={`border-neutral-content relative ${
|
|
|
|
!showInfo ? "hover:bg-base-300" : ""
|
|
|
|
} duration-200 rounded-lg`}
|
|
|
|
>
|
2023-12-31 09:05:30 -06:00
|
|
|
<Link
|
|
|
|
href={link.url || ""}
|
|
|
|
target="_blank"
|
2023-12-24 05:46:08 -06:00
|
|
|
className="flex items-center cursor-pointer py-3 px-3"
|
2023-12-16 14:06:26 -06:00
|
|
|
>
|
|
|
|
<div className="shrink-0">
|
2023-12-17 00:25:46 -06:00
|
|
|
<LinkIcon link={link} width="sm:w-12 w-8" />
|
2023-12-16 14:06:26 -06:00
|
|
|
</div>
|
2023-12-15 21:25:39 -06:00
|
|
|
|
2023-12-16 14:06:26 -06:00
|
|
|
<div className="w-[calc(100%-56px)] ml-2">
|
2023-12-23 18:00:53 -06:00
|
|
|
<p className="line-clamp-1 mr-8 text-primary">
|
2023-12-16 14:06:26 -06:00
|
|
|
{unescapeString(link.name || link.description) || link.url}
|
|
|
|
</p>
|
2023-12-15 21:25:39 -06:00
|
|
|
|
2023-12-16 14:06:26 -06:00
|
|
|
<div className="mt-1 flex flex-col sm:flex-row sm:items-center gap-2 text-xs text-neutral">
|
|
|
|
<div className="flex items-center gap-2">
|
2023-12-24 06:30:45 -06:00
|
|
|
{collection ? (
|
|
|
|
<>
|
|
|
|
<LinkCollection link={link} collection={collection} />
|
|
|
|
·
|
|
|
|
</>
|
|
|
|
) : undefined}
|
2023-12-16 14:06:26 -06:00
|
|
|
{link.url ? (
|
2023-12-20 09:20:06 -06:00
|
|
|
<div className="flex items-center gap-1 max-w-full w-fit text-neutral">
|
|
|
|
<i className="bi-link-45deg text-base" />
|
|
|
|
<p className="truncate w-full">{shortendURL}</p>
|
|
|
|
</div>
|
2023-12-16 14:06:26 -06:00
|
|
|
) : (
|
|
|
|
<div className="badge badge-primary badge-sm my-1">
|
|
|
|
{link.type}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<span className="hidden sm:block">·</span>
|
|
|
|
<LinkDate link={link} />
|
2023-12-15 21:25:39 -06:00
|
|
|
</div>
|
2023-12-15 22:16:56 -06:00
|
|
|
</div>
|
2023-12-31 09:05:30 -06:00
|
|
|
</Link>
|
2023-12-16 14:06:26 -06:00
|
|
|
|
2023-12-17 00:25:46 -06:00
|
|
|
<LinkActions
|
|
|
|
link={link}
|
|
|
|
collection={collection}
|
2023-12-24 05:46:08 -06:00
|
|
|
position="top-3 right-3"
|
2023-12-27 14:00:48 -06:00
|
|
|
// toggleShowInfo={() => setShowInfo(!showInfo)}
|
|
|
|
// linkInfo={showInfo}
|
2023-12-17 00:25:46 -06:00
|
|
|
/>
|
2023-12-23 18:00:53 -06:00
|
|
|
{showInfo ? (
|
2023-12-24 06:30:45 -06:00
|
|
|
<div>
|
|
|
|
<div className="pb-3 mt-1 px-3">
|
|
|
|
<p className="text-neutral text-lg font-semibold">Description</p>
|
|
|
|
|
|
|
|
<hr className="divider my-2 last:hidden border-t border-neutral-content h-[1px]" />
|
|
|
|
<p>
|
|
|
|
{link.description ? (
|
|
|
|
unescapeString(link.description)
|
|
|
|
) : (
|
|
|
|
<span className="text-neutral text-sm">
|
|
|
|
No description provided.
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
</p>
|
2023-12-23 18:00:53 -06:00
|
|
|
{link.tags[0] ? (
|
2023-12-24 06:30:45 -06:00
|
|
|
<>
|
|
|
|
<p className="text-neutral text-lg mt-3 font-semibold">
|
|
|
|
Tags
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr className="divider my-2 last:hidden border-t border-neutral-content h-[1px]" />
|
|
|
|
|
|
|
|
<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-23 18:00:53 -06:00
|
|
|
</div>
|
2023-12-24 06:30:45 -06:00
|
|
|
</>
|
2023-12-23 18:00:53 -06:00
|
|
|
) : undefined}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
) : undefined}
|
2023-12-15 21:25:39 -06:00
|
|
|
</div>
|
|
|
|
|
2023-12-16 14:06:26 -06:00
|
|
|
<div className="divider my-0 last:hidden h-[1px]"></div>
|
|
|
|
</>
|
2023-12-15 21:25:39 -06:00
|
|
|
);
|
|
|
|
}
|