Merge branch 'main' into feat/organized-content

This commit is contained in:
William Tran 2021-05-30 17:23:01 -04:00
commit d7257c7223
4 changed files with 44 additions and 12 deletions

View File

@ -50,24 +50,35 @@ const menu: NavLink[] = [
},
{
name: "Resources",
route: "/resources",
route: "/resources/services",
submenu: [
{
name: "Services",
route: "/resources/services",
},
{
name: "Tech Talks",
route: "/resources/tech-talks",
},
{
name: "CS Club Wiki",
route: "https://wiki.csclub.uwaterloo.ca/",
},
],
},
];
function NavItem(props: NavLink) {
const router = useRouter();
const externalLink =
props.route.includes("http://") || props.route.includes("https://");
return (
<>
<Link href={props.route}>
{externalLink ? (
<a
title={props.name}
className={
router.pathname === props.route ||
((props.submenu?.length ?? 0) > 0 &&
router.pathname.startsWith(props.route))
? styles.currentPage
: ""
}
href={props.route}
target="_blank"
rel="noopener noreferrer"
onClick={() => {
if (document.activeElement instanceof HTMLElement) {
document.activeElement.blur();
@ -76,7 +87,27 @@ function NavItem(props: NavLink) {
>
{props.name}
</a>
</Link>
) : (
<Link href={props.route}>
<a
title={props.name}
className={
router.pathname === props.route ||
((props.submenu?.length ?? 0) > 0 &&
router.pathname.startsWith(props.route))
? styles.currentPage
: ""
}
onClick={() => {
if (document.activeElement instanceof HTMLElement) {
document.activeElement.blur();
}
}}
>
{props.name}
</a>
</Link>
)}
{(props.submenu?.length ?? 0) > 0 ? (
<ul className={styles.dropdown}>
{props.submenu?.map((item) => {

View File

@ -1 +0,0 @@
# Resources page

View File

@ -0,0 +1 @@
# Services Page

View File

@ -0,0 +1 @@
# Tech Talks Page