import Link from 'next/link'; import useSWRInfinite from 'swr/infinite'; import { t } from '@lingui/macro'; import { config } from '@config/website'; import { getPublishedPosts } from '@services/graphql/blog'; import { ArticlePreview } from '@ts/types/articles'; import { PageInfo } from '@ts/types/pagination'; import styles from './PostsList.module.scss'; type TitleLevel = 2 | 3 | 4 | 5 | 6; type DataType = { posts: ArticlePreview; pageInfo: PageInfo; }; const PostsList = ({ titleLevel }: { titleLevel: TitleLevel }) => { const TitleTag = `h${titleLevel}` as keyof JSX.IntrinsicElements; const getKey = (pageIndex: number, previousData: DataType) => { if (previousData && !previousData.posts) return null; const args = pageIndex === 0 ? { first: config.postsPerPage } : { first: config.postsPerPage, after: previousData.pageInfo.endCursor, }; return args; }; const { data, error, size, setSize } = useSWRInfinite( getKey, getPublishedPosts ); const isLoadingInitialData = !data && !error; const isLoadingMore: boolean = isLoadingInitialData || (size > 0 && data !== undefined && typeof data[size - 1] === 'undefined'); const getPostsList = () => { if (error) return