el.xwx.moe/components/LinkCard.tsx

279 lines
8.6 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";
2023-07-24 08:39:51 -05:00
import {
faFolder,
faEllipsis,
faLink,
} 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";
import usePermissions from "@/hooks/usePermissions";
import { toast } from "react-hot-toast";
2023-06-26 18:35:12 -05:00
import isValidUrl from "@/lib/client/isValidUrl";
import Link from "next/link";
import unescapeString from "@/lib/client/unescapeString";
2023-10-30 14:20:15 -05:00
import { useRouter } from "next/router";
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
};
type DropdownTrigger =
| {
x: number;
y: number;
}
| false;
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-10-30 14:20:15 -05:00
const router = useRouter();
const permissions = usePermissions(link.collection.id as number);
const [expandDropdown, setExpandDropdown] = useState<DropdownTrigger>(false);
2023-03-10 13:25:33 -06:00
2023-06-05 05:16:04 -05:00
const { collections } = useCollectionStore();
2023-07-24 13:20:05 -05:00
const { links } = useLinkStore();
2023-06-13 14:19:37 -05:00
const { account } = useAccountStore();
2023-07-24 08:39:51 -05:00
let shortendURL;
try {
shortendURL = new URL(link.url).host.toLowerCase();
} catch (error) {
console.log(error);
}
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
);
2023-07-24 13:20:05 -05:00
}, [collections, links]);
2023-06-05 05:16:04 -05:00
2023-10-28 23:57:24 -05:00
const { removeLink, updateLink, getLink } = useLinkStore();
2023-03-23 10:25:17 -05:00
const pinLink = async () => {
const isAlreadyPinned = link?.pinnedBy && link.pinnedBy[0];
const load = toast.loading("Applying...");
setExpandDropdown(false);
const response = await updateLink({
...link,
pinnedBy: isAlreadyPinned ? undefined : [{ id: account.id }],
});
toast.dismiss(load);
response.ok &&
toast.success(`Link ${isAlreadyPinned ? "Unpinned!" : "Pinned!"}`);
};
const updateArchive = async () => {
2023-10-28 23:57:24 -05:00
const load = toast.loading("Sending request...");
setExpandDropdown(false);
const response = await fetch(`/api/v1/links/${link.id}/archive`, {
method: "PUT",
});
const data = await response.json();
toast.dismiss(load);
2023-10-28 23:57:24 -05:00
if (response.ok) {
toast.success(`Link is being archived...`);
getLink(link.id as number);
2023-11-06 09:01:39 -06:00
} else toast.error(data.response);
};
const deleteLink = async () => {
const load = toast.loading("Deleting...");
const response = await removeLink(link.id as number);
toast.dismiss(load);
response.ok && toast.success(`Link Deleted.`);
setExpandDropdown(false);
};
2023-06-26 18:35:12 -05:00
const url = isValidUrl(link.url) ? new URL(link.url) : undefined;
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-10-28 23:57:24 -05:00
<>
<div
2023-10-28 23:57:24 -05:00
className={`h-fit border border-solid border-sky-100 dark:border-neutral-700 bg-gradient-to-tr from-slate-200 dark:from-neutral-800 from-10% to-gray-50 dark:to-[#303030] via-20% shadow hover:shadow-none duration-100 rounded-2xl relative group ${
className || ""
}`}
>
2023-10-28 23:57:24 -05:00
{(permissions === true ||
permissions?.canUpdate ||
permissions?.canDelete) && (
<div
onClick={(e) => {
setExpandDropdown({ x: e.clientX, y: e.clientY });
2023-06-26 18:35:12 -05:00
}}
2023-10-28 23:57:24 -05:00
id={"expand-dropdown" + link.id}
className="text-gray-500 dark:text-gray-300 inline-flex rounded-md cursor-pointer hover:bg-slate-200 dark:hover:bg-neutral-700 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}
/>
</div>
2023-06-26 18:35:12 -05:00
)}
2023-06-13 20:44:39 -05:00
2023-10-28 23:57:24 -05:00
<div
2023-10-30 14:20:15 -05:00
onClick={() => router.push("/links/" + link.id)}
2023-10-28 23:57:24 -05:00
className="flex items-start cursor-pointer gap-5 sm:gap-10 h-full w-full p-5"
>
{url && (
<Image
src={`https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=${url.origin}&size=32`}
width={64}
height={64}
alt=""
className="blur-sm absolute w-16 group-hover:opacity-80 duration-100 rounded-2xl bottom-5 right-5 opacity-60 select-none"
draggable="false"
onError={(e) => {
const target = e.target as HTMLElement;
target.style.display = "none";
}}
2023-10-28 23:57:24 -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-gray-500 dark:text-gray-300">
{count + 1}
</p>
<p className="text-lg text-black dark:text-white truncate capitalize w-full pr-8">
{unescapeString(link.name || link.description)}
</p>
</div>
<Link
href={`/collections/${link.collection.id}`}
onClick={(e) => {
e.stopPropagation();
}}
className="flex items-center gap-1 max-w-full w-fit my-3 hover:opacity-70 duration-100"
>
<FontAwesomeIcon
icon={faFolder}
className="w-4 h-4 mt-1 drop-shadow"
style={{ color: collection?.color }}
/>
<p className="text-black dark:text-white truncate capitalize w-full">
{collection?.name}
</p>
</Link>
<Link
href={link.url}
target="_blank"
onClick={(e) => {
e.stopPropagation();
}}
className="flex items-center gap-1 max-w-full w-fit text-gray-500 dark:text-gray-300 hover:opacity-70 duration-100"
>
<FontAwesomeIcon icon={faLink} className="mt-1 w-4 h-4" />
<p className="truncate w-full">{shortendURL}</p>
</Link>
<div className="flex items-center gap-1 text-gray-500 dark:text-gray-300">
<FontAwesomeIcon icon={faCalendarDays} className="w-4 h-4" />
<p>{formattedDate}</p>
</div>
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
2023-10-28 11:50:11 -05:00
points={{ x: expandDropdown.x, y: expandDropdown.y }}
items={[
2023-06-24 16:54:35 -05:00
permissions === true
? {
name:
link?.pinnedBy && link.pinnedBy[0]
? "Unpin"
: "Pin to Dashboard",
onClick: pinLink,
}
: undefined,
permissions === true || permissions?.canUpdate
? {
name: "Edit",
onClick: () => {
setModal({
modal: "LINK",
state: true,
method: "UPDATE",
active: link,
});
setExpandDropdown(false);
},
}
: undefined,
permissions === true
? {
2023-10-31 14:44:58 -05:00
name: "Refresh Formats",
onClick: updateArchive,
}
: undefined,
permissions === true || permissions?.canDelete
? {
name: "Delete",
onClick: deleteLink,
}
: undefined,
]}
onClickOutside={(e: Event) => {
const target = e.target as HTMLInputElement;
if (target.id !== "expand-dropdown" + link.id)
setExpandDropdown(false);
}}
2023-10-28 23:57:24 -05:00
className="w-40"
/>
) : null}
2023-10-28 23:57:24 -05:00
</>
2023-03-05 15:03:20 -06:00
);
}