mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Update page auth HOF type definitions
Added vercel config, update packages
This commit is contained in:
51
pages/beers/[id]/edit.tsx
Normal file
51
pages/beers/[id]/edit.tsx
Normal file
@@ -0,0 +1,51 @@
|
||||
import Head from 'next/head';
|
||||
import React from 'react';
|
||||
|
||||
import Layout from '@/components/ui/Layout';
|
||||
import { NextPage } from 'next';
|
||||
import withPageAuthRequired from '@/config/auth/withPageAuthRequired';
|
||||
import getBeerPostById from '@/services/BeerPost/getBeerPostById';
|
||||
import { BeerPostQueryResult } from '@/services/BeerPost/schema/BeerPostQueryResult';
|
||||
|
||||
interface EditPageProps {
|
||||
beerPost: BeerPostQueryResult;
|
||||
}
|
||||
|
||||
const EditPage: NextPage<EditPageProps> = ({ beerPost }) => {
|
||||
return (
|
||||
<Layout>
|
||||
<Head>
|
||||
<title>Edit {beerPost.name}</title>
|
||||
<meta name="description" content={`Edit ${beerPost.name}`} />
|
||||
</Head>
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
||||
export default EditPage;
|
||||
|
||||
export const getServerSideProps = withPageAuthRequired<EditPageProps>(
|
||||
async (context, session) => {
|
||||
const beerPostId = context.params?.id as string;
|
||||
const beerPost = await getBeerPostById(beerPostId);
|
||||
const { id: userId } = session;
|
||||
|
||||
if (!beerPost) {
|
||||
return { notFound: true };
|
||||
}
|
||||
|
||||
const isBeerPostOwner = beerPost.postedBy.id === userId;
|
||||
|
||||
if (!isBeerPostOwner) {
|
||||
return {
|
||||
redirect: { destination: `/beers/${beerPostId}`, permanent: false },
|
||||
};
|
||||
}
|
||||
|
||||
return {
|
||||
props: {
|
||||
beerPost: JSON.parse(JSON.stringify(beerPost)),
|
||||
},
|
||||
};
|
||||
},
|
||||
);
|
||||
@@ -106,7 +106,7 @@ const BeerByIdPage: NextPage<BeerPageProps> = ({
|
||||
Next Comments
|
||||
</Link>
|
||||
<Link
|
||||
className={`btn btn-outline ${
|
||||
className={`btn-outline btn ${
|
||||
commentsPageNum === commentsPageCount
|
||||
? 'btn-disabled pointer-events-none'
|
||||
: 'pointer-events-auto'
|
||||
@@ -31,7 +31,7 @@ const Create: NextPage<CreateBeerPageProps> = ({ breweries, types }) => {
|
||||
);
|
||||
};
|
||||
|
||||
export const getServerSideProps = withPageAuthRequired(async () => {
|
||||
export const getServerSideProps = withPageAuthRequired<CreateBeerPageProps>(async () => {
|
||||
const breweryPosts = await getAllBreweryPosts();
|
||||
const beerTypes = await DBClient.instance.beerType.findMany();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user