summaryrefslogtreecommitdiff
path: root/src/components/NewsIndex/NewsIndex.astro
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-20 07:57:21 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-20 07:57:21 +0100
commit869976b711d862581d1d99bf884dd166b1ecdf3b (patch)
tree966024bf1d14ffbc36d719d51ab8d2b88b5b3f15 /src/components/NewsIndex/NewsIndex.astro
parent863b292304fe130f8a91b191c3b844521ef19ac3 (diff)
Pulls out NewsIndex Astro component
Diffstat (limited to 'src/components/NewsIndex/NewsIndex.astro')
-rw-r--r--src/components/NewsIndex/NewsIndex.astro25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/components/NewsIndex/NewsIndex.astro b/src/components/NewsIndex/NewsIndex.astro
new file mode 100644
index 0000000..6738071
--- /dev/null
+++ b/src/components/NewsIndex/NewsIndex.astro
@@ -0,0 +1,25 @@
+---
+import type { CollectionEntry } from 'astro:content';
+import NewsPreviewLink from './NewsPreviewLink.astro';
+import getLocaleFromPath from '$lib/getLocaleFromPath';
+import translate from '$i18n/translate';
+import tComponent from '$i18n/translations/components/newsIndex';
+interface Props {
+ headingLevel: 'h2' | 'h3' | 'h4';
+ newsItems: CollectionEntry<'news'>[];
+}
+
+const { headingLevel, newsItems } = Astro.props;
+const locale = getLocaleFromPath(Astro.url.pathname);
+const t = translate(locale);
+---
+
+<div class="news-index">
+ {
+ newsItems.length > 0 ? (
+ newsItems.map((item) => <NewsPreviewLink headingLevel={headingLevel} newsItem={item} />)
+ ) : (
+ <p>{t(tComponent, { key: 'no-news' })}</p>
+ )
+ }
+</div>