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

184 lines
6.0 KiB
TypeScript
Raw Normal View History

2023-12-15 21:25:39 -06:00
import {
CollectionIncludingMembersAndLinkCount,
LinkIncludingShortenedCollectionAndTags,
} from "@/types/global";
import { useEffect, useState } from "react";
import useLinkStore from "@/store/links";
import useCollectionStore from "@/store/collections";
import unescapeString from "@/lib/client/unescapeString";
import LinkActions from "@/components/LinkViews/LinkComponents/LinkActions";
import LinkDate from "@/components/LinkViews/LinkComponents/LinkDate";
import LinkCollection from "@/components/LinkViews/LinkComponents/LinkCollection";
import LinkIcon from "@/components/LinkViews/LinkComponents/LinkIcon";
2023-12-23 18:00:53 -06:00
import Link from "next/link";
2024-01-15 02:39:53 -06:00
import { isPWA } from "@/lib/client/utils";
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";
2023-12-15 21:25:39 -06:00
type Props = {
link: LinkIncludingShortenedCollectionAndTags;
count: number;
className?: string;
2024-01-19 23:34:49 -06:00
flipDropdown?: boolean;
2024-02-09 23:56:36 -06:00
showCheckbox?: boolean;
2023-12-15 21:25:39 -06:00
};
2024-01-19 23:34:49 -06:00
export default function LinkCardCompact({
link,
flipDropdown,
2024-02-10 00:37:48 -06:00
showCheckbox = true,
2024-01-19 23:34:49 -06:00
}: Props) {
2023-12-15 21:25:39 -06:00
const { collections } = useCollectionStore();
2024-02-10 16:49:32 -06:00
const { account } = useAccountStore();
const { links, setSelectedLinks, selectedLinks } = useLinkStore();
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-15 21:25:39 -06:00
let shortendURL;
try {
shortendURL = new URL(link.url || "").host.toLowerCase();
} catch (error) {
console.log(error);
}
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 21:25:39 -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 21:25:39 -06:00
);
}, [collections, links]);
const permissions = usePermissions(collection?.id as number);
2023-12-23 18:00:53 -06:00
const [showInfo, setShowInfo] = useState(false);
2023-12-15 21:25:39 -06:00
return (
2023-12-16 14:06:26 -06:00
<>
2023-12-24 06:30:45 -06:00
<div
2024-02-10 18:34:25 -06:00
className={`border-neutral-content relative items-center flex ${
!showInfo && !isPWA() ? "hover:bg-base-300 p-3" : "py-3"
} duration-200 rounded-lg`}
2023-12-24 06:30:45 -06:00
>
2024-02-10 18:34:25 -06:00
{showCheckbox &&
(permissions === true ||
permissions?.canCreate ||
permissions?.canDelete) && (
<input
type="checkbox"
className="checkbox checkbox-primary my-auto mr-2"
checked={selectedLinks.includes(link)}
onChange={() => handleCheckboxClick(link)}
/>
)}
<Link
2024-02-10 16:49:32 -06:00
href={generateLinkHref(link, account)}
target="_blank"
2024-02-10 16:35:58 -06:00
className="flex items-center cursor-pointer"
2023-12-16 14:06:26 -06:00
>
<div className="shrink-0">
2024-01-15 02:39:53 -06:00
<LinkIcon link={link} width="sm:w-12 w-8 mt-1 sm:mt-0" />
2023-12-16 14:06:26 -06:00
</div>
2023-12-15 21:25:39 -06:00
2023-12-16 14:06:26 -06:00
<div className="w-[calc(100%-56px)] ml-2">
2023-12-23 18:00:53 -06:00
<p className="line-clamp-1 mr-8 text-primary">
2023-12-16 14:06:26 -06:00
{unescapeString(link.name || link.description) || link.url}
</p>
2023-12-15 21:25:39 -06:00
2023-12-16 14:06:26 -06:00
<div className="mt-1 flex flex-col sm:flex-row sm:items-center gap-2 text-xs text-neutral">
2024-01-15 02:39:53 -06:00
<div className="flex items-center gap-x-3 w-fit text-neutral flex-wrap">
2023-12-24 06:30:45 -06:00
{collection ? (
2024-01-15 02:39:53 -06:00
<LinkCollection link={link} collection={collection} />
2023-12-24 06:30:45 -06:00
) : undefined}
2023-12-16 14:06:26 -06:00
{link.url ? (
2024-01-15 02:39:53 -06:00
<div className="flex items-center gap-1 w-fit text-neutral truncate">
<i className="bi-link-45deg text-lg" />
2023-12-20 09:20:06 -06:00
<p className="truncate w-full">{shortendURL}</p>
</div>
2023-12-16 14:06:26 -06:00
) : (
<div className="badge badge-primary badge-sm my-1">
{link.type}
</div>
)}
2024-01-15 02:39:53 -06:00
<LinkDate link={link} />
2023-12-16 14:06:26 -06:00
</div>
2023-12-15 21:25:39 -06:00
</div>
2023-12-15 22:16:56 -06:00
</div>
</Link>
2023-12-16 14:06:26 -06:00
<LinkActions
link={link}
collection={collection}
position="top-3 right-3"
2024-01-19 23:34:49 -06:00
flipDropdown={flipDropdown}
2024-02-10 18:34:25 -06:00
// toggleShowInfo={() => setShowInfo(!showInfo)}
// linkInfo={showInfo}
/>
2023-12-23 18:00:53 -06:00
{showInfo ? (
2023-12-24 06:30:45 -06:00
<div>
<div className="pb-3 mt-1 px-3">
<p className="text-neutral text-lg font-semibold">Description</p>
<hr className="divider my-2 last:hidden border-t border-neutral-content h-[1px]" />
<p>
{link.description ? (
unescapeString(link.description)
) : (
<span className="text-neutral text-sm">
No description provided.
</span>
)}
</p>
2023-12-23 18:00:53 -06:00
{link.tags[0] ? (
2023-12-24 06:30:45 -06:00
<>
<p className="text-neutral text-lg mt-3 font-semibold">
Tags
</p>
<hr className="divider my-2 last:hidden border-t border-neutral-content h-[1px]" />
<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>
2023-12-23 18:00:53 -06:00
</div>
2023-12-24 06:30:45 -06:00
</>
2023-12-23 18:00:53 -06:00
) : undefined}
</div>
</div>
) : undefined}
2023-12-15 21:25:39 -06:00
</div>
2023-12-16 14:06:26 -06:00
<div className="divider my-0 last:hidden h-[1px]"></div>
</>
2023-12-15 21:25:39 -06:00
);
}