From 012acdb86903a7ac7f59f1469921d2e6b112e314 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 7 Jun 2022 18:30:45 -0700 Subject: [PATCH] refactor media page to support pagination --- components/Pagination.tsx | 7 ++--- layouts/ MediaList.tsx | 41 ++++++++++++++++++++++++++++ layouts/ListLayout.tsx | 6 ++++- pages/blog.tsx | 1 + pages/blog/page/[page].tsx | 3 ++- pages/media.tsx | 44 ++++++++++++++++-------------- pages/media/page/[page].tsx | 54 +++++++++++++++++++++++++++++++++++++ 7 files changed, 131 insertions(+), 25 deletions(-) create mode 100644 layouts/ MediaList.tsx create mode 100644 pages/media/page/[page].tsx diff --git a/components/Pagination.tsx b/components/Pagination.tsx index 39e5fef..af6f99c 100644 --- a/components/Pagination.tsx +++ b/components/Pagination.tsx @@ -1,11 +1,12 @@ import Link from '@/components/Link' interface Props { + page: string totalPages: number currentPage: number } -export default function Pagination({ totalPages, currentPage }: Props) { +export default function Pagination({ page, totalPages, currentPage }: Props) { const prevPage = currentPage - 1 > 0 const nextPage = currentPage + 1 <= totalPages @@ -18,7 +19,7 @@ export default function Pagination({ totalPages, currentPage }: Props) { )} {prevPage && ( - + )} @@ -31,7 +32,7 @@ export default function Pagination({ totalPages, currentPage }: Props) { )} {nextPage && ( - + )} diff --git a/layouts/ MediaList.tsx b/layouts/ MediaList.tsx new file mode 100644 index 0000000..459ebf9 --- /dev/null +++ b/layouts/ MediaList.tsx @@ -0,0 +1,41 @@ +import MediaItem from '@/components/MediaItem' +import Pagination from '@/components/Pagination' +import { ComponentProps } from 'react' + +interface Props { + initialDisplayPosts?: { type: string; title: string; data: string | string[] }[] + pagination?: ComponentProps +} +const MediaList = ({ initialDisplayPosts = [], pagination }: Props) => { + return ( + <> +
+
+

+ Media +

+
+
+
+ {initialDisplayPosts.length ? ( + initialDisplayPosts.map((d) => ( + + )) + ) : ( +

No media found.

+ )} +
+
+
+ {pagination && pagination.totalPages > 1 && ( + + )} + + ) +} + +export default MediaList diff --git a/layouts/ListLayout.tsx b/layouts/ListLayout.tsx index 724868a..fa4562e 100644 --- a/layouts/ListLayout.tsx +++ b/layouts/ListLayout.tsx @@ -90,7 +90,11 @@ export default function ListLayout({ posts, title, initialDisplayPosts = [], pag {pagination && pagination.totalPages > 1 && !searchValue && ( - + )} ) diff --git a/pages/blog.tsx b/pages/blog.tsx index 39180bd..92f72a8 100644 --- a/pages/blog.tsx +++ b/pages/blog.tsx @@ -15,6 +15,7 @@ export const getStaticProps: GetStaticProps<{ const posts = await getAllFilesFrontMatter('blog') const initialDisplayPosts = posts.slice(0, POSTS_PER_PAGE) const pagination = { + page: 'blog', currentPage: 1, totalPages: Math.ceil(posts.length / POSTS_PER_PAGE), } diff --git a/pages/blog/page/[page].tsx b/pages/blog/page/[page].tsx index cc10b14..aa8df54 100644 --- a/pages/blog/page/[page].tsx +++ b/pages/blog/page/[page].tsx @@ -22,7 +22,7 @@ export const getStaticPaths: GetStaticPaths<{ page: string }> = async () => { export const getStaticProps: GetStaticProps<{ posts: PostFrontMatter[] initialDisplayPosts: PostFrontMatter[] - pagination: { currentPage: number; totalPages: number } + pagination: { page: string; currentPage: number; totalPages: number } }> = async (context) => { const { params: { page }, @@ -34,6 +34,7 @@ export const getStaticProps: GetStaticProps<{ POSTS_PER_PAGE * pageNumber ) const pagination = { + page: 'blog', currentPage: pageNumber, totalPages: Math.ceil(posts.length / POSTS_PER_PAGE), } diff --git a/pages/media.tsx b/pages/media.tsx index c2c72c3..2dfc1c1 100644 --- a/pages/media.tsx +++ b/pages/media.tsx @@ -1,30 +1,34 @@ import siteMetadata from '@/data/siteMetadata' +import MediaList from '@/layouts/ MediaList' import mediaData from '@/data/mediaData' import { PageSEO } from '@/components/SEO' -import MediaItem from '@/components/MediaItem' +import { GetStaticProps, InferGetStaticPropsType } from 'next' +import { ComponentProps } from 'react' -export default function Media() { +export const POSTS_PER_PAGE = 5 + +export const getStaticProps: GetStaticProps<{ + initialDisplayPosts: ComponentProps['initialDisplayPosts'] + pagination: ComponentProps['pagination'] +}> = async () => { + const initialDisplayPosts = mediaData.slice(0, POSTS_PER_PAGE) + const pagination = { + page: 'blog', + currentPage: 1, + totalPages: Math.ceil(mediaData.length / POSTS_PER_PAGE), + } + + return { props: { initialDisplayPosts, pagination } } +} + +export default function Media({ + initialDisplayPosts, + pagination, +}: InferGetStaticPropsType) { return ( <> -
-
-

- Media -

-
-
-
- {mediaData.length ? ( - mediaData.map((d) => ( - - )) - ) : ( -

No media found.

- )} -
-
-
+ ) } diff --git a/pages/media/page/[page].tsx b/pages/media/page/[page].tsx new file mode 100644 index 0000000..1bc2df1 --- /dev/null +++ b/pages/media/page/[page].tsx @@ -0,0 +1,54 @@ +import { GetStaticPaths, GetStaticProps, InferGetStaticPropsType } from 'next' +import siteMetadata from '@/data/siteMetadata' +import mediaData from '@/data/mediaData' +import { PageSEO } from '@/components/SEO' +import MediaList from '@/layouts/ MediaList' +import { POSTS_PER_PAGE } from '../../media' + +export const getStaticPaths: GetStaticPaths<{ page: string }> = async () => { + const totalPages = Math.ceil(mediaData.length / POSTS_PER_PAGE) + const paths = Array.from({ length: totalPages }, (_, i) => ({ + params: { page: (i + 1).toString() }, + })) + + return { + paths, + fallback: false, + } +} + +export const getStaticProps: GetStaticProps = async (context) => { + const { + params: { page }, + } = context + const pageNumber = parseInt(page as string) + const initialDisplayPosts = mediaData.slice( + POSTS_PER_PAGE * (pageNumber - 1), + POSTS_PER_PAGE * pageNumber + ) + + const pagination = { + page: 'media', + currentPage: pageNumber, + totalPages: Math.ceil(mediaData.length / POSTS_PER_PAGE), + } + + return { + props: { + initialDisplayPosts, + pagination, + }, + } +} + +export default function Media({ + initialDisplayPosts, + pagination, +}: InferGetStaticPropsType) { + return ( + <> + + + + ) +}