revert state usage for navicons
This commit is contained in:
parent
e95e7b0551
commit
03cbc4456f
6 changed files with 25 additions and 61 deletions
|
@ -3,29 +3,25 @@ import { useRouter } from "next/router";
|
|||
import Link from "next/link";
|
||||
import { useState } from "react";
|
||||
|
||||
interface NavBarProps {
|
||||
initialPage: string;
|
||||
}
|
||||
|
||||
function NavBar(props: NavBarProps) {
|
||||
const [activePage, setActivePage] = useState(props.initialPage);
|
||||
const ActiveLink = (props: {
|
||||
href: string;
|
||||
pageName: string;
|
||||
children: React.ReactNode;
|
||||
}) => {
|
||||
const router = useRouter();
|
||||
let styling = "text-white";
|
||||
if (activePage === props.pageName) {
|
||||
styling = "text-[#a855f7]";
|
||||
}
|
||||
return (
|
||||
<Link href={props.href} className={styling}>
|
||||
{props.children}
|
||||
</Link>
|
||||
);
|
||||
};
|
||||
const ActiveLink = (props: {
|
||||
href: string;
|
||||
pageName: string;
|
||||
children: React.ReactNode;
|
||||
}) => {
|
||||
const router = useRouter();
|
||||
let styling = "text-white";
|
||||
// if first part of path equals the pageName
|
||||
if (router.pathname.split("/")[1] === props.pageName) {
|
||||
styling = "text-[#a855f7]";
|
||||
}
|
||||
return (
|
||||
<Link href={props.href} className={styling}>
|
||||
{props.children}
|
||||
</Link>
|
||||
);
|
||||
};
|
||||
|
||||
function NavBar() {
|
||||
return (
|
||||
<div className="m-3">
|
||||
<m.div
|
||||
|
@ -38,13 +34,7 @@ function NavBar(props: NavBarProps) {
|
|||
className="flex flex-row items-center justify-center pl-5 lg:flex-col lg:pl-0 lg:pt-5"
|
||||
variants={navStripVariants}
|
||||
>
|
||||
<m.div
|
||||
variants={navIconVariants}
|
||||
className="pr-5 lg:pr-0 lg:pb-3"
|
||||
onClick={() => {
|
||||
setActivePage("dashboard");
|
||||
}}
|
||||
>
|
||||
<m.div variants={navIconVariants} className="pr-5 lg:pr-0 lg:pb-3">
|
||||
<ActiveLink href="/dashboard" pageName="dashboard">
|
||||
<DashIcon />
|
||||
</ActiveLink>
|
||||
|
@ -52,9 +42,6 @@ function NavBar(props: NavBarProps) {
|
|||
<m.div
|
||||
variants={navIconVariants}
|
||||
className="pr-5 lg:pr-0 lg:pt-3 lg:pb-3"
|
||||
onClick={() => {
|
||||
setActivePage("ranking");
|
||||
}}
|
||||
>
|
||||
<ActiveLink href="/ranking" pageName="ranking">
|
||||
<RankingIcon />
|
||||
|
@ -65,13 +52,7 @@ function NavBar(props: NavBarProps) {
|
|||
className="flex flex-row items-center justify-center pr-5 lg:w-full lg:flex-col lg:pr-0 lg:pb-5"
|
||||
variants={navStripVariants}
|
||||
>
|
||||
<m.div
|
||||
variants={navIconVariants}
|
||||
className="pr-5 lg:pr-0 lg:pb-3"
|
||||
onClick={() => {
|
||||
setActivePage("wiki");
|
||||
}}
|
||||
>
|
||||
<m.div variants={navIconVariants} className="pr-5 lg:pr-0 lg:pb-3">
|
||||
<ActiveLink href="/wiki" pageName="wiki">
|
||||
<WikiIcon />
|
||||
</ActiveLink>
|
||||
|
|
|
@ -11,7 +11,6 @@ import NavBar from "../components/dashboard/NavBar";
|
|||
|
||||
interface DashLayoutProps {
|
||||
children: React.ReactNode;
|
||||
navIcon?: string;
|
||||
metaTags: {
|
||||
title?: string;
|
||||
ogTitle?: string;
|
||||
|
@ -89,7 +88,7 @@ function DashLayout(props: DashLayoutProps) {
|
|||
{/* dashboard nav bar */}
|
||||
<LazyMotion features={domAnimation}>
|
||||
<AnimatePresence mode="wait">
|
||||
<NavBar initialPage={props.navIcon ?? ""} />
|
||||
<NavBar />
|
||||
</AnimatePresence>
|
||||
</LazyMotion>
|
||||
{/* dashboard content */}
|
||||
|
|
|
@ -80,11 +80,7 @@ const gridItemVariants: Variants = {
|
|||
|
||||
Dashboard.getLayout = function getLayout(page: ReactElement) {
|
||||
const metaTags = {};
|
||||
return (
|
||||
<DashLayout metaTags={metaTags} navIcon="dashboard">
|
||||
{page}
|
||||
</DashLayout>
|
||||
);
|
||||
return <DashLayout metaTags={metaTags}>{page}</DashLayout>;
|
||||
};
|
||||
|
||||
export default Dashboard;
|
||||
|
|
|
@ -290,11 +290,7 @@ Ranking.getLayout = function getLayout(page: ReactElement) {
|
|||
title: "Ranking - toffee",
|
||||
description: "Top investors on toffee",
|
||||
};
|
||||
return (
|
||||
<DashLayout metaTags={metaTags} navIcon="ranking">
|
||||
{page}
|
||||
</DashLayout>
|
||||
);
|
||||
return <DashLayout metaTags={metaTags}>{page}</DashLayout>;
|
||||
};
|
||||
|
||||
export default Ranking;
|
||||
|
|
|
@ -662,11 +662,7 @@ UserPage.getLayout = function getLayout(page: ReactElement) {
|
|||
"twitter:card": "summary",
|
||||
},
|
||||
};
|
||||
return (
|
||||
<DashLayout metaTags={metaTags} navIcon="user">
|
||||
{page}
|
||||
</DashLayout>
|
||||
);
|
||||
return <DashLayout metaTags={metaTags}>{page}</DashLayout>;
|
||||
};
|
||||
|
||||
export default UserPage;
|
||||
|
|
|
@ -152,11 +152,7 @@ WikiLandingPage.getLayout = function getLayout(page: React.ReactNode) {
|
|||
title: "Wiki - toffee",
|
||||
description: "Wiki for toffee",
|
||||
};
|
||||
return (
|
||||
<DashLayout metaTags={metaTags} navIcon="wiki">
|
||||
{page}
|
||||
</DashLayout>
|
||||
);
|
||||
return <DashLayout metaTags={metaTags}>{page}</DashLayout>;
|
||||
};
|
||||
|
||||
export default WikiLandingPage;
|
||||
|
|
Loading…
Reference in a new issue