From 6ba9a8872b08932c5d849e85ddfc0bfebfb42165 Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Thu, 4 Apr 2024 00:25:59 +0200 Subject: [PATCH] N-FIN-79: refactor pages to use auth0 session --- src/app/account/page.tsx | 33 ++++++++++++++------------------- src/app/categories/page.tsx | 4 ++-- src/app/entities/page.tsx | 4 ++-- src/app/layout.tsx | 3 +++ src/app/page.tsx | 9 +++------ src/app/payments/page.tsx | 10 +++++----- src/lib/constants.ts | 5 +---- 7 files changed, 30 insertions(+), 38 deletions(-) diff --git a/src/app/account/page.tsx b/src/app/account/page.tsx index 0023029..5df0f8e 100644 --- a/src/app/account/page.tsx +++ b/src/app/account/page.tsx @@ -1,42 +1,36 @@ import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card'; import React from 'react'; -import { getUser } from '@/auth'; -import { redirect } from 'next/navigation'; -import signOut from '@/lib/actions/signOut'; import { Label } from '@/components/ui/label'; import { Input } from '@/components/ui/input'; -import { URL_SIGN_IN } from '@/lib/constants'; import generateSampleData from '@/lib/actions/generateSampleData'; import prisma from '@/prisma'; import { ServerActionTrigger } from '@/components/form/serverActionTrigger'; import accountDelete from '@/lib/actions/accountDelete'; +import { Button } from '@/components/ui/button'; +import { getSession, Session } from '@auth0/nextjs-auth0'; export default async function AccountPage() { - const user = await getUser(); - - if (!user) { - redirect(URL_SIGN_IN); - } + const {user} = await getSession() as Session; let paymentCount = 0; paymentCount = await prisma.payment.count({ where: { - userId: user.id, + userId: user.sub, }, }); let entityCount = 0; entityCount = await prisma.entity.count({ where: { - userId: user.id, + userId: user.sub, }, }); let categoryCount = 0; categoryCount = await prisma.category.count({ where: { - userId: user.id, + userId: user.sub, }, }); @@ -44,7 +38,7 @@ export default async function AccountPage() {
- Hey, {user?.username}! + Hey, {user.name}! This is your account overview. @@ -52,13 +46,13 @@ export default async function AccountPage() { + value={user.sub}/>
+ value={user.name}/>
@@ -92,10 +86,11 @@ export default async function AccountPage() { variant="outline"> Delete Account - - Sign Out - + + + { process.env.NODE_ENV === 'development' && ( +
@@ -56,6 +58,7 @@ export default function RootLayout({
+
); } diff --git a/src/app/page.tsx b/src/app/page.tsx index 72c34da..ace7b66 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,8 +2,8 @@ import React from 'react'; import { Category, Entity, EntityType } from '@prisma/client'; import { Scope, ScopeType } from '@/lib/types/scope'; import prisma from '@/prisma'; -import { getUser } from '@/auth'; import DashboardPageClient from '@/components/dashboardPageClientComponents'; +import { getSession, Session } from '@auth0/nextjs-auth0'; export type CategoryNumber = { category: Category, @@ -17,17 +17,14 @@ export type EntityNumber = { export default async function DashboardPage(props: { searchParams?: { scope: ScopeType } }) { - const user = await getUser(); - if (!user) { - return; - } + const {user} = await getSession() as Session; const scope = Scope.of(props.searchParams?.scope || ScopeType.ThisMonth); // get all payments in the current scope const payments = await prisma.payment.findMany({ where: { - userId: user?.id, + userId: user.sub, date: { gte: scope.start, lte: scope.end, diff --git a/src/app/payments/page.tsx b/src/app/payments/page.tsx index f1ffa66..be795bd 100644 --- a/src/app/payments/page.tsx +++ b/src/app/payments/page.tsx @@ -1,17 +1,17 @@ -import { getUser } from '@/auth'; import prisma from '@/prisma'; import React from 'react'; import PaymentPageClientContent from '@/components/paymentPageClientComponents'; import paymentCreateUpdate from '@/lib/actions/paymentCreateUpdate'; import paymentDelete from '@/lib/actions/paymentDelete'; +import { getSession, Session } from '@auth0/nextjs-auth0'; export default async function PaymentsPage() { - const user = await getUser(); + const {user} = await getSession() as Session; const payments = await prisma.payment.findMany({ where: { - userId: user?.id, + userId: user.sub, }, orderBy: [ { @@ -25,7 +25,7 @@ export default async function PaymentsPage() { const entities = await prisma.entity.findMany({ where: { - userId: user?.id, + userId: user.sub, }, orderBy: [ { @@ -39,7 +39,7 @@ export default async function PaymentsPage() { const categories = await prisma.category.findMany({ where: { - userId: user?.id, + userId: user.sub, }, orderBy: [ { diff --git a/src/lib/constants.ts b/src/lib/constants.ts index b7548a5..1693930 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -1,7 +1,4 @@ -// auth urls -export const URL_AUTH = '/auth'; -export const URL_SIGN_IN = `${URL_AUTH}/signin`; -export const URL_SIGN_UP = `${URL_AUTH}/signup`; +export const URL_SIGN_IN = `/api/auth/login`; // main urls export const URL_HOME = '/';