merge: branch 'post/tag' into routing/extra

This commit is contained in:
Leni Aniva 2024-10-10 15:22:35 -07:00
commit 99ce735252
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
4 changed files with 16 additions and 7 deletions

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

@ -12,15 +12,22 @@
<h1>Tags</h1>
<hr class="separator" />
<div id="catalog" class="content">
{#each allTags as tag}
<a class="tag" href="/tag/{tag}">{tag}</a>
<div id="tags">
{#each Object.entries(allTags) as [tag, occ]}
<div class="tag">
<a href="/tag/{tag}">{tag}</a>
({occ})
</div>
{/each}
</div>
<hr class="separator" />
<style>
#tags {
display: inline-block;
}
.tag {
display: inline-block;
margin-left: 1em;
margin-right: 1em;
}

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">