2023-04-07 20:10:55 -05:00
|
|
|
import Dropdown from "@/components/Dropdown";
|
2023-06-05 15:47:01 -05:00
|
|
|
import LinkCard from "@/components/LinkCard";
|
2023-04-07 20:10:55 -05:00
|
|
|
import useCollectionStore from "@/store/collections";
|
2023-03-22 18:11:54 -05:00
|
|
|
import useLinkStore from "@/store/links";
|
2023-06-16 07:55:21 -05:00
|
|
|
import { CollectionIncludingMembersAndLinkCount, Sort } from "@/types/global";
|
2023-04-07 20:10:55 -05:00
|
|
|
import {
|
|
|
|
faEllipsis,
|
|
|
|
faFolder,
|
2023-05-15 15:45:06 -05:00
|
|
|
faSort,
|
2023-04-07 20:10:55 -05:00
|
|
|
} from "@fortawesome/free-solid-svg-icons";
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
2023-02-24 11:32:28 -06:00
|
|
|
import { useRouter } from "next/router";
|
2023-06-13 21:44:50 -05:00
|
|
|
import { useEffect, useState } from "react";
|
2023-05-14 10:41:08 -05:00
|
|
|
import MainLayout from "@/layouts/MainLayout";
|
2023-05-26 14:52:18 -05:00
|
|
|
import { useSession } from "next-auth/react";
|
2023-05-27 14:05:07 -05:00
|
|
|
import ProfilePhoto from "@/components/ProfilePhoto";
|
2023-06-13 23:40:23 -05:00
|
|
|
import SortDropdown from "@/components/SortDropdown";
|
2023-06-12 23:46:32 -05:00
|
|
|
import useModalStore from "@/store/modals";
|
2023-06-14 17:34:54 -05:00
|
|
|
import useLinks from "@/hooks/useLinks";
|
2023-06-22 09:35:02 -05:00
|
|
|
import usePermissions from "@/hooks/usePermissions";
|
2023-07-19 16:49:54 -05:00
|
|
|
import NoLinksFound from "@/components/NoLinksFound";
|
2023-10-09 07:35:33 -05:00
|
|
|
import { useTheme } from "next-themes";
|
2023-02-24 11:32:28 -06:00
|
|
|
|
2023-06-09 17:31:14 -05:00
|
|
|
export default function Index() {
|
2023-06-12 23:46:32 -05:00
|
|
|
const { setModal } = useModalStore();
|
|
|
|
|
2023-02-24 11:32:28 -06:00
|
|
|
const router = useRouter();
|
2023-04-07 20:10:55 -05:00
|
|
|
|
2023-10-09 07:35:33 -05:00
|
|
|
const { theme } = useTheme();
|
|
|
|
|
2023-03-22 18:11:54 -05:00
|
|
|
const { links } = useLinkStore();
|
2023-04-07 20:10:55 -05:00
|
|
|
const { collections } = useCollectionStore();
|
2023-02-24 11:32:28 -06:00
|
|
|
|
2023-05-26 14:52:18 -05:00
|
|
|
const { data } = useSession();
|
|
|
|
|
2023-04-23 08:26:39 -05:00
|
|
|
const [expandDropdown, setExpandDropdown] = useState(false);
|
2023-05-15 15:45:06 -05:00
|
|
|
const [sortDropdown, setSortDropdown] = useState(false);
|
2023-06-14 17:34:54 -05:00
|
|
|
const [sortBy, setSortBy] = useState<Sort>(Sort.DateNewestFirst);
|
2023-05-15 15:45:06 -05:00
|
|
|
|
2023-04-27 18:13:21 -05:00
|
|
|
const [activeCollection, setActiveCollection] =
|
2023-06-16 07:55:21 -05:00
|
|
|
useState<CollectionIncludingMembersAndLinkCount>();
|
2023-05-15 15:45:06 -05:00
|
|
|
|
2023-06-22 09:35:02 -05:00
|
|
|
const permissions = usePermissions(activeCollection?.id as number);
|
|
|
|
|
2023-06-14 17:34:54 -05:00
|
|
|
useLinks({ collectionId: Number(router.query.id), sort: sortBy });
|
2023-05-31 21:43:42 -05:00
|
|
|
|
2023-05-15 15:45:06 -05:00
|
|
|
useEffect(() => {
|
2023-04-07 20:10:55 -05:00
|
|
|
setActiveCollection(
|
|
|
|
collections.find((e) => e.id === Number(router.query.id))
|
|
|
|
);
|
2023-06-13 23:40:23 -05:00
|
|
|
}, [router, collections]);
|
2023-02-24 11:32:28 -06:00
|
|
|
|
2023-03-05 15:03:20 -06:00
|
|
|
return (
|
2023-05-14 10:41:08 -05:00
|
|
|
<MainLayout>
|
2023-10-23 09:45:48 -05:00
|
|
|
<div className="p-5 flex flex-col gap-5 w-full h-full">
|
2023-10-09 07:35:33 -05:00
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
backgroundImage: `linear-gradient(-45deg, ${
|
|
|
|
activeCollection?.color
|
|
|
|
}30 10%, ${theme === "dark" ? "#262626" : "#f3f4f6"} 50%, ${
|
|
|
|
theme === "dark" ? "#262626" : "#f9fafb"
|
|
|
|
} 100%)`,
|
|
|
|
}}
|
|
|
|
className="border border-solid border-sky-100 dark:border-neutral-700 rounded-2xl shadow min-h-[10rem] p-5 flex gap-5 flex-col justify-between"
|
|
|
|
>
|
|
|
|
<div className="flex flex-col sm:flex-row gap-3 justify-between sm:items-start">
|
2023-06-12 13:23:11 -05:00
|
|
|
{activeCollection && (
|
2023-06-02 06:59:52 -05:00
|
|
|
<div className="flex gap-3 items-center">
|
|
|
|
<div className="flex gap-2">
|
|
|
|
<FontAwesomeIcon
|
|
|
|
icon={faFolder}
|
|
|
|
style={{ color: activeCollection?.color }}
|
2023-06-12 13:23:11 -05:00
|
|
|
className="sm:w-8 sm:h-8 w-6 h-6 mt-3 drop-shadow"
|
2023-06-02 06:59:52 -05:00
|
|
|
/>
|
2023-08-14 22:25:25 -05:00
|
|
|
<p className="sm:text-4xl text-3xl capitalize text-black dark:text-white w-full py-1 break-words hyphens-auto">
|
2023-06-02 06:59:52 -05:00
|
|
|
{activeCollection?.name}
|
|
|
|
</p>
|
|
|
|
</div>
|
2023-05-15 15:45:06 -05:00
|
|
|
</div>
|
2023-06-12 13:23:11 -05:00
|
|
|
)}
|
2023-05-15 15:45:06 -05:00
|
|
|
|
2023-05-27 14:05:07 -05:00
|
|
|
{activeCollection ? (
|
|
|
|
<div
|
2023-07-22 16:49:09 -05:00
|
|
|
className={`min-w-[15rem] ${
|
2023-05-27 14:05:07 -05:00
|
|
|
activeCollection.members[0] && "mr-3"
|
|
|
|
}`}
|
|
|
|
>
|
2023-05-28 00:55:49 -05:00
|
|
|
<div
|
2023-06-12 23:46:32 -05:00
|
|
|
onClick={() =>
|
|
|
|
setModal({
|
|
|
|
modal: "COLLECTION",
|
|
|
|
state: true,
|
|
|
|
method: "UPDATE",
|
2023-06-22 09:35:02 -05:00
|
|
|
isOwner: permissions === true,
|
2023-06-12 23:46:32 -05:00
|
|
|
active: activeCollection,
|
2023-06-22 09:35:02 -05:00
|
|
|
defaultIndex: permissions === true ? 1 : 0,
|
2023-06-12 23:46:32 -05:00
|
|
|
})
|
|
|
|
}
|
2023-10-09 07:35:33 -05:00
|
|
|
className="hover:opacity-80 duration-100 flex justify-center sm:justify-end items-center w-fit sm:mr-0 sm:ml-auto cursor-pointer"
|
2023-05-28 00:55:49 -05:00
|
|
|
>
|
2023-05-25 13:45:54 -05:00
|
|
|
{activeCollection?.members
|
2023-05-28 00:55:49 -05:00
|
|
|
.sort((a, b) => (a.userId as number) - (b.userId as number))
|
2023-05-25 13:45:54 -05:00
|
|
|
.map((e, i) => {
|
|
|
|
return (
|
2023-05-27 14:05:07 -05:00
|
|
|
<ProfilePhoto
|
2023-05-25 13:45:54 -05:00
|
|
|
key={i}
|
2023-10-22 23:28:39 -05:00
|
|
|
src={`/api/v1/avatar/${e.userId}?${Date.now()}`}
|
2023-10-09 07:35:33 -05:00
|
|
|
className="-mr-3 border-[3px]"
|
2023-05-27 14:05:07 -05:00
|
|
|
/>
|
2023-05-25 13:45:54 -05:00
|
|
|
);
|
|
|
|
})
|
|
|
|
.slice(0, 4)}
|
|
|
|
{activeCollection?.members.length &&
|
|
|
|
activeCollection.members.length - 4 > 0 ? (
|
2023-09-05 13:12:27 -05:00
|
|
|
<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">
|
2023-05-26 14:52:18 -05:00
|
|
|
+{activeCollection?.members?.length - 4}
|
2023-05-25 13:45:54 -05:00
|
|
|
</div>
|
|
|
|
) : null}
|
|
|
|
</div>
|
2023-05-25 13:44:08 -05:00
|
|
|
</div>
|
2023-05-25 13:45:54 -05:00
|
|
|
) : null}
|
2023-05-25 13:44:08 -05:00
|
|
|
</div>
|
2023-05-15 15:45:06 -05:00
|
|
|
|
2023-08-15 20:29:38 -05:00
|
|
|
<div className="text-black dark:text-white flex justify-between items-end gap-5">
|
2023-05-25 13:44:08 -05:00
|
|
|
<p>{activeCollection?.description}</p>
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<div className="relative">
|
|
|
|
<div
|
|
|
|
onClick={() => setSortDropdown(!sortDropdown)}
|
|
|
|
id="sort-dropdown"
|
2023-10-09 07:35:33 -05:00
|
|
|
className="inline-flex rounded-md cursor-pointer hover:bg-black hover:dark:bg-white hover:bg-opacity-10 hover:dark:bg-opacity-10 duration-100 p-1"
|
2023-05-25 13:44:08 -05:00
|
|
|
>
|
|
|
|
<FontAwesomeIcon
|
|
|
|
icon={faSort}
|
|
|
|
id="sort-dropdown"
|
2023-08-22 17:34:46 -05:00
|
|
|
className="w-5 h-5 text-gray-500 dark:text-gray-300"
|
2023-05-15 15:45:06 -05:00
|
|
|
/>
|
2023-05-25 13:44:08 -05:00
|
|
|
</div>
|
2023-04-25 07:39:46 -05:00
|
|
|
|
2023-05-25 13:44:08 -05:00
|
|
|
{sortDropdown ? (
|
2023-06-13 23:40:23 -05:00
|
|
|
<SortDropdown
|
2023-05-28 17:40:28 -05:00
|
|
|
sortBy={sortBy}
|
2023-06-13 23:40:23 -05:00
|
|
|
setSort={setSortBy}
|
2023-05-28 17:40:28 -05:00
|
|
|
toggleSortDropdown={() => setSortDropdown(!sortDropdown)}
|
|
|
|
/>
|
2023-05-25 13:44:08 -05:00
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
<div className="relative">
|
|
|
|
<div
|
|
|
|
onClick={() => setExpandDropdown(!expandDropdown)}
|
2023-05-27 22:21:35 -05:00
|
|
|
id="expand-dropdown"
|
2023-10-09 07:35:33 -05:00
|
|
|
className="inline-flex rounded-md cursor-pointer hover:bg-black hover:dark:bg-white hover:bg-opacity-10 hover:dark:bg-opacity-10 duration-100 p-1"
|
2023-05-25 13:44:08 -05:00
|
|
|
>
|
|
|
|
<FontAwesomeIcon
|
|
|
|
icon={faEllipsis}
|
2023-05-27 22:21:35 -05:00
|
|
|
id="expand-dropdown"
|
2023-05-25 13:44:08 -05:00
|
|
|
title="More"
|
2023-08-22 17:34:46 -05:00
|
|
|
className="w-5 h-5 text-gray-500 dark:text-gray-300"
|
2023-05-15 15:45:06 -05:00
|
|
|
/>
|
|
|
|
</div>
|
2023-05-25 13:44:08 -05:00
|
|
|
{expandDropdown ? (
|
|
|
|
<Dropdown
|
|
|
|
items={[
|
2023-06-22 09:35:02 -05:00
|
|
|
permissions === true
|
|
|
|
? {
|
|
|
|
name: "Edit Collection Info",
|
|
|
|
onClick: () => {
|
|
|
|
activeCollection &&
|
|
|
|
setModal({
|
|
|
|
modal: "COLLECTION",
|
|
|
|
state: true,
|
|
|
|
method: "UPDATE",
|
|
|
|
isOwner: permissions === true,
|
|
|
|
active: activeCollection,
|
|
|
|
});
|
|
|
|
setExpandDropdown(false);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
: undefined,
|
2023-05-25 13:44:08 -05:00
|
|
|
{
|
2023-06-22 09:35:02 -05:00
|
|
|
name:
|
|
|
|
permissions === true
|
|
|
|
? "Share/Collaborate"
|
|
|
|
: "View Team",
|
2023-05-25 13:44:08 -05:00
|
|
|
onClick: () => {
|
2023-06-12 23:46:32 -05:00
|
|
|
activeCollection &&
|
|
|
|
setModal({
|
|
|
|
modal: "COLLECTION",
|
|
|
|
state: true,
|
|
|
|
method: "UPDATE",
|
2023-06-22 09:35:02 -05:00
|
|
|
isOwner: permissions === true,
|
2023-06-12 23:46:32 -05:00
|
|
|
active: activeCollection,
|
2023-06-24 08:17:24 -05:00
|
|
|
defaultIndex: permissions === true ? 1 : 0,
|
2023-06-12 23:46:32 -05:00
|
|
|
});
|
2023-05-25 13:44:08 -05:00
|
|
|
setExpandDropdown(false);
|
|
|
|
},
|
|
|
|
},
|
2023-06-22 09:35:02 -05:00
|
|
|
|
2023-05-25 13:44:08 -05:00
|
|
|
{
|
2023-06-22 09:35:02 -05:00
|
|
|
name:
|
|
|
|
permissions === true
|
|
|
|
? "Delete Collection"
|
|
|
|
: "Leave Collection",
|
2023-05-25 13:44:08 -05:00
|
|
|
onClick: () => {
|
2023-06-12 23:46:32 -05:00
|
|
|
activeCollection &&
|
|
|
|
setModal({
|
|
|
|
modal: "COLLECTION",
|
|
|
|
state: true,
|
|
|
|
method: "UPDATE",
|
2023-06-22 09:35:02 -05:00
|
|
|
isOwner: permissions === true,
|
2023-06-12 23:46:32 -05:00
|
|
|
active: activeCollection,
|
2023-06-22 09:35:02 -05:00
|
|
|
defaultIndex: permissions === true ? 2 : 1,
|
2023-06-12 23:46:32 -05:00
|
|
|
});
|
2023-05-25 13:44:08 -05:00
|
|
|
setExpandDropdown(false);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
onClickOutside={(e: Event) => {
|
|
|
|
const target = e.target as HTMLInputElement;
|
2023-05-27 22:21:35 -05:00
|
|
|
if (target.id !== "expand-dropdown")
|
2023-05-25 13:44:08 -05:00
|
|
|
setExpandDropdown(false);
|
|
|
|
}}
|
2023-10-23 00:55:44 -05:00
|
|
|
className="absolute top-8 right-0 z-10 w-fit"
|
2023-05-25 13:44:08 -05:00
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-30 15:54:40 -05:00
|
|
|
</div>
|
2023-04-07 20:10:55 -05:00
|
|
|
</div>
|
2023-10-03 06:04:13 -05:00
|
|
|
{links.some((e) => e.collectionId === Number(router.query.id)) ? (
|
2023-07-24 06:25:15 -05:00
|
|
|
<div className="grid grid-cols-1 2xl:grid-cols-3 xl:grid-cols-2 gap-5">
|
2023-10-16 12:10:52 -05:00
|
|
|
{links.map((e, i) => {
|
|
|
|
return <LinkCard key={i} link={e} count={i} />;
|
|
|
|
})}
|
2023-07-19 16:49:54 -05:00
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<NoLinksFound />
|
|
|
|
)}
|
2023-04-07 20:10:55 -05:00
|
|
|
</div>
|
2023-05-14 10:41:08 -05:00
|
|
|
</MainLayout>
|
2023-03-05 15:03:20 -06:00
|
|
|
);
|
2023-02-24 11:32:28 -06:00
|
|
|
}
|