Files
indiekit-blog/blogroll.njk
Ricardo cb3c2115ae feat: implement design system — domain colors, date typography, interaction states, CV family colors
Apply the collaboratively-written design system from .interface-design/system.md:

- Domain color map: Social pages (rose), Code pages (emerald), Reading pages
  (orange), Music pages (purple) replace generic accent tokens
- Font-mono on all <time> elements via global CSS rule + wrap 7 non-<time> dates
- Shadow standardization: replace hover:shadow-lg with border-hover on news cards
- Active states: scale(0.97) press feedback on buttons and pagination links
- Gradient cleanup: remove to-white gradient on github featured project cards
- CV Skills & Interests: cycle through 8 distinct colors per family category
  (amber, emerald, sky, rose, purple, orange, teal, indigo) on both CV page
  and homepage
- Update system.md with refined palette documentation and domain color spec

Files: 19 changed across templates, CSS, and design documentation

Confab-Link: http://localhost:8080/sessions/bd3f7012-c703-47e9-bfe2-2ad04ce1842d
2026-03-04 15:13:34 +01:00

426 lines
19 KiB
Plaintext

---
layout: layouts/base.njk
title: Blogroll
permalink: /blogroll/
---
<div class="blogroll-page" x-data="blogrollApp()" x-init="init()">
<header class="mb-6 sm:mb-8">
<h1 class="text-2xl sm:text-3xl md:text-4xl font-bold text-surface-900 dark:text-surface-100 mb-2">
<svg class="w-8 h-8 inline-block mr-2 text-orange-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z"/>
</svg>
Blogroll
</h1>
<p class="text-surface-600 dark:text-surface-400">
Blogs I follow - <span x-text="blogs.length" class="font-medium"></span> feeds
</p>
<p class="text-xs text-surface-500 mt-2" x-show="status?.lastSync">
Last synced: <span x-text="formatDate(status?.lastSync, 'full')"></span>
</p>
</header>
{# Tab Navigation - All Blogs first, then one tab per category #}
<div class="mb-6 border-b border-surface-200 dark:border-surface-700">
<nav class="flex gap-1 overflow-x-auto -mb-px" aria-label="Tabs">
<button
@click="switchTab('blogs')"
:class="activeTab === 'blogs' ? 'border-orange-500 text-orange-600 dark:text-orange-400' : 'border-transparent text-surface-500 hover:text-surface-700 dark:hover:text-surface-300'"
class="pb-3 px-3 border-b-2 font-medium text-sm transition-colors whitespace-nowrap flex-shrink-0"
>
All Blogs
</button>
<template x-for="cat in categories" :key="cat.name">
<button
@click="switchTab('category:' + cat.name)"
:class="activeTab === 'category:' + cat.name ? 'border-orange-500 text-orange-600 dark:text-orange-400' : 'border-transparent text-surface-500 hover:text-surface-700 dark:hover:text-surface-300'"
class="pb-3 px-3 border-b-2 font-medium text-sm transition-colors whitespace-nowrap flex-shrink-0"
>
<span x-text="cat.name"></span>
<span class="text-xs opacity-60 ml-1" x-text="`(${cat.count})`"></span>
</button>
</template>
</nav>
</div>
<div class="layout-with-sidebar">
{# Main Content #}
<div class="main-content">
{# Loading State #}
<div x-show="loading" class="text-center py-12">
<svg class="w-8 h-8 mx-auto text-orange-600 animate-spin mb-4" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>
<p class="text-surface-600 dark:text-surface-400">Loading...</p>
</div>
{# Error State #}
<div x-show="error" class="bg-red-50 dark:bg-red-900/20 border border-red-200 dark:border-red-800 rounded-lg p-4 mb-6">
<p class="text-red-700 dark:text-red-400" x-text="error"></p>
<button @click="fetchData()" class="mt-2 text-sm text-red-600 hover:text-red-700 underline">Try again</button>
</div>
{# All Blogs Tab #}
<div x-show="activeTab === 'blogs' && !loading" class="grid gap-4 sm:grid-cols-2 lg:grid-cols-3">
<template x-for="blog in blogs" :key="blog.id">
<a
:href="blog.siteUrl || blog.feedUrl"
class="block bg-surface-50 dark:bg-surface-800 rounded-xl border border-surface-200 dark:border-surface-700 p-4 hover:border-orange-400 dark:hover:border-orange-600 transition-colors group"
target="_blank"
rel="noopener"
>
<div class="flex items-center gap-3 mb-2">
<div class="w-10 h-10 rounded-lg bg-gradient-to-br from-orange-400 to-orange-600 flex items-center justify-center flex-shrink-0 overflow-hidden">
<img x-show="blog.photo" :src="blog.photo" class="w-10 h-10 object-cover" loading="lazy" />
<span x-show="!blog.photo" class="text-white text-sm font-bold" x-text="blog.title?.charAt(0)?.toUpperCase()"></span>
</div>
<div class="flex-1 min-w-0">
<h3 class="font-medium text-surface-900 dark:text-surface-100 truncate group-hover:text-orange-600 dark:group-hover:text-orange-400 transition-colors" x-text="blog.title"></h3>
<p x-show="blog.category" class="text-xs text-surface-500 truncate" x-text="blog.category"></p>
</div>
</div>
<p x-show="blog.description" class="text-sm text-surface-600 dark:text-surface-400 line-clamp-2 mb-3" x-text="blog.description"></p>
<div class="flex items-center gap-3 text-xs text-surface-500">
<span x-text="`${blog.itemCount || 0} posts`"></span>
<span :class="blog.status === 'active' ? 'text-green-500' : 'text-red-500'">
<span x-show="blog.status === 'active'" class="flex items-center gap-1">
<svg class="w-3 h-3" fill="currentColor" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/></svg>
Active
</span>
<span x-show="blog.status === 'error'" class="flex items-center gap-1">
<svg class="w-3 h-3" fill="currentColor" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/></svg>
Error
</span>
</span>
</div>
</a>
</template>
</div>
{# Empty State for Blogs #}
<div x-show="!loading && blogs.length === 0 && activeTab === 'blogs' && !error" class="text-center py-12">
<svg class="w-16 h-16 mx-auto text-surface-300 dark:text-surface-600 mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z"/>
</svg>
<p class="text-surface-600 dark:text-surface-400 text-lg">No blogs yet.</p>
<p class="text-surface-500 text-sm mt-2">Add blogs via the admin dashboard.</p>
</div>
{# Category Items Tab (one for each category) #}
<div x-show="activeTab.startsWith('category:') && !loading" class="space-y-4">
<template x-for="item in categoryItems" :key="item.id">
<article class="bg-surface-50 dark:bg-surface-800 rounded-xl border border-surface-200 dark:border-surface-700 p-4 sm:p-6 hover:border-orange-400 dark:hover:border-orange-600 transition-colors">
<div class="flex items-start gap-4">
<div class="flex-1 min-w-0">
<div class="flex items-center gap-2 mb-1">
<h2 class="font-semibold text-lg text-surface-900 dark:text-surface-100">
<a :href="item.url" class="hover:text-orange-600 dark:hover:text-orange-400" target="_blank" rel="noopener" x-text="item.title"></a>
</h2>
<span
x-show="item.isFuture"
class="inline-flex items-center gap-1 px-2 py-0.5 bg-orange-100 dark:bg-orange-900/30 text-orange-700 dark:text-orange-400 rounded-full text-xs font-medium flex-shrink-0"
>
<svg class="w-3 h-3" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
Upcoming
</span>
</div>
<div class="flex flex-wrap items-center gap-2 text-sm text-surface-500 mb-3">
<a
:href="item.blog?.siteUrl || '#'"
class="inline-flex items-center gap-1 px-2 py-0.5 bg-orange-100 dark:bg-orange-900/30 text-orange-700 dark:text-orange-400 rounded-full hover:bg-orange-200 dark:hover:bg-orange-900/50 transition-colors"
target="_blank"
rel="noopener"
>
<svg class="w-3 h-3" fill="currentColor" viewBox="0 0 24 24">
<circle cx="6.18" cy="17.82" r="2.18"/>
<path d="M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"/>
</svg>
<span x-text="item.blog?.title || 'Unknown'"></span>
</a>
<time :datetime="item.published" x-text="formatDate(item.published)"></time>
</div>
<p x-show="item.summary" class="text-sm text-surface-600 dark:text-surface-400 line-clamp-3" x-text="item.summary"></p>
</div>
<img
x-show="item.photo && item.photo[0]"
:src="item.photo?.[0]"
class="w-24 h-24 rounded-lg object-cover flex-shrink-0 hidden sm:block"
loading="lazy"
/>
</div>
{# Actions #}
<div class="flex flex-wrap items-center gap-3 mt-4 pt-4 border-t border-surface-200 dark:border-surface-700">
<a
:href="item.url"
class="inline-flex items-center gap-2 text-sm text-orange-600 hover:text-orange-700 dark:text-orange-400"
target="_blank"
rel="noopener"
>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
Read Post
</a>
<a
x-show="item.blog?.siteUrl"
:href="item.blog?.siteUrl"
class="inline-flex items-center gap-2 text-sm text-surface-500 hover:text-surface-700 dark:hover:text-surface-300"
target="_blank"
rel="noopener"
>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/>
</svg>
Visit Blog
</a>
<button
class="share-post-btn"
:data-share-url="item.url"
:data-share-title="item.title"
title="Create post"
aria-label="Create post"
>
<span class="share-post-icon">✏️</span>
<span class="share-post-label">Post</span>
</button>
<button
class="save-later-btn"
:data-save-url="item.url"
:data-save-title="item.title"
data-save-source="blogroll"
title="Save for later"
aria-label="Save for later"
>
<span class="save-later-icon">📑</span>
<span class="save-later-label">Save</span>
</button>
</div>
</article>
</template>
{# Load More #}
<div x-show="categoryHasMore" class="text-center mt-8">
<button
@click="loadMoreCategory()"
:disabled="loadingMore"
class="px-6 py-3 bg-orange-600 hover:bg-orange-700 text-white rounded-lg text-sm font-medium transition-colors disabled:opacity-50"
>
<span x-show="!loadingMore">Load More</span>
<span x-show="loadingMore" class="flex items-center gap-2">
<svg class="w-4 h-4 animate-spin" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"></path>
</svg>
Loading...
</span>
</button>
</div>
{# Empty State for Category Items #}
<div x-show="categoryItems.length === 0 && !error" class="text-center py-12">
<svg class="w-16 h-16 mx-auto text-surface-300 dark:text-surface-600 mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M19 20H5a2 2 0 01-2-2V6a2 2 0 012-2h10a2 2 0 012 2v1m2 13a2 2 0 01-2-2V7m2 13a2 2 0 002-2V9a2 2 0 00-2-2h-2m-4-3H9M7 16h6M7 8h6v4H7V8z"/>
</svg>
<p class="text-surface-600 dark:text-surface-400 text-lg">No posts in this category yet.</p>
<p class="text-surface-500 text-sm mt-2">Posts will appear once blogs are synced.</p>
</div>
</div>
</div>
{# Sidebar #}
<aside class="sidebar">
{# OPML Download Widget #}
<div class="widget">
<h3 class="widget-title">Subscribe</h3>
<p class="text-sm text-surface-600 dark:text-surface-400 mb-4">
Import this blogroll into your feed reader.
</p>
<a
href="/blogrollapi/api/opml"
class="inline-flex items-center gap-2 px-4 py-2 bg-surface-100 dark:bg-surface-800 hover:bg-surface-200 dark:hover:bg-surface-700 rounded-lg text-sm transition-colors"
download="blogroll.opml"
>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"/>
</svg>
Download OPML
</a>
</div>
{# Stats Widget #}
<div class="widget" x-show="status">
<h3 class="widget-title">Stats</h3>
<div class="grid grid-cols-2 gap-3 text-center">
<div class="p-3 bg-surface-50 dark:bg-surface-800 rounded-lg">
<span class="text-2xl font-bold text-orange-600 dark:text-orange-400 block" x-text="status?.blogs?.count || 0"></span>
<span class="text-xs text-surface-500 uppercase">Blogs</span>
</div>
<div class="p-3 bg-surface-50 dark:bg-surface-800 rounded-lg">
<span class="text-2xl font-bold text-orange-600 dark:text-orange-400 block" x-text="status?.items?.count || 0"></span>
<span class="text-xs text-surface-500 uppercase">Posts</span>
</div>
</div>
</div>
{# Category Quick Links (for when on blogs tab) #}
<div class="widget" x-show="categories.length > 0">
<h3 class="widget-title flex items-center gap-2">
<svg class="w-5 h-5 text-orange-600" fill="currentColor" viewBox="0 0 24 24">
<circle cx="6.18" cy="17.82" r="2.18"/>
<path d="M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"/>
</svg>
Categories
</h3>
<ul class="space-y-1 mt-4">
<template x-for="cat in categories" :key="cat.name">
<li>
<button
@click="switchTab('category:' + cat.name)"
:class="activeTab === 'category:' + cat.name ? 'bg-orange-100 dark:bg-orange-900/30 text-orange-700 dark:text-orange-400' : 'hover:bg-surface-100 dark:hover:bg-surface-700'"
class="w-full text-left px-3 py-2 rounded-lg text-sm transition-colors"
>
<span x-text="cat.name"></span>
<span class="text-surface-500" x-text="`(${cat.count})`"></span>
</button>
</li>
</template>
</ul>
</div>
</aside>
</div>
</div>
<script>
function blogrollApp() {
return {
blogs: [],
categories: [],
status: null,
loading: true,
loadingMore: false,
error: null,
activeTab: 'blogs',
// Category items (loaded per-tab)
categoryItems: [],
categoryOffset: 0,
categoryHasMore: false,
limit: 20,
// Cache category items to avoid re-fetching on tab switch
categoryCache: {},
async init() {
await this.fetchData();
},
async fetchData() {
this.loading = true;
this.error = null;
try {
const [blogsRes, catsRes, statusRes] = await Promise.all([
fetch('/blogrollapi/api/blogs?limit=200').then(r => r.json()),
fetch('/blogrollapi/api/categories').then(r => r.json()),
fetch('/blogrollapi/api/status').then(r => r.json())
]);
this.blogs = blogsRes.items || [];
this.categories = catsRes.items || [];
this.status = statusRes;
} catch (err) {
this.error = 'Failed to load blogroll: ' + err.message;
console.error('Blogroll fetch error:', err);
} finally {
this.loading = false;
}
},
async switchTab(tab) {
this.activeTab = tab;
if (tab.startsWith('category:')) {
const categoryName = tab.replace('category:', '');
await this.fetchCategoryItems(categoryName);
}
},
async fetchCategoryItems(category) {
// Use cache if available
if (this.categoryCache[category]) {
this.categoryItems = this.categoryCache[category].items;
this.categoryHasMore = this.categoryCache[category].hasMore;
this.categoryOffset = this.categoryCache[category].offset;
return;
}
this.loading = true;
this.categoryOffset = 0;
try {
const catParam = encodeURIComponent(category);
const res = await fetch(`/blogrollapi/api/items?limit=${this.limit}&category=${catParam}`).then(r => r.json());
this.categoryItems = res.items || [];
this.categoryHasMore = res.hasMore || false;
// Cache the result
this.categoryCache[category] = {
items: this.categoryItems,
hasMore: this.categoryHasMore,
offset: 0
};
} catch (err) {
this.error = 'Failed to load posts: ' + err.message;
console.error('Category fetch error:', err);
} finally {
this.loading = false;
}
},
async loadMoreCategory() {
const categoryName = this.activeTab.replace('category:', '');
this.loadingMore = true;
const newOffset = this.categoryOffset + this.limit;
try {
const catParam = encodeURIComponent(categoryName);
const res = await fetch(`/blogrollapi/api/items?limit=${this.limit}&offset=${newOffset}&category=${catParam}`).then(r => r.json());
this.categoryItems = [...this.categoryItems, ...(res.items || [])];
this.categoryHasMore = res.hasMore || false;
this.categoryOffset = newOffset;
// Update cache
this.categoryCache[categoryName] = {
items: this.categoryItems,
hasMore: this.categoryHasMore,
offset: newOffset
};
} catch (err) {
console.error('Load more error:', err);
} finally {
this.loadingMore = false;
}
},
formatDate(dateStr, format = 'short') {
if (!dateStr) return '';
const date = new Date(dateStr);
if (isNaN(date.getTime())) return '';
if (format === 'full') {
return date.toLocaleString(undefined, {
year: 'numeric', month: 'short', day: 'numeric',
hour: '2-digit', minute: '2-digit'
});
}
return date.toLocaleDateString(undefined, {
month: 'short', day: 'numeric', year: 'numeric'
});
}
};
}
</script>