diff --git a/src/app/api/stats/monthly/route.ts b/src/app/api/stats/monthly/route.ts new file mode 100644 index 0000000..88fa870 --- /dev/null +++ b/src/app/api/stats/monthly/route.ts @@ -0,0 +1,19 @@ +import { NextResponse } from "next/server"; +import prisma from "@/lib/prisma"; + +export async function GET(req: Request) { + const { searchParams } = new URL(req.url); + const year = Number(searchParams.get("year")) || new Date().getFullYear(); + const month = Number(searchParams.get("month")) || new Date().getMonth() + 1; // 1-12 + const start = new Date(year, month - 1, 1); + const end = new Date(year, month, 1); + + const posts = await prisma.post.count({ where: { createdAt: { gte: start, lt: end } } }); + const comments = await prisma.comment.count({ where: { createdAt: { gte: start, lt: end } } }); + const users = await prisma.user.count({ where: { createdAt: { gte: start, lt: end } } }); + const reports = await prisma.report.count({ where: { createdAt: { gte: start, lt: end } } }); + + return NextResponse.json({ year, month, metrics: { posts, comments, users, reports } }); +} + + diff --git a/src/app/stats/monthly/page.tsx b/src/app/stats/monthly/page.tsx new file mode 100644 index 0000000..a0afd7e --- /dev/null +++ b/src/app/stats/monthly/page.tsx @@ -0,0 +1,25 @@ +"use client"; +import useSWR from "swr"; + +const fetcher = (url: string) => fetch(url).then((r) => r.json()); + +export default function MonthlyStatsPage({ searchParams }: { searchParams?: { year?: string; month?: string } }) { + const year = searchParams?.year ?? String(new Date().getFullYear()); + const month = searchParams?.month ?? String(new Date().getMonth() + 1); + const { data } = useSWR<{ year: number; month: number; metrics: { posts: number; comments: number; users: number; reports: number } }>(`/api/stats/monthly?year=${year}&month=${month}`, fetcher); + const m = data?.metrics; + return ( +