// Copyright (C) 2022-present Daniel31x13 // This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. // This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. // You should have received a copy of the GNU General Public License along with this program. If not, see . import Dropdown from "@/components/Dropdown"; import LinkList from "@/components/LinkList"; import Modal from "@/components/Modal"; import LinkModal from "@/components/Modal/LinkModal"; import CollectionModal from "@/components/Modal/CollectionModal"; import DeleteCollection from "@/components/Modal/DeleteCollection"; import useCollectionStore from "@/store/collections"; import useLinkStore from "@/store/links"; import { CollectionIncludingMembers } from "@/types/global"; import { faAdd, faEllipsis, faFolder, faPenToSquare, faSort, faTrashCan, faUser, } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { useRouter } from "next/router"; import { ChangeEvent, useEffect, useState } from "react"; import MainLayout from "@/layouts/MainLayout"; import RadioButton from "@/components/RadioButton"; import ClickAwayHandler from "@/components/ClickAwayHandler"; import ImageWithFallback from "@/components/ImageWithFallback"; import { useSession } from "next-auth/react"; export default function () { const router = useRouter(); const { links } = useLinkStore(); const { collections } = useCollectionStore(); const { data } = useSession(); const [expandDropdown, setExpandDropdown] = useState(false); const [linkModal, setLinkModal] = useState(false); const [editCollectionModal, setEditCollectionModal] = useState(false); const [deleteCollectionModal, setDeleteCollectionModal] = useState(false); const [sortDropdown, setSortDropdown] = useState(false); const [sortBy, setSortBy] = useState("Name (A-Z)"); const [activeCollection, setActiveCollection] = useState(); const [sortedLinks, setSortedLinks] = useState(links); const toggleLinkModal = () => { setLinkModal(!linkModal); }; const toggleEditCollectionModal = () => { setEditCollectionModal(!editCollectionModal); }; const toggleDeleteCollectionModal = () => { setDeleteCollectionModal(!deleteCollectionModal); }; const handleSortChange = (event: ChangeEvent) => { setSortBy(event.target.value); }; useEffect(() => { setActiveCollection( collections.find((e) => e.id === Number(router.query.id)) ); // 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) => new Date(b.createdAt as string).getTime() - new Date(a.createdAt as string).getTime() ) ); else if (sortBy === "Date (Oldest First)") setSortedLinks( linksArray.sort( (a, b) => new Date(a.createdAt as string).getTime() - new Date(b.createdAt as string).getTime() ) ); }, [links, router, collections, sortBy]); return (

{activeCollection?.name}

{activeCollection?.members[0] ? (
{activeCollection.ownerId === data?.user.id ? "Manage" : "View"}{" "} Team
{activeCollection?.members .sort( (a, b) => (a.user.id as number) - (b.user.id as number) ) .map((e, i) => { return (
); }) .slice(0, 4)} {activeCollection?.members.length && activeCollection.members.length - 4 > 0 ? (
+{activeCollection?.members?.length - 4}
) : null}
) : null}

{activeCollection?.description}

setSortDropdown(!sortDropdown)} id="sort-dropdown" className="inline-flex rounded-md cursor-pointer hover:bg-white hover:border-sky-500 border-sky-100 border duration-100 p-1" >
{sortDropdown ? ( { const target = e.target as HTMLInputElement; if (target.id !== "sort-dropdown") setSortDropdown(false); }} className="absolute top-8 right-0 shadow-md bg-gray-50 rounded-md p-2 z-10 border border-sky-100 w-48" >

Sort by

) : null}
setExpandDropdown(!expandDropdown)} id="edit-dropdown" className="inline-flex rounded-md cursor-pointer hover:bg-white hover:border-sky-500 border-sky-100 border duration-100 p-1" >
{expandDropdown ? ( , onClick: () => { toggleLinkModal(); setExpandDropdown(false); }, }, { name: "Edit Collection", icon: , onClick: () => { toggleEditCollectionModal(); setExpandDropdown(false); }, }, { name: "Delete Collection", icon: , onClick: () => { toggleDeleteCollectionModal(); setExpandDropdown(false); }, }, ]} onClickOutside={(e: Event) => { const target = e.target as HTMLInputElement; if (target.id !== "edit-dropdown") setExpandDropdown(false); }} className="absolute top-8 right-0 z-10 w-44" /> ) : null} {linkModal ? ( ) : null} {editCollectionModal && activeCollection ? ( ) : null} {deleteCollectionModal && activeCollection ? ( ) : null}
{sortedLinks.map((e, i) => { return ; })}
); }