el.xwx.moe/components/LinkCard.tsx

219 lines
7.6 KiB
TypeScript
Raw Normal View History

2023-06-05 05:16:04 -05:00
import {
CollectionIncludingMembers,
LinkIncludingCollectionAndTags,
} from "@/types/global";
2023-03-10 13:25:33 -06:00
import {
faFolder,
faArrowUpRightFromSquare,
faEllipsis,
} from "@fortawesome/free-solid-svg-icons";
2023-03-10 23:10:10 -06:00
import { faFileImage, faFilePdf } from "@fortawesome/free-regular-svg-icons";
2023-03-10 13:25:33 -06:00
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
2023-06-05 05:16:04 -05:00
import { useEffect, useState } from "react";
2023-03-10 23:10:10 -06:00
import Image from "next/image";
2023-03-22 18:11:54 -05:00
import Dropdown from "./Dropdown";
2023-03-23 10:25:17 -05:00
import useLinkStore from "@/store/links";
2023-05-01 05:07:01 -05:00
import Link from "next/link";
2023-06-05 05:16:04 -05:00
import useCollectionStore from "@/store/collections";
2023-06-12 23:46:32 -05:00
import useModalStore from "@/store/modals";
2023-03-05 15:03:20 -06:00
2023-05-27 11:53:02 -05:00
type Props = {
2023-05-27 11:29:39 -05:00
link: LinkIncludingCollectionAndTags;
2023-03-05 15:03:20 -06:00
count: number;
2023-06-12 13:23:11 -05:00
className?: string;
2023-05-27 11:53:02 -05:00
};
2023-06-12 13:23:11 -05:00
export default function LinkCard({ link, count, className }: Props) {
2023-06-12 23:46:32 -05:00
const { setModal } = useModalStore();
2023-04-23 08:26:39 -05:00
const [expandDropdown, setExpandDropdown] = useState(false);
2023-03-10 13:25:33 -06:00
2023-06-05 05:16:04 -05:00
const { collections } = useCollectionStore();
const [collection, setCollection] = useState<CollectionIncludingMembers>(
collections.find(
(e) => e.id === link.collection.id
) as CollectionIncludingMembers
);
useEffect(() => {
setCollection(
collections.find(
(e) => e.id === link.collection.id
) as CollectionIncludingMembers
);
}, [collections]);
2023-03-23 10:25:17 -05:00
const { removeLink } = useLinkStore();
2023-03-28 21:45:25 -05:00
const url = new URL(link.url);
2023-05-27 11:29:39 -05:00
const formattedDate = new Date(link.createdAt as string).toLocaleString(
"en-US",
{
year: "numeric",
month: "short",
day: "numeric",
}
);
2023-03-10 13:25:33 -06:00
2023-03-05 15:03:20 -06:00
return (
2023-06-12 13:23:11 -05:00
<div
className={`bg-gradient-to-tr from-slate-200 from-10% to-gray-50 via-20% shadow-sm p-5 rounded-2xl relative group/item ${className}`}
>
<div className="flex items-start gap-5 sm:gap-10 h-full w-full">
<Image
src={`https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=${url.origin}&size=32`}
width={42}
height={42}
alt=""
className="select-none mt-3 z-10 rounded-full shadow border-[3px] border-white bg-white"
draggable="false"
onError={(e) => {
const target = e.target as HTMLElement;
target.style.opacity = "0";
}}
/>
<Image
src={`https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=${url.origin}&size=32`}
width={80}
height={80}
alt=""
className="blur-sm absolute left-2 opacity-40 select-none hidden sm:block"
draggable="false"
onError={(e) => {
const target = e.target as HTMLElement;
target.style.opacity = "0";
}}
/>
<div className="flex justify-between gap-5 w-full h-full z-0">
<div className="flex flex-col justify-between w-full">
<div className="flex items-baseline gap-1">
<p className="text-sm text-sky-400 font-bold">{count + 1}.</p>
<p className="text-lg text-sky-500 font-bold truncate max-w-[12rem]">
{link.name}
</p>
2023-03-10 13:25:33 -06:00
</div>
2023-06-12 13:23:11 -05:00
<p className="text-gray-500 text-sm font-medium line-clamp-3 w-4/5">
{link.title}
</p>
<div className="flex gap-3 items-center flex-wrap my-3">
<Link href={`/collections/${link.collection.id}`}>
<div className="flex items-center gap-1 cursor-pointer hover:opacity-60 duration-100">
<FontAwesomeIcon
icon={faFolder}
className="w-4 h-4 mt-1 drop-shadow"
style={{ color: collection?.color }}
/>
<p className="text-sky-900 truncate max-w-[10rem]">
{collection?.name}
</p>
</div>
</Link>
2023-03-22 18:11:54 -05:00
2023-06-12 13:23:11 -05:00
<div className="flex gap-1 items-center flex-wrap mt-1">
{link.tags.map((e, i) => (
<Link key={i} href={`/tags/${e.id}`}>
<p className="px-2 py-1 bg-sky-200 text-sky-700 text-xs rounded-3xl cursor-pointer hover:opacity-60 duration-100 truncate max-w-[10rem]">
{e.name}
</p>
</Link>
))}
</div>
</div>
<div className="flex gap-2 items-center flex-wrap">
<p className="text-gray-500">{formattedDate}</p>
2023-03-10 13:25:33 -06:00
<a
2023-06-12 13:23:11 -05:00
href={link.url}
2023-03-10 23:10:10 -06:00
target="_blank"
rel="noreferrer"
2023-06-12 13:23:11 -05:00
className="group/url"
2023-03-10 13:25:33 -06:00
>
2023-06-12 13:23:11 -05:00
<div className="text-sky-400 font-bold flex items-center gap-1">
<p className="truncate w-40">{url.host}</p>
<FontAwesomeIcon
icon={faArrowUpRightFromSquare}
className="w-3 opacity-0 group-hover/url:opacity-100 duration-75"
/>
</div>
2023-03-10 13:25:33 -06:00
</a>
</div>
</div>
2023-03-22 18:11:54 -05:00
2023-06-12 13:23:11 -05:00
<div className="flex flex-col justify-between items-end relative">
<div
onClick={() => setExpandDropdown(!expandDropdown)}
id={"expand-dropdown" + link.id}
className="text-gray-500 inline-flex rounded-md cursor-pointer hover:bg-slate-200 duration-100 p-1"
>
<FontAwesomeIcon
icon={faEllipsis}
title="More"
className="w-5 h-5"
id={"expand-dropdown" + link.id}
/>
</div>
<div className="relative">
<div className="flex flex-col items-end justify-center gap-1">
<a
2023-06-13 09:30:52 -05:00
href={`/api/archives/${link.collectionId}/${link.id}.png`}
2023-06-12 13:23:11 -05:00
target="_blank"
rel="noreferrer"
title="Screenshot"
>
<FontAwesomeIcon
icon={faFileImage}
className="w-5 h-5 text-sky-600 cursor-pointer hover:text-sky-500 duration-100"
/>
</a>
<a
2023-06-13 09:30:52 -05:00
href={`/api/archives/${link.collectionId}/${link.id}.pdf`}
2023-06-12 13:23:11 -05:00
target="_blank"
rel="noreferrer"
title="PDF"
>
<FontAwesomeIcon
icon={faFilePdf}
className="w-5 h-5 text-sky-600 cursor-pointer hover:text-sky-500 duration-100"
/>
</a>
</div>
</div>
{expandDropdown ? (
<Dropdown
items={[
{
name: "Edit",
onClick: () => {
2023-06-12 23:46:32 -05:00
setModal({
modal: "LINK",
state: true,
method: "UPDATE",
active: link,
});
2023-06-12 13:23:11 -05:00
setExpandDropdown(false);
},
2023-03-28 02:31:50 -05:00
},
2023-06-12 13:23:11 -05:00
{
name: "Delete",
onClick: () => {
removeLink(link);
setExpandDropdown(false);
},
2023-03-28 02:31:50 -05:00
},
2023-06-12 13:23:11 -05:00
]}
onClickOutside={(e: Event) => {
const target = e.target as HTMLInputElement;
if (target.id !== "expand-dropdown" + link.id)
setExpandDropdown(false);
}}
className="absolute top-8 right-0 w-36"
/>
) : null}
</div>
2023-03-10 13:25:33 -06:00
</div>
2023-03-05 15:03:20 -06:00
</div>
</div>
);
}