el.xwx.moe/components/LinkCard.tsx

323 lines
10 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-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-12-05 14:17:36 -06:00
import {
faCalendarDays,
faFileImage,
faFilePdf,
} from "@fortawesome/free-regular-svg-icons";
import usePermissions from "@/hooks/usePermissions";
import { toast } from "react-hot-toast";
2023-11-25 02:27:34 -06:00
import isValidUrl from "@/lib/shared/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-12-01 16:44:34 -06:00
import EditLinkModal from "./ModalContent/EditLinkModal";
import DeleteLinkModal from "./ModalContent/DeleteLinkModal";
2023-12-06 15:13:11 -06:00
import ExpandedLink from "./ModalContent/ExpandedLink";
import PreservedFormatsModal from "./ModalContent/PreservedFormatsModal";
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-10-30 14:20:15 -05:00
const router = useRouter();
const permissions = usePermissions(link.collection.id as number);
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 {
2023-11-25 02:27:34 -06:00
shortendURL = new URL(link.url || "").host.toLowerCase();
2023-07-24 08:39:51 -05:00
} 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-12-06 23:33:05 -06:00
const { removeLink, updateLink } = useLinkStore();
2023-03-23 10:25:17 -05:00
const pinLink = async () => {
const isAlreadyPinned = link?.pinnedBy && link.pinnedBy[0];
const load = toast.loading("Applying...");
const response = await updateLink({
...link,
pinnedBy: isAlreadyPinned ? undefined : [{ id: account.id }],
});
toast.dismiss(load);
response.ok &&
toast.success(`Link ${isAlreadyPinned ? "Unpinned!" : "Pinned!"}`);
};
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.`);
};
2023-11-25 02:27:34 -06:00
const url =
isValidUrl(link.url || "") && link.url ? new URL(link.url) : undefined;
2023-06-26 18:35:12 -05:00
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-12-01 16:42:45 -06:00
const [editLinkModal, setEditLinkModal] = useState(false);
const [deleteLinkModal, setDeleteLinkModal] = useState(false);
2023-12-06 15:13:11 -06:00
const [preservedFormatsModal, setPreservedFormatsModal] = useState(false);
const [expandedLink, setExpandedLink] = useState(false);
2023-03-05 15:03:20 -06:00
return (
<div
2023-12-02 11:48:34 -06:00
className={`h-fit border border-solid border-neutral-content bg-base-200 shadow-md hover:shadow-none duration-100 rounded-2xl relative ${
className || ""
}`}
>
{permissions === true ||
permissions?.canUpdate ||
permissions?.canDelete ? (
<div className="dropdown dropdown-left absolute top-3 right-3 z-20">
<div
tabIndex={0}
role="button"
className="btn btn-ghost btn-sm btn-square text-neutral"
>
<FontAwesomeIcon
icon={faEllipsis}
title="More"
className="w-5 h-5"
id={"expand-dropdown" + collection.id}
/>
</div>
<ul className="dropdown-content z-[20] menu shadow bg-base-200 border border-neutral-content rounded-box w-44 mr-1">
{permissions === true ? (
<li>
<div
role="button"
tabIndex={0}
onClick={() => {
(document?.activeElement as HTMLElement)?.blur();
pinLink();
}}
>
{link?.pinnedBy && link.pinnedBy[0]
? "Unpin"
: "Pin to Dashboard"}
</div>
</li>
) : undefined}
{permissions === true || permissions?.canUpdate ? (
<li>
<div
role="button"
tabIndex={0}
onClick={() => {
(document?.activeElement as HTMLElement)?.blur();
2023-12-01 16:42:45 -06:00
setEditLinkModal(true);
}}
>
Edit
</div>
</li>
) : undefined}
{permissions === true ? (
<li>
<div
role="button"
tabIndex={0}
onClick={() => {
(document?.activeElement as HTMLElement)?.blur();
2023-12-06 15:13:11 -06:00
setPreservedFormatsModal(true);
// updateArchive();
}}
>
2023-12-06 15:13:11 -06:00
Preserved Formats
</div>
</li>
) : undefined}
{permissions === true || permissions?.canDelete ? (
<li>
<div
role="button"
tabIndex={0}
onClick={(e) => {
(document?.activeElement as HTMLElement)?.blur();
e.shiftKey ? deleteLink() : setDeleteLinkModal(true);
}}
>
Delete
</div>
</li>
) : undefined}
</ul>
</div>
) : undefined}
2023-12-06 15:13:11 -06:00
<Link
href={"/links/" + link.id}
// onClick={
// () => router.push("/links/" + link.id)
// // setExpandedLink(true)
// }
2023-12-05 14:17:36 -06:00
className="flex flex-col justify-between cursor-pointer h-full w-full gap-1 p-3"
>
2023-12-05 14:17:36 -06:00
{link.url && url ? (
<Image
2023-12-06 23:33:05 -06:00
src={`https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=${link.url}&size=32`}
width={64}
height={64}
alt=""
2023-12-05 14:17:36 -06:00
className={`absolute w-12 bg-white shadow rounded-md p-1 bottom-3 right-3 select-none z-10`}
draggable="false"
onError={(e) => {
const target = e.target as HTMLElement;
target.style.display = "none";
}}
/>
2023-12-05 14:17:36 -06:00
) : link.type === "pdf" ? (
<FontAwesomeIcon
icon={faFilePdf}
2023-12-06 15:13:11 -06:00
className="absolute h-12 w-12 bg-primary/20 text-primary shadow rounded-md p-2 bottom-3 right-3 select-none z-10"
2023-12-05 14:17:36 -06:00
/>
) : link.type === "image" ? (
<FontAwesomeIcon
icon={faFileImage}
2023-12-06 15:13:11 -06:00
className="absolute h-12 w-12 bg-primary/20 text-primary shadow rounded-md p-2 bottom-3 right-3 select-none z-10"
2023-12-05 14:17:36 -06:00
/>
) : undefined}
<div className="flex items-baseline gap-1">
<p className="text-sm text-neutral">{count + 1}</p>
<p className="text-lg truncate w-full pr-8">
2023-12-12 12:26:53 -06:00
{unescapeString(link.name || link.description) || link.url}
2023-12-05 14:17:36 -06:00
</p>
</div>
2023-12-06 15:13:11 -06:00
{link.url ? (
2023-12-06 23:33:05 -06:00
<div
2023-12-05 14:17:36 -06:00
onClick={(e) => {
2023-12-06 23:33:05 -06:00
e.preventDefault();
window.open(link.url || "", "_blank");
2023-12-05 14:17:36 -06:00
}}
2023-12-06 15:13:11 -06:00
className="flex items-center gap-1 max-w-full w-fit text-neutral hover:opacity-60 duration-100"
2023-12-05 14:17:36 -06:00
>
2023-12-05 14:21:28 -06:00
<FontAwesomeIcon icon={faLink} className="mt-1 w-4 h-4" />
2023-12-05 14:17:36 -06:00
<p className="truncate w-full">{shortendURL}</p>
2023-12-06 23:33:05 -06:00
</div>
2023-12-05 14:17:36 -06:00
) : (
<div className="badge badge-primary badge-sm my-1">{link.type}</div>
)}
2023-12-06 23:33:05 -06:00
<div
2023-12-05 14:17:36 -06:00
onClick={(e) => {
2023-12-06 23:33:05 -06:00
e.preventDefault();
router.push(`/collections/${link.collection.id}`);
2023-12-05 14:17:36 -06:00
}}
className="flex items-center gap-1 max-w-full w-fit hover:opacity-70 duration-100"
>
<FontAwesomeIcon
icon={faFolder}
className="w-4 h-4 mt-1 drop-shadow"
style={{ color: collection?.color }}
/>
<p className="truncate capitalize w-full">{collection?.name}</p>
2023-12-06 23:33:05 -06:00
</div>
2023-12-05 14:17:36 -06:00
<div className="flex items-center gap-1 text-neutral">
<FontAwesomeIcon icon={faCalendarDays} className="w-4 h-4" />
<p>{formattedDate}</p>
</div>
{/* {link.tags[0] ? (
2023-12-05 03:39:01 -06:00
<div className="flex gap-3 items-center flex-wrap mt-2 truncate relative">
2023-12-02 11:48:34 -06:00
<div className="flex gap-1 items-center flex-nowrap">
{link.tags.map((e, i) => (
<Link
href={"/tags/" + e.id}
key={i}
onClick={(e) => {
e.stopPropagation();
}}
2023-12-05 03:12:48 -06:00
className="btn btn-xs btn-ghost truncate max-w-[19rem]"
2023-12-02 11:48:34 -06:00
>
2023-12-05 03:12:48 -06:00
#{e.name}
2023-12-02 11:48:34 -06:00
</Link>
))}
2023-11-23 08:03:47 -06:00
</div>
2023-12-02 11:48:34 -06:00
<div className="absolute w-1/2 top-0 bottom-0 right-0 bg-gradient-to-r from-transparent to-base-200 to-35%"></div>
</div>
2023-12-05 03:12:48 -06:00
) : (
2023-12-05 03:39:01 -06:00
<p className="text-xs mt-2 p-1 font-semibold italic">No Tags</p>
2023-12-05 14:17:36 -06:00
)} */}
2023-12-06 15:13:11 -06:00
</Link>
2023-12-01 16:42:45 -06:00
{editLinkModal ? (
<EditLinkModal
onClose={() => setEditLinkModal(false)}
activeLink={link}
/>
) : undefined}
{deleteLinkModal ? (
<DeleteLinkModal
onClose={() => setDeleteLinkModal(false)}
activeLink={link}
/>
) : undefined}
2023-12-06 15:13:11 -06:00
{preservedFormatsModal ? (
<PreservedFormatsModal
onClose={() => setPreservedFormatsModal(false)}
activeLink={link}
/>
) : undefined}
{/* {expandedLink ? (
<ExpandedLink onClose={() => setExpandedLink(false)} link={link} />
) : undefined} */}
</div>
2023-03-05 15:03:20 -06:00
);
}