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.
28 lines
861 B
TypeScript
28 lines
861 B
TypeScript
import Layout from '@/components/ui/Layout';
|
|
import { BeerPostQueryResult } from '@/services/BeerPost/schema/BeerPostQueryResult';
|
|
import getBreweryPostById from '@/services/BreweryPost/getBreweryPostById';
|
|
import { GetServerSideProps, NextPage } from 'next';
|
|
|
|
interface BreweryPageProps {
|
|
breweryPost: BeerPostQueryResult;
|
|
}
|
|
|
|
const BreweryByIdPage: NextPage<BreweryPageProps> = ({ breweryPost }) => {
|
|
return (
|
|
<Layout>
|
|
<h1 className="text-3xl font-bold underline">{breweryPost.name}</h1>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export const getServerSideProps: GetServerSideProps<BreweryPageProps> = async (
|
|
context,
|
|
) => {
|
|
const breweryPost = await getBreweryPostById(context.params!.id! as string);
|
|
return !breweryPost
|
|
? { notFound: true }
|
|
: { props: { breweryPost: JSON.parse(JSON.stringify(breweryPost)) } };
|
|
};
|
|
|
|
export default BreweryByIdPage;
|