add: category, date sorting
Add category layouts and date sorting
This commit is contained in:
parent
91b59e4ebe
commit
9b66a79a8c
17 changed files with 2495 additions and 17729 deletions
|
@ -12,6 +12,17 @@
|
|||
scale: 1.05;
|
||||
}
|
||||
|
||||
& > .image {
|
||||
flex: 0 0 200px;
|
||||
width: 100%;
|
||||
|
||||
& img {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
& .card-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
@ -24,6 +35,11 @@
|
|||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
& header {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
& footer {
|
||||
margin-top: auto;
|
||||
display: flex;
|
||||
|
@ -41,4 +57,12 @@
|
|||
color: var(--color-orange);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (width <= 780px) {
|
||||
.BlogCard header {
|
||||
align-items: center;
|
||||
}
|
||||
}
|
|
@ -290,7 +290,7 @@ span.chip {
|
|||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
|
@ -325,7 +325,7 @@ span.chip {
|
|||
}
|
||||
|
||||
@media (width <= 780px) {
|
||||
h1, h2, h3, h4, h5, h6, p {
|
||||
h1, h2, h3, h4, h5, h6, p, small {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<aside class="BlogAuthor">
|
||||
<div class="image">
|
||||
<img :src="image" :alt="`Bild von ${name}`" />
|
||||
<img :src="image" :alt="`Bild von ${name}`"/>
|
||||
</div>
|
||||
<div class="meta">
|
||||
<span class="name">{{ name }}</span>
|
||||
|
@ -12,9 +12,9 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
type Props = {
|
||||
name : string
|
||||
image : string
|
||||
date : string
|
||||
name: string
|
||||
image: string
|
||||
date: string
|
||||
}
|
||||
|
||||
const { date } = defineProps<Props>()
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
<template>
|
||||
<NuxtLink :to="link" class="BlogCard z-2">
|
||||
<img :src="image" alt=" " aria-hidden="true" />
|
||||
<div class="image">
|
||||
<img :src="image" alt=" " aria-hidden="true" />
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<header>
|
||||
<span class="chip">{{ category }}</span>
|
||||
<span class="chip"><BlogCategory :name="category" /></span>
|
||||
<h2>{{ title }}</h2>
|
||||
<small>{{ description }}</small>
|
||||
</header>
|
||||
|
@ -22,6 +24,8 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import type { Category } from './types'
|
||||
|
||||
type Props = {
|
||||
title : string
|
||||
description : string
|
||||
|
@ -30,7 +34,7 @@ type Props = {
|
|||
excerpt : { type: string, children?: any }
|
||||
link : string
|
||||
tags : string[]
|
||||
category : string
|
||||
category : Category
|
||||
author : {
|
||||
name : string
|
||||
image : string
|
||||
|
|
24
app/components/Blog/Category.vue
Normal file
24
app/components/Blog/Category.vue
Normal file
|
@ -0,0 +1,24 @@
|
|||
<template>
|
||||
<Icon :name="icon" mode="svg"/>
|
||||
{{ name }}
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import type { Category } from './types'
|
||||
|
||||
type Props = {
|
||||
name: Category
|
||||
}
|
||||
|
||||
const { name } = defineProps<Props>()
|
||||
|
||||
const icons: Record<Category, string> = {
|
||||
'story': 'ph:chat-circle-dots-duotone',
|
||||
'snippet': 'ph:code-duotone',
|
||||
'tutorial': 'ph:lightbulb-duotone',
|
||||
'news': 'ph:newspaper-duotone',
|
||||
'freelancing': 'ph:laptop-duotone',
|
||||
}
|
||||
|
||||
const icon = computed(() => name ? icons[name] : 'ph:question-mark-duotone')
|
||||
</script>
|
1
app/components/Blog/types.ts
Normal file
1
app/components/Blog/types.ts
Normal file
|
@ -0,0 +1 @@
|
|||
export type Category = 'story' | 'snippet' | 'tutorial' | 'news' | 'freelancing'
|
|
@ -1,25 +1,33 @@
|
|||
<template>
|
||||
<section id="blog" class="Blog content">
|
||||
<div class="grid">
|
||||
<BlogCard v-for="article in articles" v-bind="makeBlogCard(article)" />
|
||||
<BlogCard v-for="article in articles" v-bind="makeBlogCard(article)"/>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const { data } = await useAsyncData('articles', () => queryCollection('blog').limit(10).all())
|
||||
import type { Category } from '../../components/Blog/types'
|
||||
|
||||
const { data } = await useAsyncData('articles', () => queryCollection('blog').order('date', 'DESC').limit(10).all())
|
||||
|
||||
const articles = data.value!
|
||||
|
||||
const makeBlogCard = (article : typeof articles[0]) => ({
|
||||
const makeBlogCard = (article: typeof articles[0]) => ({
|
||||
title: article.title,
|
||||
description: article.description,
|
||||
image: article.meta.image as string,
|
||||
date: article.meta.date as string,
|
||||
date: article.date as string,
|
||||
excerpt: article.excerpt,
|
||||
link: article.path,
|
||||
tags: article.meta.tags as string[],
|
||||
category: article.meta.category as string,
|
||||
category: article.meta.category as Category,
|
||||
author: article.meta.author as { name: string, image: string },
|
||||
})
|
||||
|
||||
useHead({
|
||||
link: [
|
||||
{ rel: 'alternate', type: 'application/rss+xml', href: '/blog/rss.xml', title: 'blogfussel' },
|
||||
],
|
||||
})
|
||||
</script>
|
|
@ -6,6 +6,7 @@ export default defineContentConfig({
|
|||
type: 'page',
|
||||
source: 'blog/*.md',
|
||||
schema: z.object({
|
||||
date: z.string(),
|
||||
excerpt: z.object({
|
||||
type: z.string(),
|
||||
children: z.any(),
|
||||
|
@ -23,7 +24,7 @@ export default defineContentConfig({
|
|||
source: 'snippets/faq/*.md',
|
||||
schema: z.object({
|
||||
rawbody: z.string(),
|
||||
})
|
||||
})
|
||||
}
|
||||
}),
|
||||
}),
|
||||
},
|
||||
})
|
|
@ -4,14 +4,15 @@ title: 'Blogfussel - für mehr Fussel im Blog'
|
|||
description: 'Und nochmal...'
|
||||
navigation: true
|
||||
date: 2025-07-01
|
||||
category: 'start'
|
||||
tags: ['start', 'story']
|
||||
category: 'story'
|
||||
tags: [ 'start', 'story' ]
|
||||
author:
|
||||
name: 'webfussel'
|
||||
image: '/img/og.webp'
|
||||
---
|
||||
|
||||
Warum ich mich dazu entschlossen habe jetzt doch wieder mit dem Bloggen anzufangen? Nun ja, das hat alles angefangen, als man mich einfach so auf Instagram gesperrt hat.
|
||||
Warum ich mich dazu entschlossen habe jetzt doch wieder mit dem Bloggen anzufangen? Nun ja, das hat alles angefangen, als man mich einfach so auf
|
||||
Instagram gesperrt hat.
|
||||
|
||||
<!-- more -->
|
||||
|
||||
|
|
|
@ -3,9 +3,9 @@ image: 'https://picsum.photos/600/250?random=3'
|
|||
title: 'Post 1'
|
||||
description: 'Blablabla'
|
||||
navigation: true
|
||||
date: 2025-07-01
|
||||
category: 'test'
|
||||
tags: ['test', 'wasd']
|
||||
date: 2025-06-20
|
||||
category: 'tutorial'
|
||||
tags: [ 'test', 'wasd' ]
|
||||
author:
|
||||
name: 'webfussel'
|
||||
image: '/img/og.webp'
|
||||
|
|
|
@ -3,9 +3,9 @@ image: 'https://picsum.photos/600/250?random=2'
|
|||
title: 'Post 2'
|
||||
description: 'Blablabla'
|
||||
navigation: true
|
||||
date: 2025-07-01
|
||||
category: 'test'
|
||||
tags: ['test', 'asdf']
|
||||
date: 2025-06-16
|
||||
category: 'snippet'
|
||||
tags: [ 'test', 'asdf' ]
|
||||
author:
|
||||
name: 'webfussel'
|
||||
image: '/img/og.webp'
|
||||
|
|
|
@ -3,9 +3,9 @@ image: 'https://picsum.photos/600/250?random=1'
|
|||
title: 'Post 3'
|
||||
description: 'Blablabla'
|
||||
navigation: true
|
||||
date: 2025-07-01
|
||||
category: 'test'
|
||||
tags: ['test', '123']
|
||||
date: 2025-06-25
|
||||
category: 'freelancing'
|
||||
tags: [ 'test', '123' ]
|
||||
author:
|
||||
name: 'webfussel'
|
||||
image: '/img/og.webp'
|
||||
|
|
18
content/blog/0004.entry4.md
Normal file
18
content/blog/0004.entry4.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
image: 'https://picsum.photos/600/250?random=5'
|
||||
title: 'Post 4'
|
||||
description: 'Blablabla'
|
||||
navigation: true
|
||||
date: 2025-06-25
|
||||
category: 'news'
|
||||
tags: [ 'test', '123' ]
|
||||
author:
|
||||
name: 'webfussel'
|
||||
image: '/img/og.webp'
|
||||
---
|
||||
|
||||
Blablabla test 1 2 3
|
||||
|
||||
<!-- more -->
|
||||
|
||||
Noch mehr Text
|
17696
package-lock.json
generated
17696
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -9,9 +9,7 @@
|
|||
"generate": "nuxt generate",
|
||||
"preview": "nuxt preview",
|
||||
"gen:prev": "nuxt generate && nuxt preview",
|
||||
"postinstall": "nuxt prepare",
|
||||
"generate:deploy": "nuxt generate && firebase deploy --only hosting",
|
||||
"build:deploy": "nuxt build && firebase deploy --only hosting"
|
||||
"postinstall": "nuxt prepare"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@iconify-json/material-symbols": "^1.2.14",
|
||||
|
@ -27,5 +25,8 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@nuxt/content": "^3.5.1"
|
||||
}
|
||||
},
|
||||
"trustedDependencies": [
|
||||
"@parcel/watcher"
|
||||
]
|
||||
}
|
||||
|
|
39
server/routes/blog/rss.xml.ts
Normal file
39
server/routes/blog/rss.xml.ts
Normal file
|
@ -0,0 +1,39 @@
|
|||
import { BlogCollectionItem } from '@nuxt/content'
|
||||
|
||||
const clean = (value: string) => value
|
||||
.replace(/&/g, '&')
|
||||
.replace(/</g, '<')
|
||||
.replace(/>/g, '>')
|
||||
.replace(/ä/g, 'ä')
|
||||
.replace(/ö/g, 'ö')
|
||||
.replace(/ü/g, 'ü')
|
||||
.replace(/ß/g, 'ß')
|
||||
|
||||
const makeItem = (article: BlogCollectionItem, base: string) => `
|
||||
<item>
|
||||
<title>${clean(article.title)}</title>
|
||||
<description>${clean(article.description)}</description>
|
||||
<link>${base}${article.path}</link>
|
||||
</item>
|
||||
`
|
||||
|
||||
export default defineEventHandler(async event => {
|
||||
const baseUrl = getRequestURL(event)
|
||||
const blogUrl = `${baseUrl.protocol}//${baseUrl.host}`
|
||||
|
||||
const articles = (await queryCollection(event, 'blog').order('date', 'DESC').all())
|
||||
|
||||
const xmlItems = articles.map(article => makeItem(article, blogUrl)).join('')
|
||||
|
||||
return `<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0">
|
||||
<channel>
|
||||
<title>Blogfussel</title>
|
||||
<link>${baseUrl}/blog</link>
|
||||
<description>für mehr Fussel im Blog</description>
|
||||
<language>de</language>
|
||||
${xmlItems}
|
||||
</channel>
|
||||
</rss>
|
||||
`
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue