180 lines
6.5 KiB
TypeScript
180 lines
6.5 KiB
TypeScript
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { faEllipsis, faGlobe, faLink } from "@fortawesome/free-solid-svg-icons";
|
|
import Link from "next/link";
|
|
import { CollectionIncludingMembersAndLinkCount } from "@/types/global";
|
|
import Dropdown from "./Dropdown";
|
|
import { useState } from "react";
|
|
import ProfilePhoto from "./ProfilePhoto";
|
|
import { faCalendarDays } from "@fortawesome/free-regular-svg-icons";
|
|
import useModalStore from "@/store/modals";
|
|
import usePermissions from "@/hooks/usePermissions";
|
|
import { useTheme } from "next-themes";
|
|
|
|
type Props = {
|
|
collection: CollectionIncludingMembersAndLinkCount;
|
|
className?: string;
|
|
};
|
|
|
|
type DropdownTrigger =
|
|
| {
|
|
x: number;
|
|
y: number;
|
|
}
|
|
| false;
|
|
|
|
export default function CollectionCard({ collection, className }: Props) {
|
|
const { setModal } = useModalStore();
|
|
|
|
const { theme } = useTheme();
|
|
|
|
const formattedDate = new Date(collection.createdAt as string).toLocaleString(
|
|
"en-US",
|
|
{
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "numeric",
|
|
}
|
|
);
|
|
|
|
const [expandDropdown, setExpandDropdown] = useState<DropdownTrigger>(false);
|
|
|
|
const permissions = usePermissions(collection.id as number);
|
|
|
|
return (
|
|
<>
|
|
<div
|
|
style={{
|
|
backgroundImage: `linear-gradient(45deg, ${collection.color}30 10%, ${
|
|
theme === "dark" ? "#262626" : "#f3f4f6"
|
|
} 50%, ${theme === "dark" ? "#262626" : "#f9fafb"} 100%)`,
|
|
}}
|
|
className={`border border-solid border-sky-100 dark:border-neutral-700 self-stretch min-h-[12rem] rounded-2xl shadow duration-100 hover:shadow-none hover:opacity-80 group relative ${
|
|
className || ""
|
|
}`}
|
|
>
|
|
<div
|
|
onClick={(e) => setExpandDropdown({ x: e.clientX, y: e.clientY })}
|
|
id={"expand-dropdown" + collection.id}
|
|
className="inline-flex absolute top-5 right-5 rounded-md cursor-pointer hover:bg-slate-200 hover:dark:bg-neutral-700 duration-100 p-1"
|
|
>
|
|
<FontAwesomeIcon
|
|
icon={faEllipsis}
|
|
id={"expand-dropdown" + collection.id}
|
|
className="w-5 h-5 text-gray-500 dark:text-gray-300"
|
|
/>
|
|
</div>
|
|
<Link
|
|
href={`/collections/${collection.id}`}
|
|
className="flex flex-col gap-2 justify-between min-h-[12rem] h-full select-none p-5"
|
|
>
|
|
<p className="text-2xl capitalize text-black dark:text-white break-words line-clamp-3 w-4/5">
|
|
{collection.name}
|
|
</p>
|
|
<div className="flex justify-between items-center">
|
|
<div className="flex items-center w-full">
|
|
{collection.members
|
|
.sort((a, b) => (a.userId as number) - (b.userId as number))
|
|
.map((e, i) => {
|
|
return (
|
|
<ProfilePhoto
|
|
key={i}
|
|
src={e.user.image ? e.user.image : undefined}
|
|
className="-mr-3 border-[3px]"
|
|
/>
|
|
);
|
|
})
|
|
.slice(0, 4)}
|
|
{collection.members.length - 4 > 0 ? (
|
|
<div className="h-10 w-10 text-white flex items-center justify-center rounded-full border-[3px] bg-sky-600 dark:bg-sky-600 border-slate-200 dark:border-neutral-700 -mr-3">
|
|
+{collection.members.length - 4}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
<div className="text-right w-40">
|
|
<div className="text-black dark:text-white font-bold text-sm flex justify-end gap-1 items-center">
|
|
{collection.isPublic ? (
|
|
<FontAwesomeIcon
|
|
icon={faGlobe}
|
|
title="This collection is being shared publicly."
|
|
className="w-4 h-4 drop-shadow text-gray-500 dark:text-gray-300"
|
|
/>
|
|
) : undefined}
|
|
<FontAwesomeIcon
|
|
icon={faLink}
|
|
className="w-5 h-5 text-gray-500 dark:text-gray-300"
|
|
/>
|
|
{collection._count && collection._count.links}
|
|
</div>
|
|
<div className="flex items-center justify-end gap-1 text-gray-500 dark:text-gray-300">
|
|
<FontAwesomeIcon icon={faCalendarDays} className="w-4 h-4" />
|
|
<p className="font-bold text-xs">{formattedDate}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
{expandDropdown ? (
|
|
<Dropdown
|
|
points={{ x: expandDropdown.x, y: expandDropdown.y }}
|
|
items={[
|
|
permissions === true
|
|
? {
|
|
name: "Edit Collection Info",
|
|
onClick: () => {
|
|
collection &&
|
|
setModal({
|
|
modal: "COLLECTION",
|
|
state: true,
|
|
method: "UPDATE",
|
|
isOwner: permissions === true,
|
|
active: collection,
|
|
});
|
|
setExpandDropdown(false);
|
|
},
|
|
}
|
|
: undefined,
|
|
{
|
|
name: permissions === true ? "Share/Collaborate" : "View Team",
|
|
onClick: () => {
|
|
collection &&
|
|
setModal({
|
|
modal: "COLLECTION",
|
|
state: true,
|
|
method: "UPDATE",
|
|
isOwner: permissions === true,
|
|
active: collection,
|
|
defaultIndex: permissions === true ? 1 : 0,
|
|
});
|
|
setExpandDropdown(false);
|
|
},
|
|
},
|
|
|
|
{
|
|
name:
|
|
permissions === true ? "Delete Collection" : "Leave Collection",
|
|
onClick: () => {
|
|
collection &&
|
|
setModal({
|
|
modal: "COLLECTION",
|
|
state: true,
|
|
method: "UPDATE",
|
|
isOwner: permissions === true,
|
|
active: collection,
|
|
defaultIndex: permissions === true ? 2 : 1,
|
|
});
|
|
setExpandDropdown(false);
|
|
},
|
|
},
|
|
]}
|
|
onClickOutside={(e: Event) => {
|
|
const target = e.target as HTMLInputElement;
|
|
if (target.id !== "expand-dropdown" + collection.id)
|
|
setExpandDropdown(false);
|
|
}}
|
|
className="w-fit"
|
|
/>
|
|
) : null}
|
|
</>
|
|
);
|
|
}
|