Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 6s
Build & Deploy / 🧪 QA (push) Failing after 1m24s
Build & Deploy / 🏗️ Build (push) Failing after 4m3s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🩺 Health Check (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 5s
- Refined hero sections for About, Blog, Websites, and Case Studies for a bespoke industrial entry point. - Redesigned Marker component using layered SVG paths for an organic, hand-drawn highlighter effect. - Restored technical precision in ArchitectureVisualizer with refined line thickness. - Streamlined contact page by removing generic headers and prioritizing the configurator/gateway. - Updated technical references to reflect self-hosted Gitea infrastructure. - Cleaned up unused imports and addressed linting warnings across modified pages.
157 lines
5.6 KiB
TypeScript
157 lines
5.6 KiB
TypeScript
"use client";
|
|
|
|
import * as React from "react";
|
|
import { useState, useEffect } from "react";
|
|
import { MediumCard } from "../../src/components/MediumCard";
|
|
import { BlogCommandBar } from "../../src/components/blog/BlogCommandBar";
|
|
import { blogPosts } from "../../src/data/blogPosts";
|
|
import { SectionHeader } from "../../src/components/SectionHeader";
|
|
import { Reveal } from "../../src/components/Reveal";
|
|
import { Section } from "../../src/components/Section";
|
|
import { AbstractCircuit, GradientMesh } from "../../src/components/Effects";
|
|
|
|
export default function BlogPage() {
|
|
const [searchQuery, setSearchQuery] = useState("");
|
|
const [activeTags, setActiveTags] = useState<string[]>([]);
|
|
|
|
// Memoize allPosts
|
|
const allPosts = React.useMemo(
|
|
() =>
|
|
[...blogPosts].sort(
|
|
(a, b) => new Date(b.date).getTime() - new Date(a.date).getTime(),
|
|
),
|
|
[],
|
|
);
|
|
|
|
const [filteredPosts, setFilteredPosts] = useState(allPosts);
|
|
|
|
// Memoize allTags
|
|
const allTags = React.useMemo(
|
|
() => Array.from(new Set(allPosts.flatMap((post) => post.tags || []))),
|
|
[allPosts],
|
|
);
|
|
|
|
const [visibleCount, setVisibleCount] = useState(8);
|
|
|
|
const handleTagToggle = (tag: string) => {
|
|
setActiveTags((prev) =>
|
|
prev.includes(tag) ? prev.filter((t) => t !== tag) : [...prev, tag],
|
|
);
|
|
setVisibleCount(8); // Reset pagination on filter change
|
|
};
|
|
|
|
useEffect(() => {
|
|
const query = searchQuery.toLowerCase().trim();
|
|
|
|
let filtered = allPosts;
|
|
|
|
if (query) {
|
|
filtered = filtered.filter((post) => {
|
|
const title = post.title.toLowerCase();
|
|
const description = post.description.toLowerCase();
|
|
const pTagString = (post.tags || []).join(" ").toLowerCase();
|
|
return (
|
|
title.includes(query) ||
|
|
description.includes(query) ||
|
|
pTagString.includes(query)
|
|
);
|
|
});
|
|
}
|
|
|
|
if (activeTags.length > 0) {
|
|
filtered = filtered.filter((post) =>
|
|
post.tags?.some((tag) => activeTags.includes(tag)),
|
|
);
|
|
}
|
|
|
|
setFilteredPosts(filtered);
|
|
}, [searchQuery, activeTags, allPosts]);
|
|
|
|
const loadMore = () => {
|
|
setVisibleCount((prev) => prev + 6);
|
|
};
|
|
|
|
const hasMore = visibleCount < filteredPosts.length;
|
|
const postsToShow = filteredPosts.slice(0, visibleCount);
|
|
|
|
return (
|
|
<div className="flex flex-col bg-slate-50/30 overflow-hidden relative min-h-screen">
|
|
<AbstractCircuit />
|
|
|
|
<Section
|
|
effects={<GradientMesh variant="metallic" className="opacity-40" />}
|
|
className="pb-32 pt-12 md:pt-20"
|
|
containerVariant="wide"
|
|
>
|
|
<div className="max-w-[calc(100vw-2rem)] md:max-w-7xl mx-auto space-y-12">
|
|
{/* Section Header & Filters - Centered & Compact */}
|
|
<div className="relative z-20 space-y-12 flex flex-col items-center text-center">
|
|
<SectionHeader
|
|
title="Alle Artikel"
|
|
subtitle="Index"
|
|
align="center"
|
|
className="py-0 md:py-0"
|
|
/>
|
|
<Reveal width="100%" className="max-w-2xl mx-auto">
|
|
<BlogCommandBar
|
|
searchQuery={searchQuery}
|
|
onSearchChange={setSearchQuery}
|
|
tags={allTags}
|
|
activeTags={activeTags}
|
|
onTagToggle={handleTagToggle}
|
|
/>
|
|
</Reveal>
|
|
</div>
|
|
|
|
{/* Posts List (Vertical & Minimal) */}
|
|
<div id="posts-container" className="space-y-12">
|
|
{postsToShow.length === 0 ? (
|
|
<div className="py-24 text-center border border-dashed border-slate-200 rounded-3xl bg-white/50">
|
|
<p className="text-slate-400 font-mono text-sm uppercase tracking-widest">
|
|
Keine Beiträge gefunden.
|
|
</p>
|
|
<button
|
|
onClick={() => {
|
|
setSearchQuery("");
|
|
setActiveTags([]);
|
|
}}
|
|
className="mt-4 text-xs font-bold text-slate-900 underline underline-offset-4 hover:text-slate-600"
|
|
>
|
|
Filter zurücksetzen
|
|
</button>
|
|
</div>
|
|
) : (
|
|
<div className="grid grid-cols-1 gap-6 max-w-3xl mx-auto w-full">
|
|
{postsToShow.map((post, i) => (
|
|
<Reveal key={post.slug} delay={0.05 * i} width="100%">
|
|
<MediumCard post={post} />
|
|
</Reveal>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{/* Pagination */}
|
|
{hasMore && (
|
|
<div className="flex justify-center pt-8">
|
|
<Reveal delay={0.1} width="fit-content">
|
|
<button
|
|
onClick={loadMore}
|
|
className="group relative px-8 py-4 bg-white border border-slate-200 text-slate-600 rounded-full overflow-hidden transition-all hover:border-slate-400 hover:text-slate-900 hover:shadow-lg"
|
|
>
|
|
<span className="relative z-10 font-mono text-xs uppercase tracking-widest flex items-center gap-3">
|
|
Mehr laden
|
|
<div className="w-1 h-1 bg-slate-300 rounded-full group-hover:bg-slate-900 transition-colors" />
|
|
<div className="w-1 h-1 bg-slate-300 rounded-full group-hover:bg-slate-900 transition-colors delay-75" />
|
|
<div className="w-1 h-1 bg-slate-300 rounded-full group-hover:bg-slate-900 transition-colors delay-150" />
|
|
</span>
|
|
</button>
|
|
</Reveal>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</Section>
|
|
</div>
|
|
);
|
|
}
|