shellphone.app/app/settings/components/settings-layout.tsx

70 lines
2.3 KiB
TypeScript
Raw Normal View History

2021-07-31 17:22:48 +00:00
import type { FunctionComponent } from "react";
2021-09-29 22:10:42 +00:00
import { Link, Routes, useRouter } from "blitz";
import clsx from "clsx";
import { IoChevronBack, IoNotificationsOutline, IoCardOutline, IoPersonCircleOutline } from "react-icons/io5";
2021-07-31 17:22:48 +00:00
import Layout from "../../core/layouts/layout";
2021-09-29 22:10:42 +00:00
const subNavigation = [
{ name: "Account", href: Routes.Account(), icon: IoPersonCircleOutline },
{ name: "Billing", href: Routes.Billing(), icon: IoCardOutline },
2021-09-29 22:10:42 +00:00
{ name: "Notifications", href: Routes.Notifications(), icon: IoNotificationsOutline },
];
2021-07-31 17:22:48 +00:00
const SettingsLayout: FunctionComponent = ({ children }) => {
const router = useRouter();
return (
2021-09-29 22:10:42 +00:00
<Layout title="Settings">
<header className="bg-gray-100 px-2 sm:px-6 lg:px-8">
2021-07-31 17:22:48 +00:00
<header className="flex">
<span className="flex items-center cursor-pointer" onClick={router.back}>
<IoChevronBack className="h-8 w-8 mr-2" /> Back
2021-07-31 17:22:48 +00:00
</span>
</header>
</header>
2021-09-29 22:10:42 +00:00
<main className="flex-grow mx-auto w-full max-w-7xl pb-10 lg:py-12 lg:px-8">
<div className="lg:grid lg:grid-cols-12 lg:gap-x-5">
<aside className="py-6 px-2 sm:px-6 lg:py-0 lg:px-0 lg:col-span-3">
<nav className="space-y-1">
{subNavigation.map((item) => {
const isCurrentPage = item.href.pathname === router.pathname;
return (
<Link key={item.name} href={item.href}>
<a
className={clsx(
isCurrentPage
? "bg-gray-50 text-primary-600 hover:bg-white"
2021-09-29 22:10:42 +00:00
: "text-gray-900 hover:text-gray-900 hover:bg-gray-50",
"group rounded-md px-3 py-2 flex items-center text-sm font-medium",
)}
aria-current={isCurrentPage ? "page" : undefined}
>
<item.icon
className={clsx(
isCurrentPage
? "text-primary-500"
2021-09-29 22:10:42 +00:00
: "text-gray-400 group-hover:text-gray-500",
"flex-shrink-0 -ml-1 mr-3 h-6 w-6",
)}
aria-hidden="true"
/>
<span className="truncate">{item.name}</span>
</a>
</Link>
);
})}
</nav>
</aside>
<div className="overflow-y-auto space-y-6 px-2 sm:px-6 lg:px-0 lg:col-span-9">{children}</div>
</div>
</main>
2021-07-31 17:22:48 +00:00
</Layout>
);
};
export default SettingsLayout;