61 lines
1.9 KiB
TypeScript
61 lines
1.9 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import Link from "next/link";
|
|
import { MouseEventHandler } from "react";
|
|
|
|
type NavOptionProps = {
|
|
url: string;
|
|
icon?: string;
|
|
title: string;
|
|
subtitle?: string;
|
|
tooltipId?: string;
|
|
border?: boolean;
|
|
reduced?: boolean;
|
|
onClick?: MouseEventHandler<HTMLDivElement>;
|
|
};
|
|
|
|
export default function NavOption(props: NavOptionProps): JSX.Element {
|
|
const router = useRouter();
|
|
const isActive = router.asPath.startsWith(props.url);
|
|
const divActive = "bg-mid shadow-inner-sm shadow-dark";
|
|
const border =
|
|
"outline outline-mid outline-2 outline-offset-[-2px] hover:outline-[transparent]";
|
|
const divCommon = `gap-x-5 w-full rounded-2xl cursor-pointer p-4 hover:bg-mid hover:shadow-inner-sm hover:shadow-dark hover:active:shadow-inner hover:active:shadow-dark transition-all ${
|
|
props.border ? border : ""
|
|
} ${isActive ? divActive : ""}`;
|
|
|
|
return (
|
|
<Link href={props.url} passHref>
|
|
<div
|
|
onClick={props.onClick}
|
|
data-html={true}
|
|
data-tip={`
|
|
<div class="px-4 py-3">
|
|
<h3 class="text-2xl">${props.title}</h3>
|
|
${
|
|
props.subtitle
|
|
? `<p class="max-w-[10rem]">${props.subtitle}</p>`
|
|
: ""
|
|
}
|
|
</div>
|
|
`}
|
|
data-for={props.tooltipId}
|
|
data-multiline={true}
|
|
className={`grid grid-flow-col grid-cols-[auto] auto-cols-fr justify-center ${
|
|
props.icon ? "text-left" : "text-center"
|
|
} ${divCommon}`}
|
|
>
|
|
{props.icon && (
|
|
<span className="material-icons mt-[.1em]">{props.icon}</span>
|
|
)}
|
|
|
|
{!props.reduced && (
|
|
<div>
|
|
<h3 className="text-2xl">{props.title}</h3>
|
|
{props.subtitle && <p className="col-start-2">{props.subtitle}</p>}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</Link>
|
|
);
|
|
}
|