el.xwx.moe/components/LinkCard.tsx

177 lines
5.5 KiB
TypeScript
Raw Normal View History

2023-06-05 05:16:04 -05:00
import {
2023-06-16 07:55:21 -05:00
CollectionIncludingMembersAndLinkCount,
LinkIncludingShortenedCollectionAndTags,
2023-06-05 05:16:04 -05:00
} from "@/types/global";
import { faFolder, faEllipsis } from "@fortawesome/free-solid-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-06-05 05:16:04 -05:00
import useCollectionStore from "@/store/collections";
2023-06-13 14:19:37 -05:00
import useAccountStore from "@/store/account";
2023-06-12 23:46:32 -05:00
import useModalStore from "@/store/modals";
import { faCalendarDays } from "@fortawesome/free-regular-svg-icons";
2023-03-05 15:03:20 -06:00
2023-05-27 11:53:02 -05:00
type Props = {
link: LinkIncludingShortenedCollectionAndTags;
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();
2023-06-13 14:19:37 -05:00
const { account } = useAccountStore();
2023-06-16 07:55:21 -05:00
const [collection, setCollection] =
useState<CollectionIncludingMembersAndLinkCount>(
collections.find(
(e) => e.id === link.collection.id
) as CollectionIncludingMembersAndLinkCount
);
2023-06-05 05:16:04 -05:00
useEffect(() => {
setCollection(
collections.find(
(e) => e.id === link.collection.id
2023-06-16 07:55:21 -05:00
) as CollectionIncludingMembersAndLinkCount
2023-06-05 05:16:04 -05:00
);
}, [collections]);
2023-06-13 14:19:37 -05:00
const { removeLink, updateLink } = useLinkStore();
2023-03-23 10:25:17 -05:00
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 hover:shadow-none cursor-pointer duration-100 p-5 rounded-2xl relative group ${className}`}
2023-06-12 13:23:11 -05:00
>
<div
onClick={() => setExpandDropdown(!expandDropdown)}
id={"expand-dropdown" + link.id}
className="text-gray-500 inline-flex rounded-md cursor-pointer hover:bg-slate-200 absolute right-5 top-5 z-10 duration-100 p-1"
>
<FontAwesomeIcon
icon={faEllipsis}
title="More"
className="w-5 h-5"
id={"expand-dropdown" + link.id}
2023-06-12 13:23:11 -05:00
/>
</div>
2023-06-13 20:44:39 -05:00
<div
onClick={() => {
setModal({
modal: "LINK",
state: true,
method: "UPDATE",
active: link,
});
}}
className="flex items-start gap-5 sm:gap-10 h-full w-full"
>
2023-06-12 13:23:11 -05:00
<Image
src={`https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=${url.origin}&size=32`}
width={70}
height={70}
2023-06-12 13:23:11 -05:00
alt=""
className="blur-sm absolute bottom-5 right-5 opacity-60 group-hover:opacity-80 duration-100 select-none"
2023-06-12 13:23:11 -05:00
draggable="false"
onError={(e) => {
const target = e.target as HTMLElement;
target.style.opacity = "0";
}}
/>
2023-06-13 20:44:39 -05:00
2023-06-12 13:23:11 -05:00
<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-[10rem]">
2023-06-12 13:23:11 -05:00
{link.name}
</p>
2023-03-10 13:25:33 -06:00
</div>
2023-06-12 13:23:11 -05:00
<div className="flex gap-3 items-center flex-wrap my-3">
<div className="flex items-center gap-1">
<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>
2023-06-12 13:23:11 -05:00
</div>
</div>
<div className="flex items-center gap-1 text-gray-500">
<FontAwesomeIcon icon={faCalendarDays} className="w-4 h-4" />
<p>{formattedDate}</p>
2023-06-12 13:23:11 -05:00
</div>
</div>
2023-03-10 13:25:33 -06:00
</div>
2023-03-05 15:03:20 -06:00
</div>
{expandDropdown ? (
<Dropdown
items={[
{
name:
link?.pinnedBy && link.pinnedBy[0]
? "Unpin"
: "Pin to Dashboard",
onClick: () => {
updateLink({
...link,
pinnedBy:
link?.pinnedBy && link.pinnedBy[0]
? undefined
: [{ id: account.id }],
});
setExpandDropdown(false);
},
},
{
name: "Edit",
onClick: () => {
setModal({
modal: "LINK",
state: true,
method: "UPDATE",
active: link,
defaultIndex: 1,
});
setExpandDropdown(false);
},
},
{
name: "Delete",
onClick: () => {
removeLink(link);
setExpandDropdown(false);
},
},
]}
onClickOutside={(e: Event) => {
const target = e.target as HTMLInputElement;
if (target.id !== "expand-dropdown" + link.id)
setExpandDropdown(false);
}}
className="absolute top-12 right-5 w-36"
/>
) : null}
2023-03-05 15:03:20 -06:00
</div>
);
}