@@ -6,7 +6,6 @@ import { allBlogs } from 'contentlayer/generated'
6
6
import tagData from 'app/tag-data.json'
7
7
import { genPageMetadata } from 'app/seo'
8
8
import { Metadata } from 'next'
9
- import { notFound } from 'next/navigation'
10
9
11
10
const POSTS_PER_PAGE = 5
12
11
@@ -30,37 +29,23 @@ export async function generateMetadata(props: {
30
29
export const generateStaticParams = async ( ) => {
31
30
const tagCounts = tagData as Record < string , number >
32
31
const tagKeys = Object . keys ( tagCounts )
33
- const paths = tagKeys . map ( ( tag ) => ( {
32
+ return tagKeys . map ( ( tag ) => ( {
34
33
tag : encodeURI ( tag ) ,
35
34
} ) )
36
- return paths
37
35
}
38
36
39
- export default async function TagPage ( props : {
40
- params : Promise < { tag : string } >
41
- searchParams : Promise < { page : string } >
42
- } ) {
37
+ export default async function TagPage ( props : { params : Promise < { tag : string } > } ) {
43
38
const params = await props . params
44
39
const tag = decodeURI ( params . tag )
45
- const searchParams = await props . searchParams
46
- const pageNumber = parseInt ( searchParams . page || '1' )
47
- // Capitalize first letter and convert space to dash
48
40
const title = tag [ 0 ] . toUpperCase ( ) + tag . split ( ' ' ) . join ( '-' ) . slice ( 1 )
49
41
const filteredPosts = allCoreContent (
50
42
sortPosts ( allBlogs . filter ( ( post ) => post . tags && post . tags . map ( ( t ) => slug ( t ) ) . includes ( tag ) ) )
51
43
)
52
- const initialDisplayPosts = filteredPosts . slice (
53
- POSTS_PER_PAGE * ( pageNumber - 1 ) ,
54
- POSTS_PER_PAGE * pageNumber
55
- )
56
-
57
- if ( initialDisplayPosts . length === 0 ) {
58
- return notFound ( )
59
- }
60
-
44
+ const totalPages = Math . ceil ( filteredPosts . length / POSTS_PER_PAGE )
45
+ const initialDisplayPosts = filteredPosts . slice ( 0 , POSTS_PER_PAGE )
61
46
const pagination = {
62
- currentPage : pageNumber ,
63
- totalPages : Math . ceil ( filteredPosts . length / POSTS_PER_PAGE ) ,
47
+ currentPage : 1 ,
48
+ totalPages : totalPages ,
64
49
}
65
50
66
51
return (
0 commit comments