This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
readyornot/components/sidebar.tsx

79 lines
2.3 KiB
TypeScript
Raw Normal View History

2022-12-03 20:02:18 +00:00
import styles from '/styles/ReadyOrNot.module.css'
import Link from 'next/link'
import { useRouter } from 'next/router'
import useSWR from 'swr';
import ReadyOrNotMap from '../interfaces/ReadyOrNot';
import React, { useState } from 'react';
import Image from 'next/image';
import useWindowSize from '../components/windowsize';
2022-12-03 20:02:18 +00:00
const fetcher = (url: string) => fetch(url).then((res) => res.json())
function stopPropagation(e: any) {
e.stopPropagation();
}
const Sidebar = () => {
const isMobile = useWindowSize();
2022-12-03 20:02:18 +00:00
const router = useRouter();
const [active, setActive] = useState(isMobile);
2022-12-09 20:38:23 +00:00
const { maps, isLoading, isError }: { maps: ReadyOrNotMap[], isLoading: boolean, isError: boolean } = useNavbar();
2022-12-03 20:02:18 +00:00
2022-12-09 20:38:23 +00:00
if (typeof (isMobile) === "boolean" && typeof (active) === "undefined") {
setActive(!isMobile);
}
if (isError) {
return (
<>
<div><nav><a>Error loading Sidemenu</a></nav></div>
<div className={styles.sidebarPlaceholder}></div>
</>
)
}
2022-12-03 20:02:18 +00:00
else if (isLoading) {
return (
<>
<div>
<nav>
<a>Loading...</a>
</nav>
</div>
<div className={styles.sidebarPlaceholder}></div>
</>
2022-12-03 20:02:18 +00:00
)
}
else {
return (
<>
<div className={styles.sidebar} onClick={() => setActive(!active)}>
2022-12-09 20:38:23 +00:00
<div className={[styles.sl_wrapper, (active ? styles.sl_active : styles.sl_inactive)].join(" ")}>
<nav className={styles.sidebarList}>
{maps.map((item) => (
<Link key={item.name} href={item.href}>
<a className={[styles.navElem, (router.query.map == item.href ? styles.ne_active : styles.ne_inactive)].join(" ")} onClick={stopPropagation}>{item.name}</a>
</Link>
))}
</nav>
</div>
<div className={styles.sidebarArrow}>
<Image src={active ? "/sidebar_arrow_flipped.webp" : "/sidebar_arrow.webp"} width={32} height={96} alt={active ? ">" : "<"} />
</div>
2022-12-03 20:02:18 +00:00
</div>
<div className={styles.sidebarPlaceholder}></div>
</>
2022-12-03 20:02:18 +00:00
);
}
}
function useNavbar() {
const { data, error } = useSWR(`/api/navbar`, fetcher)
return {
maps: data,
isLoading: !error && !data,
isError: error
}
}
export default Sidebar;