Private pages
If you need to authenticate your users, you probably need to give them access to a private section of the website.
Shipped provides patterns to handle private pages.
Authenticated pages
These are pages accessible only if a user is logged in.
Use the NextAuth hook useSession you retrieve the current user session, and if they are logged in or not.
"use client";
import { Button, Center, Spinner, Stack, Text } from "@chakra-ui/react";
import { useSession } from "next-auth/react";
const Dashboard = () => {
const { data: session, status } = useSession();
return (
<Center minH="100vh">
{status === "loading" && <Spinner color="brand.500" />}
{status === "authenticated" && (
<p>You are logged in as {session?.user?.email}</p>
)}
{status === "unauthenticated" && (
<Stack>
<Text>Sign in to access</Text>
<Button as="a" href="/login" colorScheme="brand">
Sign in
</Button>
</Stack>
)}
</Center>
);
};
export default Dashboard;Authenticated API endpoints
These are API endpoints that are protected and only logged in users can call them and get a correct response.
How to add a new private page
As an example, let's say we want to add a new section to our SaaS, at /todo to show a simple todo app.
Add the new route to the file src/data/routes.ts
Create a new folder in src/app and call it todo.
Create a new file, called page.tsx inside the todo folder.
In the page.tsx, add a code similar to this
Open the component <WebAppPage /> at src/components/templates/WebAppPage/WebAppPage.tsx and scroll down.
Render your new page, when the current page is Routes.todo
To add the new menu item to the sidebar, open src/components/organisms/Sidebar/SidebarMenuItems.tsx scroll to the MenuItem, and add a new element:
Your menu item will now appear in the sidebar:

Last updated
Was this helpful?