Adding view count to your Nextjs Blog
––– views
•
2 mins
7 Nov 2021
create function increment (slug_text text) returns void as $$ update views set count = count + 1 where slug = slug_text; $$ language sql volatile;
import { createClient, PostgrestError } from "@supabase/supabase-js"; const supabase = createClient( process.env.SUPABASE_URL, process.env.SUPABASE_KEY ); interface SupabaseResult { data?: { count: number }; error?: PostgrestError; } /// const getViews = async (slug: string): Promise<number> => { const { data: views, error }: SupabaseResult = await supabase .from("views") .select(`count`) .match({ slug: slug }) .single(); if (error && error.details.includes(`0 rows`)) { const { data, error }: SupabaseResult = await supabase .from(`views`) .insert({ slug: slug, count: 1 }, { returning: `representation` }) .single(); return data.count; } if (!views) { return 0; } return views.count; }; /// const registerView = async (slug: string): Promise<void> => { const { data, error } = await supabase.rpc("increment", { slug_text: slug, }); }; export { getViews, registerView };
// /api/view/[slug].ts // Next.js API route support: https://nextjs.org/docs/api-routes/introduction import { getViews, registerView } from "lib/views"; import type { NextApiRequest, NextApiResponse } from "next"; interface Data { message?: string; status?: number; count?: number; } /// export default async function handler( req: NextApiRequest, res: NextApiResponse<Data> ): Promise<void> { const slug = req.query.slug.toString(); /// if (!slug) { return res.status(400).json({ message: `invalid slug` }); } if (req.method == `POST`) { await registerView(slug); } const count = await getViews(slug); return res.status(200).json({ count: count }); }
import fetcher from "lib/fetcher"; import { Views } from "lib/types"; import { useEffect } from "react"; import useSWR from "swr"; interface Props { slug: string; } const ViewCounter = ({ slug }: Props) => { const { data } = useSWR<Views>(`/api/views/${slug}`, fetcher); useEffect(() => { const registerView = () => fetch(`/api/views/${slug}`, { method: "POST", }); registerView(); }, [slug]); return ( <span>{`${ (data?.count ?? 0) > 0 ? data.count.toLocaleString() :"–––" } views`}</span> ); }; export default ViewCounter;