mirror of
https://github.com/maciejpedzich/cats-album.git
synced 2025-04-06 13:51:11 +02:00
83 lines
1.8 KiB
Plaintext
83 lines
1.8 KiB
Plaintext
---
|
|
import { getCollection, type CollectionEntry } from 'astro:content';
|
|
|
|
import BaseLayout from '../layouts/BaseLayout.astro';
|
|
import CatCard from '../components/CatCard.astro';
|
|
|
|
export interface Props {
|
|
cats: CollectionEntry<'cats'>[];
|
|
pageNums: number[];
|
|
}
|
|
|
|
export async function getStaticPaths() {
|
|
const NUM_CATS_PER_PAGE = 18;
|
|
const allCats = (await getCollection('cats')).sort(
|
|
(a, b) => b.data.dateAdded.valueOf() - a.data.dateAdded.valueOf()
|
|
);
|
|
|
|
const maxPageNum = Math.ceil(allCats.length / NUM_CATS_PER_PAGE);
|
|
const pageNums = [...Array(maxPageNum).keys()].map((key) => key + 1);
|
|
|
|
return pageNums.map((num) => ({
|
|
params: { page: num === 1 ? undefined : num.toString() },
|
|
props: {
|
|
cats: allCats.slice(
|
|
NUM_CATS_PER_PAGE * (num - 1),
|
|
NUM_CATS_PER_PAGE * num
|
|
),
|
|
pageNums
|
|
}
|
|
}));
|
|
}
|
|
|
|
const { page } = Astro.params;
|
|
const { cats, pageNums } = Astro.props;
|
|
const currentPageNum = Number(page || '1');
|
|
---
|
|
|
|
<BaseLayout title={page ? `Page ${page}` : undefined}>
|
|
<div class="row">
|
|
{
|
|
cats.map((cat) => (
|
|
<div class="col-12 col-6-md col-4-lg">
|
|
<CatCard cat={cat} />
|
|
</div>
|
|
))
|
|
}
|
|
</div>
|
|
<nav class="nav" aria-label="Page navigation">
|
|
<div class="nav-center">
|
|
{
|
|
pageNums.map((num) => (
|
|
<a
|
|
href={`/${num === 1 ? '' : num.toString()}`}
|
|
class:list={[{ active: num === currentPageNum }]}
|
|
>
|
|
{num}
|
|
</a>
|
|
))
|
|
}
|
|
</div>
|
|
</nav>
|
|
</BaseLayout>
|
|
|
|
<style>
|
|
.nav {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.nav a {
|
|
color: var(--font-color);
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.nav a.active {
|
|
color: var(--color-primary);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.nav a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|