'use client'; import React from 'react'; import { DEFAULT_PAGE_SIZE } from '../../constants/common'; import {Languages, SearchData} from "../../types/tags"; import {BlogPost} from "../../types/blogPost"; import Link from "next/link"; import {CustomPagination} from "../view/CustomPagination"; type Props = { searchData?: SearchData; languages?: Languages; basePath: string; locale: string; data: BlogPost[], total: number, pageSize: number }; export const BlogPostsList = ({ basePath = '/', locale, pageSize = DEFAULT_PAGE_SIZE, data = [], total= 0 }: Props) => { const currentPage = 1 const onChangePage = (page: number) => { router.push(page === 1 ? basePath : basePath+'?page='+page); }; return (
{data.map((item, i) => (
  • {item.listImage?.alt}/
    {item.title}
    {item.category}
    {item.excerpt}
    {item.author.name}
    {item.createdAt}
    165
    Share
  • ))}
    {total > pageSize && ( )}
    ) }