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";
|
2024-09-09 22:05:57 -05:00
|
|
|
import { useEffect, useMemo, useRef, useState } from "react";
|
2023-03-23 10:25:17 -05:00
|
|
|
import useLinkStore from "@/store/links";
|
2023-10-17 15:02:07 -05:00
|
|
|
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";
|
2024-08-13 02:01:02 -05:00
|
|
|
import LinkIcon from "./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:04:30 -06:00
|
|
|
import usePermissions from "@/hooks/usePermissions";
|
2024-02-13 09:55:51 -06:00
|
|
|
import toast from "react-hot-toast";
|
2024-08-13 02:01:02 -05:00
|
|
|
import LinkTypeBadge from "./LinkTypeBadge";
|
2024-06-09 08:27:16 -05:00
|
|
|
import { useTranslation } from "next-i18next";
|
2024-07-30 13:57:09 -05:00
|
|
|
import { useCollections } from "@/hooks/store/collections";
|
2024-07-31 13:15:50 -05:00
|
|
|
import { useUser } from "@/hooks/store/user";
|
2024-08-12 23:08:57 -05:00
|
|
|
import { useGetLink, useLinks } from "@/hooks/store/links";
|
2024-08-18 01:55:59 -05:00
|
|
|
import { useRouter } from "next/router";
|
2024-08-26 17:47:10 -05:00
|
|
|
import useLocalSettingsStore from "@/store/localSettings";
|
2024-09-11 00:38:38 -05:00
|
|
|
import LinkPin from "./LinkPin";
|
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;
|
2024-09-09 22:05:57 -05:00
|
|
|
columns: number;
|
2023-12-15 22:08:28 -06:00
|
|
|
className?: string;
|
2024-02-10 23:55:00 -06:00
|
|
|
editMode?: boolean;
|
2023-05-27 11:53:02 -05:00
|
|
|
};
|
|
|
|
|
2024-09-09 22:05:57 -05:00
|
|
|
export default function LinkCard({ link, columns, editMode }: Props) {
|
2024-06-09 08:27:16 -05:00
|
|
|
const { t } = useTranslation();
|
|
|
|
|
2024-09-09 22:05:57 -05:00
|
|
|
const heightMap = {
|
2024-09-11 00:38:38 -05:00
|
|
|
1: "h-44",
|
|
|
|
2: "h-40",
|
|
|
|
3: "h-36",
|
|
|
|
4: "h-32",
|
|
|
|
5: "h-28",
|
|
|
|
6: "h-24",
|
|
|
|
7: "h-20",
|
2024-09-09 22:05:57 -05:00
|
|
|
8: "h-20",
|
|
|
|
};
|
|
|
|
|
|
|
|
const imageHeightClass = useMemo(
|
|
|
|
() => (columns ? heightMap[columns as keyof typeof heightMap] : "h-40"),
|
|
|
|
[columns]
|
|
|
|
);
|
|
|
|
|
2024-08-12 23:08:57 -05:00
|
|
|
const { data: collections = [] } = useCollections();
|
2023-12-21 09:55:07 -06:00
|
|
|
|
2024-08-12 23:08:57 -05:00
|
|
|
const { data: user = {} } = useUser();
|
2023-12-21 09:55:07 -06:00
|
|
|
|
2024-08-12 23:08:57 -05:00
|
|
|
const { setSelectedLinks, selectedLinks } = useLinkStore();
|
|
|
|
|
2024-08-26 17:47:10 -05:00
|
|
|
const {
|
|
|
|
settings: { show },
|
|
|
|
} = useLocalSettingsStore();
|
|
|
|
|
2024-08-12 23:08:57 -05:00
|
|
|
const {
|
|
|
|
data: { data: links = [] },
|
|
|
|
} = useLinks();
|
|
|
|
const getLink = useGetLink();
|
2024-02-09 23:51:02 -06:00
|
|
|
|
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
|
|
|
|
) => {
|
2024-02-10 15:53:46 -06:00
|
|
|
if (selectedLinks.includes(link)) {
|
|
|
|
setSelectedLinks(selectedLinks.filter((e) => e !== link));
|
|
|
|
} else {
|
|
|
|
setSelectedLinks([...selectedLinks, link]);
|
|
|
|
}
|
2024-02-09 23:51:02 -06:00
|
|
|
};
|
2023-06-26 17:33:40 -05:00
|
|
|
|
2023-12-21 09:55:07 -06:00
|
|
|
let shortendURL;
|
|
|
|
|
|
|
|
try {
|
2024-04-01 01:56:54 -05:00
|
|
|
if (link.url) {
|
|
|
|
shortendURL = new URL(link.url).host.toLowerCase();
|
|
|
|
}
|
2023-12-21 09:55:07 -06:00
|
|
|
} catch (error) {
|
|
|
|
console.log(error);
|
|
|
|
}
|
2023-06-26 17:33:40 -05:00
|
|
|
|
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-06-26 17:33:40 -05: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-06-26 17:33:40 -05:00
|
|
|
|
2023-12-23 18:00:53 -06:00
|
|
|
const ref = useRef<HTMLDivElement>(null);
|
|
|
|
const isVisible = useOnScreen(ref);
|
2024-02-10 16:45:25 -06:00
|
|
|
const permissions = usePermissions(collection?.id as number);
|
2023-12-23 18:00:53 -06:00
|
|
|
|
2024-08-18 01:55:59 -05:00
|
|
|
const router = useRouter();
|
2024-11-07 06:32:06 -06:00
|
|
|
const isPublicRoute = router.pathname.startsWith("/public") ? true : false;
|
2024-08-18 01:55:59 -05:00
|
|
|
|
2023-12-23 18:00:53 -06:00
|
|
|
useEffect(() => {
|
2024-07-25 18:58:52 -05:00
|
|
|
let interval: NodeJS.Timeout | null = null;
|
2023-12-23 18:00:53 -06:00
|
|
|
|
|
|
|
if (
|
|
|
|
isVisible &&
|
|
|
|
!link.preview?.startsWith("archives") &&
|
|
|
|
link.preview !== "unavailable"
|
|
|
|
) {
|
|
|
|
interval = setInterval(async () => {
|
2024-11-07 06:32:06 -06:00
|
|
|
getLink.mutateAsync({
|
|
|
|
id: link.id as number,
|
|
|
|
isPublicRoute: isPublicRoute,
|
|
|
|
});
|
2023-12-23 18:00:53 -06:00
|
|
|
}, 5000);
|
|
|
|
}
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
if (interval) {
|
|
|
|
clearInterval(interval);
|
|
|
|
}
|
|
|
|
};
|
2023-12-24 05:46:08 -06:00
|
|
|
}, [isVisible, link.preview]);
|
2023-12-23 18:00:53 -06:00
|
|
|
|
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);
|
2024-02-11 02:38:41 -06:00
|
|
|
|
2023-12-15 22:08:28 -06:00
|
|
|
return (
|
2023-12-23 18:00:53 -06:00
|
|
|
<div
|
|
|
|
ref={ref}
|
2024-09-09 22:05:57 -05:00
|
|
|
className={`${selectedStyle} border border-solid border-neutral-content bg-base-200 shadow-md hover:shadow-none duration-100 rounded-2xl relative group`}
|
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
|
2024-05-24 16:12:47 -05:00
|
|
|
className="rounded-2xl cursor-pointer h-full flex flex-col justify-between"
|
2024-03-06 08:06:38 -06:00
|
|
|
onClick={() =>
|
2024-07-30 22:19:29 -05:00
|
|
|
!editMode && window.open(generateLinkHref(link, user), "_blank")
|
2024-03-06 08:06:38 -06:00
|
|
|
}
|
|
|
|
>
|
2024-08-26 18:56:04 -05:00
|
|
|
{show.image && (
|
|
|
|
<div>
|
2024-09-09 22:05:57 -05:00
|
|
|
<div
|
|
|
|
className={`relative rounded-t-2xl ${imageHeightClass} overflow-hidden`}
|
|
|
|
>
|
2024-08-26 18:56:04 -05:00
|
|
|
{previewAvailable(link) ? (
|
|
|
|
<Image
|
2024-09-04 21:19:40 -05:00
|
|
|
src={`/api/v1/archives/${link.id}?format=${ArchivedFormat.jpeg}&preview=true&updatedAt=${link.updatedAt}`}
|
2024-08-26 18:56:04 -05:00
|
|
|
width={1280}
|
|
|
|
height={720}
|
|
|
|
alt=""
|
2024-09-09 22:05:57 -05:00
|
|
|
className={`rounded-t-2xl select-none object-cover z-10 ${imageHeightClass} w-full shadow opacity-80 scale-105`}
|
2024-08-26 18:56:04 -05:00
|
|
|
style={show.icon ? { filter: "blur(1px)" } : undefined}
|
|
|
|
draggable="false"
|
|
|
|
onError={(e) => {
|
|
|
|
const target = e.target as HTMLElement;
|
|
|
|
target.style.display = "none";
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
) : link.preview === "unavailable" ? (
|
2024-09-09 22:05:57 -05:00
|
|
|
<div
|
|
|
|
className={`bg-gray-50 ${imageHeightClass} bg-opacity-80`}
|
|
|
|
></div>
|
2024-08-26 18:56:04 -05:00
|
|
|
) : (
|
2024-09-09 22:05:57 -05:00
|
|
|
<div
|
|
|
|
className={`${imageHeightClass} bg-opacity-80 skeleton rounded-none`}
|
|
|
|
></div>
|
2024-08-26 18:56:04 -05:00
|
|
|
)}
|
|
|
|
{show.icon && (
|
2024-08-28 19:22:11 -05:00
|
|
|
<div className="absolute top-0 left-0 right-0 bottom-0 rounded-t-2xl flex items-center justify-center rounded-md">
|
2024-08-26 18:56:04 -05:00
|
|
|
<LinkIcon link={link} />
|
|
|
|
</div>
|
|
|
|
)}
|
2024-08-26 17:47:10 -05:00
|
|
|
</div>
|
2024-08-26 18:56:04 -05:00
|
|
|
<hr className="divider my-0 border-t border-neutral-content h-[1px]" />
|
2024-04-26 11:18:31 -05:00
|
|
|
</div>
|
2024-08-26 18:56:04 -05:00
|
|
|
)}
|
2024-02-11 02:38:41 -06:00
|
|
|
|
2024-08-26 18:56:04 -05:00
|
|
|
<div className="flex flex-col justify-between h-full min-h-24">
|
2024-05-24 16:12:47 -05:00
|
|
|
<div className="p-3 flex flex-col gap-2">
|
2024-08-26 18:56:04 -05:00
|
|
|
{show.name && (
|
2024-09-09 22:05:57 -05:00
|
|
|
<p className="truncate w-full text-primary text-sm">
|
2024-08-26 18:56:04 -05:00
|
|
|
{unescapeString(link.name)}
|
|
|
|
</p>
|
|
|
|
)}
|
2024-02-11 02:38:41 -06:00
|
|
|
|
2024-08-26 18:56:04 -05:00
|
|
|
{show.link && <LinkTypeBadge link={link} />}
|
2024-05-24 16:12:47 -05:00
|
|
|
</div>
|
|
|
|
|
2024-08-26 18:56:04 -05:00
|
|
|
{(show.collection || show.date) && (
|
|
|
|
<div>
|
|
|
|
<hr className="divider mt-2 mb-1 last:hidden border-t border-neutral-content h-[1px]" />
|
2024-05-24 16:12:47 -05:00
|
|
|
|
2024-09-11 00:38:38 -05:00
|
|
|
<div className="flex justify-between items-center text-xs text-neutral px-3 pb-1 gap-2">
|
2024-11-07 06:32:06 -06:00
|
|
|
{show.collection && !isPublicRoute && (
|
2024-08-26 18:56:04 -05:00
|
|
|
<div className="cursor-pointer truncate">
|
|
|
|
<LinkCollection link={link} collection={collection} />
|
|
|
|
</div>
|
2024-05-24 16:12:47 -05:00
|
|
|
)}
|
2024-08-26 18:56:04 -05:00
|
|
|
{show.date && <LinkDate link={link} />}
|
2024-05-24 16:12:47 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-08-26 18:56:04 -05:00
|
|
|
)}
|
2024-03-06 08:06:38 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-09-09 22:05:57 -05:00
|
|
|
{/* Overlay on hover */}
|
|
|
|
<div className="absolute pointer-events-none top-0 left-0 right-0 bottom-0 bg-base-100 bg-opacity-0 group-hover:bg-opacity-20 group-focus-within:opacity-20 rounded-2xl duration-100"></div>
|
2024-09-12 12:47:18 -05:00
|
|
|
<LinkActions link={link} collection={collection} />
|
2024-11-07 00:12:05 -06:00
|
|
|
{!isPublicRoute && <LinkPin link={link} />}
|
2023-12-15 22:08:28 -06:00
|
|
|
</div>
|
|
|
|
);
|
2023-03-05 15:03:20 -06:00
|
|
|
}
|