Merge pull request #212 from emrysal/simplify-counting-use-length-instead

Removed unnecessary DB calls & changes everything to use session.user.id
pull/216/head
Bailey Pumfleet 2021-05-25 21:19:29 +01:00 committed by GitHub
commit e909bc22e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 18 deletions

View File

@ -270,9 +270,6 @@ export async function getServerSideProps(context) {
let credentials = [];
let eventTypes = [];
let eventTypeCount = 0;
let integrationCount = 0;
if (session) {
user = await prisma.user.findFirst({
where: {
@ -287,7 +284,7 @@ export async function getServerSideProps(context) {
credentials = await prisma.credential.findMany({
where: {
userId: user.id,
userId: session.user.id,
},
select: {
type: true
@ -296,23 +293,11 @@ export async function getServerSideProps(context) {
eventTypes = await prisma.eventType.findMany({
where: {
userId: user.id,
}
});
eventTypeCount = await prisma.eventType.count({
where: {
userId: session.user.id
}
});
integrationCount = await prisma.credential.count({
where: {
userId: session.user.id
userId: session.user.id,
}
});
}
return {
props: { user, credentials, eventTypes, eventTypeCount, integrationCount }, // will be passed to the page component as props
props: { user, credentials, eventTypes, eventTypeCount: eventTypes.length, integrationCount: credentials.length }, // will be passed to the page component as props
}
}