mirror of
https://github.com/maciejpedzich/maciejpedzi.ch.git
synced 2025-04-06 22:51:14 +02:00
32 lines
722 B
Plaintext
32 lines
722 B
Plaintext
---
|
|
import { CollectionEntry, getCollection } from 'astro:content';
|
|
|
|
export interface Props {
|
|
filterFn?: (entry: CollectionEntry<'blog'>) => unknown;
|
|
}
|
|
|
|
const defaultFilterFn = (entry: CollectionEntry<'blog'>) => true;
|
|
const { filterFn = defaultFilterFn } = Astro.props;
|
|
|
|
const posts = (
|
|
await getCollection(
|
|
'blog',
|
|
(entry) => filterFn(entry) && (import.meta.env.DEV || !entry.data.draft)
|
|
)
|
|
).sort((a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf());
|
|
---
|
|
|
|
<ul class="post-list">
|
|
{
|
|
posts.length === 0 ? (
|
|
<p>No posts were found</p>
|
|
) : (
|
|
posts.map((post) => (
|
|
<li>
|
|
<a href={`/blog/${post.slug}`}>{post.data.title}</a>
|
|
</li>
|
|
))
|
|
)
|
|
}
|
|
</ul>
|