N-FIN-93: update session handling in pages
This commit is contained in:
parent
576c2b0c0c
commit
0bb1db9acc
5 changed files with 35 additions and 10 deletions
|
@ -7,12 +7,17 @@ import prisma from '@/prisma';
|
||||||
import { ServerActionTrigger } from '@/components/form/serverActionTrigger';
|
import { ServerActionTrigger } from '@/components/form/serverActionTrigger';
|
||||||
import clearAccountData from '@/lib/actions/clearAccountData';
|
import clearAccountData from '@/lib/actions/clearAccountData';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { getSession, Session } from '@auth0/nextjs-auth0';
|
|
||||||
import { URL_SIGN_OUT } from '@/lib/constants';
|
import { URL_SIGN_OUT } from '@/lib/constants';
|
||||||
|
import { auth0 } from '@/lib/auth';
|
||||||
|
import { redirect } from 'next/navigation';
|
||||||
|
|
||||||
export default async function AccountPage() {
|
export default async function AccountPage() {
|
||||||
|
|
||||||
const {user} = await getSession() as Session;
|
const session = await auth0.getSession();
|
||||||
|
if (!session) {
|
||||||
|
return redirect('/auth/login');
|
||||||
|
}
|
||||||
|
const user = session.user;
|
||||||
|
|
||||||
let paymentCount = 0;
|
let paymentCount = 0;
|
||||||
paymentCount = await prisma.payment.count({
|
paymentCount = await prisma.payment.count({
|
||||||
|
|
|
@ -3,11 +3,16 @@ import React from 'react';
|
||||||
import CategoryPageClientContent from '@/components/categoryPageClientComponents';
|
import CategoryPageClientContent from '@/components/categoryPageClientComponents';
|
||||||
import categoryCreateUpdate from '@/lib/actions/categoryCreateUpdate';
|
import categoryCreateUpdate from '@/lib/actions/categoryCreateUpdate';
|
||||||
import categoryDelete from '@/lib/actions/categoryDelete';
|
import categoryDelete from '@/lib/actions/categoryDelete';
|
||||||
import { getSession, Session } from '@auth0/nextjs-auth0';
|
import { auth0 } from '@/lib/auth';
|
||||||
|
import { redirect } from 'next/navigation';
|
||||||
|
|
||||||
export default async function CategoriesPage() {
|
export default async function CategoriesPage() {
|
||||||
|
|
||||||
const {user} = await getSession() as Session;
|
const session = await auth0.getSession();
|
||||||
|
if (!session) {
|
||||||
|
return redirect('/auth/login');
|
||||||
|
}
|
||||||
|
const user = session.user;
|
||||||
|
|
||||||
const categories = await prisma.category.findMany({
|
const categories = await prisma.category.findMany({
|
||||||
where: {
|
where: {
|
||||||
|
|
|
@ -3,11 +3,16 @@ import React from 'react';
|
||||||
import EntityPageClientContent from '@/components/entityPageClientComponents';
|
import EntityPageClientContent from '@/components/entityPageClientComponents';
|
||||||
import entityCreateUpdate from '@/lib/actions/entityCreateUpdate';
|
import entityCreateUpdate from '@/lib/actions/entityCreateUpdate';
|
||||||
import entityDelete from '@/lib/actions/entityDelete';
|
import entityDelete from '@/lib/actions/entityDelete';
|
||||||
import { getSession, Session } from '@auth0/nextjs-auth0';
|
import { auth0 } from '@/lib/auth';
|
||||||
|
import { redirect } from 'next/navigation';
|
||||||
|
|
||||||
export default async function EntitiesPage() {
|
export default async function EntitiesPage() {
|
||||||
|
|
||||||
const {user} = await getSession() as Session;
|
const session = await auth0.getSession();
|
||||||
|
if (!session) {
|
||||||
|
return redirect('/auth/login');
|
||||||
|
}
|
||||||
|
const user = session.user;
|
||||||
|
|
||||||
const entities = await prisma.entity.findMany({
|
const entities = await prisma.entity.findMany({
|
||||||
where: {
|
where: {
|
||||||
|
|
|
@ -3,7 +3,8 @@ import { Category, Entity, EntityType } from '@prisma/client';
|
||||||
import { Scope, ScopeType } from '@/lib/types/scope';
|
import { Scope, ScopeType } from '@/lib/types/scope';
|
||||||
import prisma from '@/prisma';
|
import prisma from '@/prisma';
|
||||||
import DashboardPageClient from '@/components/dashboardPageClientComponents';
|
import DashboardPageClient from '@/components/dashboardPageClientComponents';
|
||||||
import { getSession, Session } from '@auth0/nextjs-auth0';
|
import { auth0 } from '@/lib/auth';
|
||||||
|
import { redirect } from 'next/navigation';
|
||||||
|
|
||||||
export type CategoryNumber = {
|
export type CategoryNumber = {
|
||||||
category: Category,
|
category: Category,
|
||||||
|
@ -17,7 +18,11 @@ export type EntityNumber = {
|
||||||
|
|
||||||
export default async function DashboardPage(props: { searchParams?: Promise<{ scope: ScopeType }> }) {
|
export default async function DashboardPage(props: { searchParams?: Promise<{ scope: ScopeType }> }) {
|
||||||
|
|
||||||
const {user} = await getSession() as Session;
|
const session = await auth0.getSession();
|
||||||
|
if (!session) {
|
||||||
|
return redirect('/auth/login');
|
||||||
|
}
|
||||||
|
const user = session.user;
|
||||||
|
|
||||||
const scope = Scope.of((await props.searchParams)?.scope || ScopeType.ThisMonth);
|
const scope = Scope.of((await props.searchParams)?.scope || ScopeType.ThisMonth);
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,16 @@ import React from 'react';
|
||||||
import PaymentPageClientContent from '@/components/paymentPageClientComponents';
|
import PaymentPageClientContent from '@/components/paymentPageClientComponents';
|
||||||
import paymentCreateUpdate from '@/lib/actions/paymentCreateUpdate';
|
import paymentCreateUpdate from '@/lib/actions/paymentCreateUpdate';
|
||||||
import paymentDelete from '@/lib/actions/paymentDelete';
|
import paymentDelete from '@/lib/actions/paymentDelete';
|
||||||
import { getSession, Session } from '@auth0/nextjs-auth0';
|
import { auth0 } from '@/lib/auth';
|
||||||
|
import { redirect } from 'next/navigation';
|
||||||
|
|
||||||
export default async function PaymentsPage() {
|
export default async function PaymentsPage() {
|
||||||
|
|
||||||
const {user} = await getSession() as Session;
|
const session = await auth0.getSession();
|
||||||
|
if (!session) {
|
||||||
|
return redirect('/auth/login');
|
||||||
|
}
|
||||||
|
const user = session.user;
|
||||||
|
|
||||||
const payments = await prisma.payment.findMany({
|
const payments = await prisma.payment.findMany({
|
||||||
where: {
|
where: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue