changes to the link listing pages

This commit is contained in:
Daniel 2023-04-08 04:40:55 +03:30
parent 94be799586
commit e2f062388a
4 changed files with 75 additions and 9 deletions

View File

@ -70,7 +70,7 @@ export default function AddLink({ toggleLinkModal }: Props) {
if (response) toggleLinkModal();
};
return (
<div className="flex flex-col gap-3">
<div className="flex flex-col gap-3 sm:w-96 w-80">
<p className="font-bold text-sky-300 mb-2 text-center">New Link</p>
<div className="flex gap-5 items-center justify-between">

View File

@ -41,10 +41,10 @@ export default function EditLink({ toggleLinkModal, link }: Props) {
};
return (
<div className="flex flex-col gap-3">
<div className="flex flex-col gap-3 sm:w-96 w-80">
<p className="font-bold text-sky-300 mb-2 text-center">Edit Link</p>
<p className="text-sky-700">
{shortendURL} | {link.title}
<b>{shortendURL}</b> | {link.title}
</p>
<div className="flex gap-5 items-center justify-between">
<p className="text-sm font-bold text-sky-300">Name</p>

View File

@ -27,8 +27,6 @@ export default async function (req: NextApiRequest, res: NextApiResponse) {
response: deleted.response,
});
} else if (req.method === "PUT") {
console.log("AAAAAAAAAAAAAAAAAAAAAAaa");
const updated = await updateLink(req.body, session.user.id);
return res.status(updated.status).json({
response: updated.response,

View File

@ -1,18 +1,86 @@
import Dropdown from "@/components/Dropdown";
import LinkList from "@/components/LinkList";
import useCollectionStore from "@/store/collections";
import useLinkStore from "@/store/links";
import { ExtendedLink } from "@/types/global";
import {
faAdd,
faEllipsis,
faFolder,
faPenToSquare,
faTrashCan,
} from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { Collection } from "@prisma/client";
import { useRouter } from "next/router";
import { useEffect, useState } from "react";
export default function () {
const router = useRouter();
const { links } = useLinkStore();
const linksByCollection = links.filter(
(e) => e.collectionId === Number(router.query.id)
const { links } = useLinkStore();
const { collections } = useCollectionStore();
const [editDropdown, setEditDropdown] = useState(false);
const [activeCollection, setActiveCollection] = useState<Collection>();
const [linksByCollection, setLinksByCollection] =
useState<ExtendedLink[]>(links);
useEffect(() => {
setLinksByCollection(
links.filter((e) => e.collection.id === Number(router.query.id))
);
setActiveCollection(
collections.find((e) => e.id === Number(router.query.id))
);
}, [links, router, collections]);
return (
// ml-80
<div className="p-5 flex flex-col gap-5 w-full">
<div className="flex gap-3 items-center">
<div className="flex gap-2 items-center">
<FontAwesomeIcon icon={faFolder} className="w-5 h-5 text-sky-300" />
<p className="text-lg text-sky-900">{activeCollection?.name}</p>
</div>
<div className="relative">
<div
onClick={() => setEditDropdown(!editDropdown)}
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"
>
<FontAwesomeIcon
icon={faEllipsis}
id="edit-dropdown"
className="w-4 h-4 text-gray-500"
/>
</div>
{editDropdown ? (
<Dropdown
items={[
{
name: "Add Link Here",
icon: <FontAwesomeIcon icon={faAdd} />,
},
{
name: "Edit Collection",
icon: <FontAwesomeIcon icon={faPenToSquare} />,
},
{
name: "Delete Collection",
icon: <FontAwesomeIcon icon={faTrashCan} />,
},
]}
onClickOutside={(e: Event) => {
const target = e.target as HTMLInputElement;
if (target.id !== "edit-dropdown") setEditDropdown(false);
}}
className="absolute top-7 left-0 z-10 w-44"
/>
) : null}
</div>
</div>
{linksByCollection.map((e, i) => {
return <LinkList key={i} link={e} count={i} />;
})}