chore: lint

This commit is contained in:
Max Leiter 2023-02-21 23:34:09 -08:00
parent 817a12fffb
commit 9a811e85b5
2 changed files with 12 additions and 7 deletions

View file

@ -1,6 +1,6 @@
"use client"
import { startTransition, Suspense, useEffect, useState } from "react"
import { startTransition, Suspense, useState } from "react"
import styles from "./auth.module.css"
import Link from "../../components/link"
import { signIn } from "next-auth/react"

View file

@ -6,6 +6,7 @@ declare global {
import config from "@lib/config"
import { Post, PrismaClient, User, Prisma } from "@prisma/client"
import * as crypto from "crypto"
import { cache } from "react"
export type { User, File, Post } from "@prisma/client"
export const prisma =
@ -209,12 +210,16 @@ export const getPostById = async (
return post
}
export const getAllPosts = async (
options?: Prisma.PostFindManyArgs
): Promise<Post[] | ServerPostWithFiles[] | ServerPostWithFilesAndAuthor[]> => {
const posts = await prisma.post.findMany(options)
return posts
}
export const getAllPosts = cache(
async (
options?: Prisma.PostFindManyArgs
): Promise<
Post[] | ServerPostWithFiles[] | ServerPostWithFilesAndAuthor[]
> => {
const posts = await prisma.post.findMany(options)
return posts
}
)
export const userWithPosts = Prisma.validator<Prisma.UserArgs>()({
include: {