changes + improvements
This commit is contained in:
parent
fd0f6e035d
commit
fdbe2e0d9f
|
@ -24,7 +24,7 @@ export default function Dropdown({ onClickOutside, className, items }: Props) {
|
||||||
return (
|
return (
|
||||||
<ClickAwayHandler
|
<ClickAwayHandler
|
||||||
onClickOutside={onClickOutside}
|
onClickOutside={onClickOutside}
|
||||||
className={`${className} py-1 shadow-md border border-sky-100 bg-gray-50 rounded-md flex flex-col z-10`}
|
className={`${className} py-1 shadow-md border border-sky-100 bg-gray-50 rounded-md flex flex-col z-20`}
|
||||||
>
|
>
|
||||||
{items.map((e, i) => {
|
{items.map((e, i) => {
|
||||||
const inner = (
|
const inner = (
|
||||||
|
|
|
@ -194,11 +194,9 @@ export default function LinkDetails({ link }: Props) {
|
||||||
</div>
|
</div>
|
||||||
{link.description && (
|
{link.description && (
|
||||||
<>
|
<>
|
||||||
<hr className="my-3" />
|
<div className="text-gray-500 max-h-[20rem] my-3 rounded-md overflow-y-auto hyphens-auto">
|
||||||
<div className="text-sky-900 max-h-[20rem] rounded-md overflow-y-auto hyphens-auto">
|
|
||||||
{link.description}
|
{link.description}
|
||||||
</div>
|
</div>
|
||||||
<hr className="my-3" />
|
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
import Navbar from "@/components/Navbar";
|
import Navbar from "@/components/Navbar";
|
||||||
import Sidebar from "@/components/Sidebar";
|
import Sidebar from "@/components/Sidebar";
|
||||||
import { ReactNode } from "react";
|
import { ReactNode, useEffect } from "react";
|
||||||
import { useSession } from "next-auth/react";
|
import { useSession } from "next-auth/react";
|
||||||
import Loader from "../components/Loader";
|
import Loader from "../components/Loader";
|
||||||
import useRedirect from "@/hooks/useRedirect";
|
import useRedirect from "@/hooks/useRedirect";
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
import ModalManagement from "@/components/ModalManagement";
|
import ModalManagement from "@/components/ModalManagement";
|
||||||
|
import useModalStore from "@/store/modals";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
children: ReactNode;
|
children: ReactNode;
|
||||||
|
@ -16,6 +17,13 @@ export default function MainLayout({ children }: Props) {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const redirect = useRedirect();
|
const redirect = useRedirect();
|
||||||
const routeExists = router.route === "/_error" ? false : true;
|
const routeExists = router.route === "/_error" ? false : true;
|
||||||
|
const { modal } = useModalStore();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
modal
|
||||||
|
? (document.body.style.overflow = "hidden")
|
||||||
|
: (document.body.style.overflow = "auto");
|
||||||
|
}, [modal]);
|
||||||
|
|
||||||
if (status === "authenticated" && !redirect && routeExists)
|
if (status === "authenticated" && !redirect && routeExists)
|
||||||
return (
|
return (
|
||||||
|
|
Ŝarĝante…
Reference in New Issue