feat: Show tag count and fix tag wrapping #11

Merged
aniva merged 2 commits from post/tag into main 2024-10-11 00:47:21 -07:00
4 changed files with 11 additions and 6 deletions
Showing only changes of commit 173f32fb33 - Show all commits

View File

@ -27,7 +27,7 @@ export async function getPosts(tag: string | null = null) {
return posts;
}
export async function getTags() {
export async function getTags() : Promise<Map<string, number>> {
const allPostFiles = import.meta.glob('$content/post/*.md');
const iterablePostFiles = Object.entries(allPostFiles);
@ -37,5 +37,7 @@ export async function getTags() {
return metadata.tags;
})
);
return new Set(allPosts.flat());
return allPosts.flat().reduce((acc: Map<string, number>, curr: string) => {
return acc[curr] ? ++acc[curr] : acc[curr] = 1, acc
}, new Map());
}

View File

@ -13,8 +13,11 @@
<hr class="separator" />
<div id="tags">
{#each allTags as tag}
<a class="tag" href="/tag/{tag}">{tag}</a>
{#each Object.entries(allTags) as [tag, occ]}
<div class="tag">
<a href="/tag/{tag}">{tag}</a>
({occ})
</div>
{/each}
</div>
<hr class="separator" />

View File

@ -2,6 +2,6 @@ import type { PageLoad } from './$types';
import { getTags } from '$lib/posts';
export const load: PageLoad = async (_) => {
const allTags = await getTags();
let allTags = await getTags();
return { allTags };
};

View File

@ -10,7 +10,7 @@
<title>{name} | {siteMetadata.blogName}</title>
</svelte:head>
<h1>{name}</h1>
<h1>{name} ({posts.length})</h1>
<hr class="separator" />
<ul id="catalog" class="content">