2023-04-07 20:10:55 -05:00
|
|
|
import Dropdown from "@/components/Dropdown";
|
2023-03-05 15:03:20 -06:00
|
|
|
import LinkList from "@/components/LinkList";
|
2023-04-25 07:39:46 -05:00
|
|
|
import Modal from "@/components/Modal";
|
2023-05-27 12:49:09 -05:00
|
|
|
import LinkModal from "@/components/Modal/LinkModal";
|
2023-05-28 00:55:49 -05:00
|
|
|
import CollectionInfo from "@/components/Modal/Collection/CollectionInfo";
|
|
|
|
import DeleteCollection from "@/components/Modal/Collection/DeleteCollection";
|
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-05-26 23:11:29 -05:00
|
|
|
import { CollectionIncludingMembers } 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-05-31 21:43:42 -05:00
|
|
|
import { ChangeEvent, 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-05-28 00:55:49 -05:00
|
|
|
import TeamManagement from "@/components/Modal/Collection/TeamManagement";
|
2023-05-28 17:40:28 -05:00
|
|
|
import SortLinkDropdown from "@/components/SortLinkDropdown";
|
2023-02-24 11:32:28 -06:00
|
|
|
|
|
|
|
export default function () {
|
|
|
|
const router = useRouter();
|
2023-04-07 20:10:55 -05:00
|
|
|
|
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-04-25 07:39:46 -05:00
|
|
|
const [linkModal, setLinkModal] = useState(false);
|
2023-05-28 00:55:49 -05:00
|
|
|
const [collectionInfoModal, setCollectionInfoModal] = useState(false);
|
|
|
|
const [collectionMembersModal, setCollectionMembersModal] = useState(false);
|
2023-04-28 16:10:29 -05:00
|
|
|
const [deleteCollectionModal, setDeleteCollectionModal] = useState(false);
|
2023-05-15 15:45:06 -05:00
|
|
|
const [sortDropdown, setSortDropdown] = useState(false);
|
|
|
|
const [sortBy, setSortBy] = useState("Name (A-Z)");
|
|
|
|
|
2023-04-27 18:13:21 -05:00
|
|
|
const [activeCollection, setActiveCollection] =
|
2023-05-26 23:11:29 -05:00
|
|
|
useState<CollectionIncludingMembers>();
|
2023-05-15 15:45:06 -05:00
|
|
|
|
|
|
|
const [sortedLinks, setSortedLinks] = useState(links);
|
2023-04-07 20:10:55 -05:00
|
|
|
|
2023-04-25 07:39:46 -05:00
|
|
|
const toggleLinkModal = () => {
|
|
|
|
setLinkModal(!linkModal);
|
|
|
|
};
|
|
|
|
|
2023-05-28 00:55:49 -05:00
|
|
|
const toggleCollectionInfoModal = () => {
|
|
|
|
setCollectionInfoModal(!collectionInfoModal);
|
|
|
|
};
|
|
|
|
|
|
|
|
const toggleCollectionMembersModal = () => {
|
|
|
|
setCollectionMembersModal(!collectionMembersModal);
|
2023-04-28 16:10:29 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
const toggleDeleteCollectionModal = () => {
|
|
|
|
setDeleteCollectionModal(!deleteCollectionModal);
|
2023-04-27 18:13:21 -05:00
|
|
|
};
|
|
|
|
|
2023-05-31 21:43:42 -05:00
|
|
|
const handleSortChange = (event: ChangeEvent<HTMLInputElement>) => {
|
|
|
|
setSortBy(event.target.value);
|
|
|
|
};
|
|
|
|
|
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-05-15 15:45:06 -05:00
|
|
|
|
|
|
|
// Sorting logic
|
|
|
|
|
|
|
|
const linksArray = [
|
|
|
|
...links.filter((e) => e.collection.id === Number(router.query.id)),
|
|
|
|
];
|
|
|
|
|
|
|
|
if (sortBy === "Name (A-Z)")
|
|
|
|
setSortedLinks(linksArray.sort((a, b) => a.name.localeCompare(b.name)));
|
|
|
|
else if (sortBy === "Title (A-Z)")
|
|
|
|
setSortedLinks(linksArray.sort((a, b) => a.title.localeCompare(b.title)));
|
|
|
|
else if (sortBy === "Name (Z-A)")
|
|
|
|
setSortedLinks(linksArray.sort((a, b) => b.name.localeCompare(a.name)));
|
|
|
|
else if (sortBy === "Title (Z-A)")
|
|
|
|
setSortedLinks(linksArray.sort((a, b) => b.title.localeCompare(a.title)));
|
|
|
|
else if (sortBy === "Date (Newest First)")
|
|
|
|
setSortedLinks(
|
|
|
|
linksArray.sort(
|
|
|
|
(a, b) =>
|
2023-05-27 11:53:02 -05:00
|
|
|
new Date(b.createdAt as string).getTime() -
|
|
|
|
new Date(a.createdAt as string).getTime()
|
2023-05-15 15:45:06 -05:00
|
|
|
)
|
|
|
|
);
|
|
|
|
else if (sortBy === "Date (Oldest First)")
|
|
|
|
setSortedLinks(
|
|
|
|
linksArray.sort(
|
|
|
|
(a, b) =>
|
2023-05-27 11:53:02 -05:00
|
|
|
new Date(a.createdAt as string).getTime() -
|
|
|
|
new Date(b.createdAt as string).getTime()
|
2023-05-15 15:45:06 -05:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}, [links, router, collections, sortBy]);
|
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-04-30 15:54:40 -05:00
|
|
|
<div className="p-5 flex flex-col gap-5 w-full">
|
2023-05-31 13:33:01 -05:00
|
|
|
<div className="bg-gradient-to-tr from-sky-100 from-10% via-gray-100 via-20% rounded-xl shadow min-h-[10rem] p-5 flex gap-5 flex-col justify-between">
|
2023-05-26 14:52:18 -05:00
|
|
|
<div className="flex flex-col sm:flex-row gap-3 justify-between items-center sm:items-start">
|
2023-06-02 06:59:52 -05:00
|
|
|
{activeCollection ? (
|
|
|
|
<div className="flex gap-3 items-center">
|
|
|
|
<div className="flex gap-2">
|
|
|
|
<FontAwesomeIcon
|
|
|
|
icon={faFolder}
|
|
|
|
style={{ color: activeCollection?.color }}
|
2023-06-02 22:21:53 -05:00
|
|
|
className="sm:w-8 sm:h-8 w-6 h-6 mt-2 drop-shadow"
|
2023-06-02 06:59:52 -05:00
|
|
|
/>
|
|
|
|
<p className="sm:text-4xl text-3xl capitalize bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold">
|
|
|
|
{activeCollection?.name}
|
|
|
|
</p>
|
|
|
|
</div>
|
2023-05-15 15:45:06 -05:00
|
|
|
</div>
|
2023-06-02 06:59:52 -05:00
|
|
|
) : null}
|
2023-05-15 15:45:06 -05:00
|
|
|
|
2023-05-27 14:05:07 -05:00
|
|
|
{activeCollection ? (
|
|
|
|
<div
|
|
|
|
className={`text-sky-400 w-60 ${
|
|
|
|
activeCollection.members[0] && "mr-3"
|
|
|
|
}`}
|
|
|
|
>
|
2023-05-28 00:55:49 -05:00
|
|
|
<div
|
|
|
|
onClick={toggleCollectionMembersModal}
|
2023-05-31 21:43:42 -05:00
|
|
|
className="flex justify-center sm:justify-end items-center w-fit mx-auto sm:mr-0 sm:ml-auto group cursor-pointer"
|
2023-05-28 00:55:49 -05:00
|
|
|
>
|
2023-05-27 14:05:07 -05:00
|
|
|
<div
|
|
|
|
className={`bg-sky-500 p-2 leading-3 select-none group-hover:bg-sky-400 duration-100 text-white rounded-full text-xs ${
|
|
|
|
activeCollection.members[0] && "mr-1"
|
|
|
|
}`}
|
|
|
|
>
|
2023-05-26 14:52:18 -05:00
|
|
|
{activeCollection.ownerId === data?.user.id
|
|
|
|
? "Manage"
|
|
|
|
: "View"}{" "}
|
|
|
|
Team
|
2023-05-25 13:44:08 -05:00
|
|
|
</div>
|
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}
|
|
|
|
src={`/api/avatar/${e.userId}`}
|
2023-05-28 12:22:01 -05:00
|
|
|
className="-mr-3 duration-100"
|
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 ? (
|
|
|
|
<div className="h-10 w-10 text-white flex items-center justify-center rounded-full border-[3px] bg-sky-500 border-sky-100 -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-05-25 13:44:08 -05:00
|
|
|
<div className="text-gray-500 flex justify-between items-end gap-5">
|
|
|
|
<p>{activeCollection?.description}</p>
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<div className="relative">
|
|
|
|
<div
|
|
|
|
onClick={() => setSortDropdown(!sortDropdown)}
|
|
|
|
id="sort-dropdown"
|
2023-05-31 13:33:01 -05:00
|
|
|
className="inline-flex rounded-md cursor-pointer hover:bg-slate-200 duration-100 p-1"
|
2023-05-25 13:44:08 -05:00
|
|
|
>
|
|
|
|
<FontAwesomeIcon
|
|
|
|
icon={faSort}
|
|
|
|
id="sort-dropdown"
|
|
|
|
className="w-5 h-5 text-gray-500"
|
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-05-28 17:40:28 -05:00
|
|
|
<SortLinkDropdown
|
2023-05-31 21:43:42 -05:00
|
|
|
handleSortChange={handleSortChange}
|
2023-05-28 17:40:28 -05:00
|
|
|
sortBy={sortBy}
|
|
|
|
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-05-31 13:33:01 -05:00
|
|
|
className="inline-flex rounded-md cursor-pointer hover:bg-slate-200 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"
|
|
|
|
className="w-5 h-5 text-gray-500"
|
2023-05-15 15:45:06 -05:00
|
|
|
/>
|
|
|
|
</div>
|
2023-05-25 13:44:08 -05:00
|
|
|
{expandDropdown ? (
|
|
|
|
<Dropdown
|
|
|
|
items={[
|
|
|
|
{
|
|
|
|
name: "Add Link Here",
|
|
|
|
onClick: () => {
|
|
|
|
toggleLinkModal();
|
|
|
|
setExpandDropdown(false);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2023-05-28 00:55:49 -05:00
|
|
|
name: "Edit Collection Info",
|
2023-05-27 22:21:35 -05:00
|
|
|
onClick: () => {
|
2023-05-28 00:55:49 -05:00
|
|
|
toggleCollectionInfoModal();
|
2023-05-27 22:21:35 -05:00
|
|
|
setExpandDropdown(false);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2023-05-28 00:55:49 -05:00
|
|
|
name: "Share/Collaborate",
|
2023-05-25 13:44:08 -05:00
|
|
|
onClick: () => {
|
2023-05-28 00:55:49 -05:00
|
|
|
toggleCollectionMembersModal();
|
2023-05-25 13:44:08 -05:00
|
|
|
setExpandDropdown(false);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Delete Collection",
|
|
|
|
onClick: () => {
|
|
|
|
toggleDeleteCollectionModal();
|
|
|
|
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-05-28 00:55:49 -05:00
|
|
|
className="absolute top-8 right-0 z-10 w-40"
|
2023-05-25 13:44:08 -05:00
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
|
|
|
|
{linkModal ? (
|
|
|
|
<Modal toggleModal={toggleLinkModal}>
|
2023-05-27 12:49:09 -05:00
|
|
|
<LinkModal
|
|
|
|
toggleLinkModal={toggleLinkModal}
|
|
|
|
method="CREATE"
|
|
|
|
/>
|
2023-05-25 13:44:08 -05:00
|
|
|
</Modal>
|
|
|
|
) : null}
|
|
|
|
|
2023-05-28 00:55:49 -05:00
|
|
|
{collectionInfoModal && activeCollection ? (
|
|
|
|
<Modal toggleModal={toggleCollectionInfoModal}>
|
|
|
|
<CollectionInfo
|
|
|
|
toggleCollectionModal={toggleCollectionInfoModal}
|
2023-05-26 23:11:29 -05:00
|
|
|
activeCollection={activeCollection}
|
2023-05-26 23:29:45 -05:00
|
|
|
method="UPDATE"
|
2023-05-25 13:44:08 -05:00
|
|
|
/>
|
|
|
|
</Modal>
|
|
|
|
) : null}
|
|
|
|
|
2023-05-28 00:55:49 -05:00
|
|
|
{collectionMembersModal && activeCollection ? (
|
|
|
|
<Modal toggleModal={toggleCollectionMembersModal}>
|
|
|
|
<TeamManagement
|
|
|
|
toggleCollectionModal={toggleCollectionMembersModal}
|
|
|
|
activeCollection={activeCollection}
|
|
|
|
/>
|
|
|
|
</Modal>
|
|
|
|
) : null}
|
|
|
|
|
2023-05-25 13:44:08 -05:00
|
|
|
{deleteCollectionModal && activeCollection ? (
|
|
|
|
<Modal toggleModal={toggleDeleteCollectionModal}>
|
|
|
|
<DeleteCollection
|
|
|
|
collection={activeCollection}
|
|
|
|
toggleDeleteCollectionModal={toggleDeleteCollectionModal}
|
|
|
|
/>
|
|
|
|
</Modal>
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-30 15:54:40 -05:00
|
|
|
</div>
|
2023-04-07 20:10:55 -05:00
|
|
|
</div>
|
2023-05-25 09:17:20 -05:00
|
|
|
<div className="grid 2xl:grid-cols-3 xl:grid-cols-2 gap-5">
|
|
|
|
{sortedLinks.map((e, i) => {
|
|
|
|
return <LinkList key={i} link={e} count={i} />;
|
|
|
|
})}
|
|
|
|
</div>
|
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
|
|
|
}
|