summaryrefslogtreecommitdiff
path: root/website/src/components/BlogFeed.astro
diff options
context:
space:
mode:
authorJoe Carstairs <jcarstairs@scottlogic.com>2024-07-15 16:14:41 +0100
committerJoe Carstairs <jcarstairs@scottlogic.com>2024-07-15 16:14:41 +0100
commite7f41976f1d0c0467eaf293e3524773fd4ee4eef (patch)
tree741eab72628b0f76a3272675384f6da6a17dafad /website/src/components/BlogFeed.astro
parentea96f40f7c0c535bc4c7d747d347893b78acb6fb (diff)
Feeds use max entries, and blog feed uses descriptions
Diffstat (limited to 'website/src/components/BlogFeed.astro')
-rw-r--r--website/src/components/BlogFeed.astro19
1 files changed, 16 insertions, 3 deletions
diff --git a/website/src/components/BlogFeed.astro b/website/src/components/BlogFeed.astro
index 525d7ba..3d6352d 100644
--- a/website/src/components/BlogFeed.astro
+++ b/website/src/components/BlogFeed.astro
@@ -1,15 +1,21 @@
---
import type { CollectionEntry } from 'astro:content';
import { getCollection } from 'astro:content';
+import FormattedDate from './FormattedDate.astro';
export interface Props {
headingLevel?: 1 | 2 | 3 | 4 | 5 | 6,
hideAuthor?: boolean,
+ maxEntries?: number,
};
-const { headingLevel = 2, hideAuthor = false } = Astro.props;
+const { headingLevel = 2, hideAuthor = false, maxEntries } = Astro.props;
-const posts = (await getCollection('blog')).filter((post) => !post.data.hidden);
+const allPosts = (await getCollection('blog')).filter((post) => !post.data.hidden);
+
+const posts = maxEntries === undefined
+ ? allPosts
+ : allPosts.sort(sortByPubDateDescending).slice(0, maxEntries);
const distinctYears: number[] = posts
.map(post => post.data.pubDate.getFullYear())
@@ -58,9 +64,16 @@ const canonicalBlogUrl = new URL('blog', Astro.site)
<ul>
{ posts.filter(matchesYear(year)).sort(sortByPubDateDescending).map(post => (
<li class="h-entry">
- <a class="u-url p-name" href={`/blog/${post.slug}`}>{post.data.title}</a>
+ <a class="u-url p-name" href={`/blog/${post.slug}`}>{post.data.title}</a>.
+ <Fragment set:html={post.data.description} />
+ Added: <FormattedDate date={post.data.pubDate} />
</li>
)) }
</ul>
)) }
+
+ { (maxEntries !== undefined && maxEntries < allPosts.length)
+ ? <p class="full-feed-link"><a href="/blog">All blog posts</a></p>
+ : <></>
+ }
</section>