feat: серии + count-up в Stats

- SeriesGrid: карточки серий с иконками (Sparkles/Plug/Zap/Layers) и цветовыми темами
- /series/[slug]: страница серии с интро и сеткой статей в порядке из article_ids
- Stats: count-up анимация (easeOutQuart 1.2s) при появлении в viewport через IntersectionObserver
- sitemap.xml: добавлены /notes и все серии
This commit is contained in:
Alexey Pavlov
2026-05-31 10:10:18 +03:00
parent c27985614e
commit 03c10eab6e
6 changed files with 232 additions and 20 deletions
+59
View File
@@ -0,0 +1,59 @@
import Link from 'next/link';
import { Sparkles, Plug, Zap, Layers, ArrowRight } from 'lucide-react';
const ICONS = { Sparkles, Plug, Zap, Layers };
const COLORS = {
emerald: { bg: 'rgb(16 185 129 / 0.1)', dot: '#10b981', text: '#059669' },
teal: { bg: 'rgb(20 184 166 / 0.1)', dot: '#14b8a6', text: '#0d9488' },
amber: { bg: 'rgb(245 158 11 / 0.1)', dot: '#f59e0b', text: '#d97706' },
indigo: { bg: 'rgb(99 102 241 / 0.1)', dot: '#6366f1', text: '#4f46e5' },
};
export default function SeriesGrid({ series }) {
if (!series || series.length === 0) return null;
return (
<section className="container-wide pb-12">
<div className="flex items-center justify-between mb-4 sm:mb-5">
<h2 className="text-xs sm:text-sm font-medium uppercase tracking-widest mute">
Серии
</h2>
</div>
<div className="grid sm:grid-cols-2 lg:grid-cols-3 gap-4 sm:gap-5">
{series.map(s => {
const Icon = ICONS[s.icon] || Layers;
const c = COLORS[s.color] || COLORS.emerald;
return (
<Link
key={s.id}
href={`/series/${s.slug}`}
className="article-card group p-5 sm:p-6 flex flex-col"
>
<div className="flex items-center gap-3 mb-3">
<div
className="w-10 h-10 rounded-lg flex items-center justify-center"
style={{ background: c.bg }}
>
<Icon className="w-5 h-5" style={{ color: c.dot }} />
</div>
<span className="text-xs mute">
{s.articles_count} {s.articles_count === 1 ? 'материал' : 'материалов'}
</span>
</div>
<h3 className="text-lg sm:text-xl font-bold ink mb-2 leading-snug group-hover:accent transition-colors">
{s.title}
</h3>
{s.intro && (
<p className="mute text-sm leading-relaxed mb-4 line-clamp-3 flex-1">
{s.intro}
</p>
)}
<div className="inline-flex items-center gap-1 text-sm font-medium" style={{ color: c.text }}>
Открыть серию <ArrowRight className="w-3.5 h-3.5" />
</div>
</Link>
);
})}
</div>
</section>
);
}
+54 -14
View File
@@ -1,6 +1,41 @@
'use client';
import { useEffect, useRef, useState } from 'react';
import { BookOpen, Clock, Brain, Eye } from 'lucide-react';
function StatCard({ icon: Icon, value, label }) {
function fmt(n) {
if (!n) return '0';
if (n >= 1_000_000) return (n / 1_000_000).toFixed(1) + 'M';
if (n >= 1_000) return (n / 1_000).toFixed(1) + 'K';
return Math.round(n).toLocaleString('ru-RU');
}
/** Плавный count-up от 0 до value за ~1.2 секунды */
function useCountUp(target, run) {
const [val, setVal] = useState(0);
useEffect(() => {
if (!run || !target) { setVal(target || 0); return; }
const reduce = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
if (reduce) { setVal(target); return; }
let start = null;
const duration = 1200;
let raf = 0;
const step = (ts) => {
if (!start) start = ts;
const t = Math.min(1, (ts - start) / duration);
// easeOutQuart для приятной кривой
const eased = 1 - Math.pow(1 - t, 4);
setVal(Math.floor(target * eased));
if (t < 1) raf = requestAnimationFrame(step);
else setVal(target);
};
raf = requestAnimationFrame(step);
return () => cancelAnimationFrame(raf);
}, [target, run]);
return val;
}
function StatCard({ icon: Icon, value, label, run }) {
const animated = useCountUp(value || 0, run);
return (
<div className="article-card flex items-center gap-3 sm:gap-4 p-4 sm:p-5">
<div
@@ -10,32 +45,37 @@ function StatCard({ icon: Icon, value, label }) {
<Icon className="w-4 h-4 sm:w-5 sm:h-5 accent" />
</div>
<div className="min-w-0">
<div className="text-xl sm:text-2xl font-bold ink leading-none mb-1 tabular-nums">{value}</div>
<div className="text-xl sm:text-2xl font-bold ink leading-none mb-1 tabular-nums">{fmt(animated)}</div>
<div className="text-[10px] sm:text-xs mute uppercase tracking-wider truncate">{label}</div>
</div>
</div>
);
}
function fmt(n) {
if (!n) return '0';
if (n >= 1_000_000) return (n / 1_000_000).toFixed(1) + 'M';
if (n >= 1_000) return (n / 1_000).toFixed(1) + 'K';
return n.toLocaleString('ru-RU');
}
export default function Stats({ data }) {
const ref = useRef(null);
const [run, setRun] = useState(false);
useEffect(() => {
if (!ref.current) return;
const io = new IntersectionObserver((entries) => {
if (entries[0].isIntersecting) { setRun(true); io.disconnect(); }
}, { threshold: 0.3 });
io.observe(ref.current);
return () => io.disconnect();
}, []);
if (!data) return null;
return (
<section className="container-wide pb-12">
<section ref={ref} className="container-wide pb-12">
<h2 className="text-xs sm:text-sm font-medium uppercase tracking-widest mute mb-4 sm:mb-5">
Что уже написал ИИ
</h2>
<div className="grid grid-cols-2 lg:grid-cols-4 gap-3 sm:gap-4">
<StatCard icon={BookOpen} value={fmt(data.articles_count)} label="статей" />
<StatCard icon={Clock} value={fmt(data.total_reading_min)} label="мин чтения" />
<StatCard icon={Brain} value={fmt(data.tokens_out)} label="токенов" />
<StatCard icon={Eye} value={fmt(data.total_views)} label="просмотров" />
<StatCard icon={BookOpen} value={data.articles_count} label="статей" run={run} />
<StatCard icon={Clock} value={data.total_reading_min} label="мин чтения" run={run} />
<StatCard icon={Brain} value={data.tokens_out} label="токенов" run={run} />
<StatCard icon={Eye} value={data.total_views} label="просмотров" run={run} />
</div>
</section>
);