el.xwx.moe/components/LinkViews/LinkCard.tsx

255 lines
8.1 KiB
TypeScript
Raw Normal View History

2023-06-05 05:16:04 -05:00
import {
2023-12-23 11:11:47 -06:00
ArchivedFormat,
2023-12-15 22:08:28 -06:00
CollectionIncludingMembersAndLinkCount,
LinkIncludingShortenedCollectionAndTags,
2023-06-05 05:16:04 -05:00
} from "@/types/global";
2023-12-23 18:00:53 -06:00
import { useEffect, useRef, useState } from "react";
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";
import unescapeString from "@/lib/client/unescapeString";
2023-12-15 21:25:39 -06:00
import LinkActions from "@/components/LinkViews/LinkComponents/LinkActions";
import LinkDate from "@/components/LinkViews/LinkComponents/LinkDate";
import LinkCollection from "@/components/LinkViews/LinkComponents/LinkCollection";
2023-12-23 11:11:47 -06:00
import Image from "next/image";
import { previewAvailable } from "@/lib/shared/getArchiveValidity";
2023-12-21 09:55:07 -06:00
import Link from "next/link";
2023-12-23 11:11:47 -06:00
import LinkIcon from "./LinkComponents/LinkIcon";
2023-12-23 18:00:53 -06:00
import useOnScreen from "@/hooks/useOnScreen";
2024-02-08 00:44:41 -06:00
import { generateLinkHref } from "@/lib/client/generateLinkHref";
2024-02-10 16:49:32 -06:00
import useAccountStore from "@/store/account";
import usePermissions from "@/hooks/usePermissions";
2024-02-13 09:55:51 -06:00
import toast from "react-hot-toast";
import LinkTypeBadge from "./LinkComponents/LinkTypeBadge";
2024-06-09 08:27:16 -05:00
import { useTranslation } from "next-i18next";
2023-03-05 15:03:20 -06:00
2023-05-27 11:53:02 -05:00
type Props = {
2023-12-15 22:08:28 -06:00
link: LinkIncludingShortenedCollectionAndTags;
count: number;
className?: string;
2024-01-19 23:34:49 -06:00
flipDropdown?: boolean;
2024-02-10 23:55:00 -06:00
editMode?: boolean;
2023-05-27 11:53:02 -05:00
};
2024-02-13 04:54:18 -06:00
export default function LinkCard({ link, flipDropdown, editMode }: Props) {
2024-06-09 08:27:16 -05:00
const { t } = useTranslation();
2024-04-23 20:48:15 -05:00
const viewMode = localStorage.getItem("viewMode") || "card";
2023-12-21 09:55:07 -06:00
const { collections } = useCollectionStore();
2024-02-10 16:49:32 -06:00
const { account } = useAccountStore();
2023-12-21 09:55:07 -06:00
const { links, getLink, setSelectedLinks, selectedLinks } = useLinkStore();
2024-03-06 08:06:38 -06:00
useEffect(() => {
if (!editMode) {
setSelectedLinks([]);
}
}, [editMode]);
2024-02-10 18:34:25 -06:00
const handleCheckboxClick = (
link: LinkIncludingShortenedCollectionAndTags
) => {
if (selectedLinks.includes(link)) {
setSelectedLinks(selectedLinks.filter((e) => e !== link));
} else {
setSelectedLinks([...selectedLinks, link]);
}
};
2023-12-21 09:55:07 -06:00
let shortendURL;
try {
if (link.url) {
shortendURL = new URL(link.url).host.toLowerCase();
}
2023-12-21 09:55:07 -06:00
} catch (error) {
console.log(error);
}
2023-12-15 22:08:28 -06:00
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 22:08:28 -06:00
);
2023-12-15 22:08:28 -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 22:08:28 -06:00
);
}, [collections, links]);
2023-12-23 18:00:53 -06:00
const ref = useRef<HTMLDivElement>(null);
const isVisible = useOnScreen(ref);
const permissions = usePermissions(collection?.id as number);
2023-12-23 18:00:53 -06:00
useEffect(() => {
let interval: any;
if (
isVisible &&
!link.preview?.startsWith("archives") &&
link.preview !== "unavailable"
) {
interval = setInterval(async () => {
getLink(link.id as number);
}, 5000);
}
return () => {
if (interval) {
clearInterval(interval);
}
};
}, [isVisible, link.preview]);
2023-12-23 18:00:53 -06:00
const [showInfo, setShowInfo] = useState(false);
2024-02-13 04:54:18 -06:00
const selectedStyle = selectedLinks.some(
(selectedLink) => selectedLink.id === link.id
)
? "border-primary bg-base-300"
: "border-neutral-content";
2024-02-13 09:55:51 -06:00
2024-02-13 04:54:18 -06:00
const selectable =
editMode &&
(permissions === true || permissions?.canCreate || permissions?.canDelete);
2023-12-15 22:08:28 -06:00
return (
2023-12-23 18:00:53 -06:00
<div
ref={ref}
2024-02-13 04:54:18 -06:00
className={`${selectedStyle} border border-solid border-neutral-content bg-base-200 shadow-md hover:shadow-none duration-100 rounded-2xl relative`}
2024-02-13 09:55:51 -06:00
onClick={() =>
selectable
? handleCheckboxClick(link)
2024-02-13 13:35:31 -06:00
: editMode
2024-06-09 08:27:16 -05:00
? toast.error(t("link_selection_error"))
2024-02-13 13:35:31 -06:00
: undefined
2024-02-13 09:55:51 -06:00
}
2023-12-23 18:00:53 -06:00
>
2024-03-06 08:06:38 -06:00
<div
className="rounded-2xl cursor-pointer h-full flex flex-col justify-between"
2024-03-06 08:06:38 -06:00
onClick={() =>
!editMode && window.open(generateLinkHref(link, account), "_blank")
}
>
<div>
<div className="relative rounded-t-2xl h-40 overflow-hidden">
{previewAvailable(link) ? (
<Image
src={`/api/v1/archives/${link.id}?format=${ArchivedFormat.jpeg}&preview=true`}
width={1280}
height={720}
alt=""
className="rounded-t-2xl select-none object-cover z-10 h-40 w-full shadow opacity-80 scale-105"
style={
link.type !== "image" ? { filter: "blur(1px)" } : undefined
}
draggable="false"
onError={(e) => {
const target = e.target as HTMLElement;
target.style.display = "none";
}}
/>
) : link.preview === "unavailable" ? (
<div className="bg-gray-50 duration-100 h-40 bg-opacity-80"></div>
) : (
<div className="duration-100 h-40 bg-opacity-80 skeleton rounded-none"></div>
)}
{link.type !== "image" && (
<div className="absolute top-0 left-0 right-0 bottom-0 rounded-t-2xl flex items-center justify-center shadow rounded-md">
<LinkIcon link={link} />
</div>
)}
2024-04-26 11:18:31 -05:00
</div>
2024-05-24 18:47:45 -05:00
<hr className="divider my-0 border-t border-neutral-content h-[1px]" />
2024-03-06 08:06:38 -06:00
</div>
<div className="flex flex-col justify-between h-full">
<div className="p-3 flex flex-col gap-2">
2024-06-09 08:27:16 -05:00
<p className="truncate w-full pr-9 text-primary text-sm">
{unescapeString(link.name)}
</p>
<LinkTypeBadge link={link} />
</div>
<div>
<hr className="divider mt-2 mb-1 last:hidden border-t border-neutral-content h-[1px]" />
<div className="flex justify-between text-xs text-neutral px-3 pb-1 gap-2">
<div className="cursor-pointer truncate">
{collection && (
<LinkCollection link={link} collection={collection} />
)}
</div>
<LinkDate link={link} />
</div>
</div>
2024-03-06 08:06:38 -06:00
</div>
</div>
{showInfo && (
2024-05-24 18:47:45 -05:00
<div className="p-3 absolute z-30 top-0 left-0 right-0 bottom-0 bg-base-200 rounded-[0.9rem] fade-in overflow-y-auto">
2024-03-06 08:06:38 -06:00
<div
onClick={() => setShowInfo(!showInfo)}
className=" float-right btn btn-sm outline-none btn-circle btn-ghost z-10"
>
<i className="bi-x text-neutral text-2xl"></i>
</div>
2024-06-09 08:27:16 -05:00
<p className="text-neutral text-lg font-semibold">
{t("description")}
</p>
2024-03-06 08:06:38 -06:00
2024-05-24 18:47:45 -05:00
<hr className="divider my-2 border-t border-neutral-content h-[1px]" />
2024-03-06 08:06:38 -06:00
<p>
{link.description ? (
unescapeString(link.description)
) : (
<span className="text-neutral text-sm">
2024-06-09 08:27:16 -05:00
{t("no_description")}
2024-03-06 08:06:38 -06:00
</span>
)}
</p>
2024-05-14 11:14:22 -05:00
{link.tags && link.tags[0] && (
2024-03-06 08:06:38 -06:00
<>
2024-06-09 08:27:16 -05:00
<p className="text-neutral text-lg mt-3 font-semibold">
{t("tags")}
</p>
2024-05-24 18:47:45 -05:00
<hr className="divider my-2 border-t border-neutral-content h-[1px]" />
2024-03-06 08:06:38 -06:00
<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>
</div>
</>
)}
2024-03-06 08:06:38 -06:00
</div>
)}
2024-03-06 08:06:38 -06:00
<LinkActions
link={link}
collection={collection}
2024-04-26 11:18:31 -05:00
position="top-[10.75rem] right-3"
2024-03-06 08:06:38 -06:00
toggleShowInfo={() => setShowInfo(!showInfo)}
linkInfo={showInfo}
flipDropdown={flipDropdown}
/>
2023-12-15 22:08:28 -06:00
</div>
);
2023-03-05 15:03:20 -06:00
}