mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Implement edit beer post functionality. Register, edit and create beer post forms are now using the same layout found in components/ui/forms/BeerPostFormPageLayout. All forms are now extracted into their own components and are now found in components. Added redirectIfLoggedIn getServerSidesProp fn for login and register pages.
19 lines
480 B
TypeScript
19 lines
480 B
TypeScript
import { GetServerSideProps, GetServerSidePropsContext, Redirect } from 'next';
|
|
import { getLoginSession } from '@/config/auth/session';
|
|
|
|
const redirectIfLoggedIn = (redirect: Redirect) => {
|
|
const fn: GetServerSideProps = async (context: GetServerSidePropsContext) => {
|
|
try {
|
|
const { req } = context;
|
|
await getLoginSession(req);
|
|
return { redirect };
|
|
} catch {
|
|
return { props: {} };
|
|
}
|
|
};
|
|
|
|
return fn;
|
|
};
|
|
|
|
export default redirectIfLoggedIn;
|