diff --git a/components/Views.tsx b/components/Views.tsx index 62872cd..0f6a6ca 100644 --- a/components/Views.tsx +++ b/components/Views.tsx @@ -7,9 +7,16 @@ type ViewsType = { views: string } +type ViewsProps = { + as?: ElementType + slug: string + className?: string + shouldUpdateViews?: boolean +} + const updateViews = (slug: string) => fetcher(`/api/views/${slug}`, {method: 'POST'}) -export function Views({as: Component = 'span', slug}: { as?: ElementType, slug: string }) { +export function Views({as: Component = 'span', slug, className, shouldUpdateViews = true}: ViewsProps) { const {data} = useSWR(`/api/views/${slug}`, fetcher, { revalidateOnFocus: false, revalidateOnMount: true @@ -17,11 +24,13 @@ export function Views({as: Component = 'span', slug}: { as?: ElementType, slug: const views = Number(data?.views) useEffect(() => { - updateViews(slug).then(r => r) + if (shouldUpdateViews) { + updateViews(slug).then(r => r); + } }, [slug]) return ( - + {` · ${views > 0 ? numberFormat(views) : '—'} views`} ) diff --git a/pages/index.tsx b/pages/index.tsx index c762077..f72af2c 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -10,6 +10,7 @@ import { TwitterIcon } from '@/components/SocialIcons' import {SocialLink} from '@/components/SocialLink' +import {Views} from '@/components/Views' import {formatDate} from '@/lib/formatDate' import {generateRssFeed} from '@/lib/generateRssFeed' import {generateSitemap} from '@/lib/generateSitemap' @@ -71,9 +72,12 @@ function Article(article: Article) { {article.title} - - {formatDate(article.date)} - +

+ + {formatDate(article.date)} + + +

{article.description} Read more diff --git a/pages/writing/how-to-add-typescript-to-an-existing-nextjs-project.mdx b/pages/writing/how-to-add-typescript-to-an-existing-next-js-project.mdx similarity index 100% rename from pages/writing/how-to-add-typescript-to-an-existing-nextjs-project.mdx rename to pages/writing/how-to-add-typescript-to-an-existing-next-js-project.mdx