import { useState } from "react"; import { CollectionIncludingMembersAndLinkCount, LinkIncludingShortenedCollectionAndTags, } from "@/types/global"; import usePermissions from "@/hooks/usePermissions"; import DeleteLinkModal from "@/components/ModalContent/DeleteLinkModal"; import { dropdownTriggerer } from "@/lib/client/utils"; import { useTranslation } from "next-i18next"; import { useDeleteLink, useGetLink } from "@/hooks/store/links"; import toast from "react-hot-toast"; import LinkModal from "@/components/ModalContent/LinkModal"; import { useRouter } from "next/router"; import clsx from "clsx"; import usePinLink from "@/lib/client/pinLink"; type Props = { link: LinkIncludingShortenedCollectionAndTags; collection: CollectionIncludingMembersAndLinkCount; btnStyle?: string; }; export default function LinkActions({ link, btnStyle }: Props) { const { t } = useTranslation(); const permissions = usePermissions(link.collection.id as number); const getLink = useGetLink(); const pinLink = usePinLink(); const [editLinkModal, setEditLinkModal] = useState(false); const [linkModal, setLinkModal] = useState(false); const [deleteLinkModal, setDeleteLinkModal] = useState(false); const deleteLink = useDeleteLink(); const updateArchive = async () => { const load = toast.loading(t("sending_request")); const response = await fetch(`/api/v1/links/${link?.id}/archive`, { method: "PUT", }); const data = await response.json(); toast.dismiss(load); if (response.ok) { await getLink.mutateAsync({ id: link.id as number }); toast.success(t("link_being_archived")); } else toast.error(data.response); }; const router = useRouter(); const isPublicRoute = router.pathname.startsWith("/public") ? true : false; return ( <> {isPublicRoute ? (