refactor(blog): drive blog and home sections from markdown data

This commit is contained in:
Poyraz Avsever
2026-03-11 11:03:00 +03:00
parent 2fbf1f532d
commit be43edc6a6
10 changed files with 304 additions and 633 deletions
+86 -55
View File
@@ -1,5 +1,4 @@
"use client";
import Link from "next/link";
import { Badge, Card, Typography } from "poyraz-ui/atoms";
import {
ArticleCard,
@@ -11,19 +10,25 @@ import {
PaginationNext,
PaginationPrevious,
} from "poyraz-ui/molecules";
import {
BLOG_ARTICLES,
BLOG_CATEGORIES,
BLOG_NEWS,
RECENT_COMMENTS,
} from "@/data/blog";
import type { BlogPageData } from "@/data/blog";
type BlogContentProps = {
data: BlogPageData;
};
function pageHref(page: number) {
return page <= 1 ? "/blog" : `/blog?page=${page}`;
}
export function BlogContent({ data }: BlogContentProps) {
const pageNumbers = Array.from({ length: data.totalPages }, (_, index) => index + 1);
const hasArticles = data.articles.length > 0;
export function BlogContent() {
return (
<section className="flex h-full flex-col gap-3 overflow-hidden">
<div className="grid gap-3 md:grid-cols-[1.35fr_1fr]">
<div className="space-y-2">
{BLOG_NEWS.map((post) => (
{data.news.map((post) => (
<NewsCard
key={post.id}
image={post.image}
@@ -40,7 +45,7 @@ export function BlogContent() {
<Card className="rounded-sm border-border p-4">
<Typography variant="large">Kategoriler</Typography>
<div className="mt-3 flex flex-wrap gap-2">
{BLOG_CATEGORIES.map((category, index) => (
{data.categories.map((category, index) => (
<Badge
key={category}
variant={index === 0 ? "default" : "outline"}
@@ -53,63 +58,89 @@ export function BlogContent() {
</Card>
<Card className="rounded-sm border-border p-4">
<Typography variant="large">Son yorumlar</Typography>
<div className="mt-3 space-y-2">
{RECENT_COMMENTS.map((comment) => (
<Card key={comment.id} className="rounded-sm border-border p-3">
<Typography variant="small" className="font-semibold text-foreground">
{comment.author}
</Typography>
<Typography variant="small" className="mt-1 text-muted-foreground">
{comment.text}
</Typography>
<Typography variant="small" className="mt-2 text-red-600">
{comment.date}
</Typography>
<Typography variant="large">Podcast İçerikleri</Typography>
<div className="mt-3 space-y-3">
{data.podcastGroups.map((group) => (
<Card key={group.id} className="rounded-sm border-border p-3">
<div className="flex items-center justify-between gap-2">
<Typography variant="small" className="font-semibold text-foreground">
{group.title}
</Typography>
<Link
href={group.href}
className="text-xs text-muted-foreground underline transition-colors hover:text-foreground"
>
Tümünü Gör
</Link>
</div>
<div className="mt-2 space-y-2">
{group.items.map((episode) => (
<div key={episode.id} className="rounded-sm border border-border p-2">
<Typography variant="small" className="font-medium text-foreground">
{episode.title}
</Typography>
<Typography variant="small" className="mt-0.5 text-muted-foreground">
{episode.date}
</Typography>
</div>
))}
</div>
</Card>
))}
</div>
</Card>
</div>
</div>
<div className="space-y-3">
<div className="grid gap-3 md:grid-cols-3">
{BLOG_ARTICLES.map((post) => (
<ArticleCard
key={post.id}
image={post.image}
category={post.category}
title={post.title}
excerpt={post.excerpt}
date={post.date}
readTime={post.readTime}
href={post.href}
className="rounded-sm border-border"
author={{ name: "Poyraz Avsever", avatar: "/logo/logo.jpeg" }}
/>
))}
</div>
{hasArticles ? (
<div className="grid gap-3 md:grid-cols-3">
{data.articles.map((post) => (
<ArticleCard
key={post.id}
image={post.image}
category={post.category}
title={post.title}
excerpt={post.excerpt}
date={post.date}
readTime={post.readTime}
href={post.href}
className="rounded-sm border-border"
author={{ name: post.author, avatar: "/logo/logo.jpeg" }}
/>
))}
</div>
) : (
<Card className="rounded-sm border-border p-5">
<Typography variant="p" className="text-muted-foreground">
Henüz blog yazısı bulunmuyor.
</Typography>
</Card>
)}
<Pagination className="mx-0 mt-4 justify-end">
<Pagination className="mx-0 mt-4 justify-start">
<PaginationContent className="justify-start">
<PaginationItem>
<PaginationPrevious href="/blog" />
<PaginationPrevious
href={pageHref(Math.max(1, data.currentPage - 1))}
aria-disabled={data.currentPage <= 1}
/>
</PaginationItem>
{pageNumbers.map((page) => (
<PaginationItem key={page}>
<PaginationLink href={pageHref(page)} isActive={page === data.currentPage}>
{page}
</PaginationLink>
</PaginationItem>
))}
<PaginationItem>
<PaginationLink href="/blog" isActive>
1
</PaginationLink>
</PaginationItem>
<PaginationItem>
<PaginationLink href="/blog?page=2">2</PaginationLink>
</PaginationItem>
<PaginationItem>
<PaginationLink href="/blog?page=3">3</PaginationLink>
</PaginationItem>
<PaginationItem>
<PaginationNext href="/blog?page=2" />
<PaginationNext
href={pageHref(Math.min(data.totalPages, data.currentPage + 1))}
aria-disabled={data.currentPage >= data.totalPages}
/>
</PaginationItem>
</PaginationContent>
</Pagination>
+10 -255
View File
@@ -5,31 +5,18 @@ import Link from "next/link";
import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm";
import { useEffect, useMemo, useRef, useState } from "react";
import { Icon } from "@iconify/react";
import { Prism as SyntaxHighlighter } from "react-syntax-highlighter";
import { vscDarkPlus } from "react-syntax-highlighter/dist/esm/styles/prism";
import {
Avatar,
AvatarFallback,
AvatarImage,
Badge,
Button,
Card,
Textarea,
Typography,
} from "poyraz-ui/atoms";
import { Sheet, SheetContent, SheetTitle, SheetTrigger } from "poyraz-ui/molecules";
import { Badge, Card, Typography } from "poyraz-ui/atoms";
import type { BlogDetail } from "@/data/blog-detail";
import type { BlogComment, BlogEngagement } from "@/data/blog-engagement";
type BlogDetailContentProps = {
post: BlogDetail;
engagement: BlogEngagement;
};
function MermaidBlock({ chart }: { chart: string }) {
const [svg, setSvg] = useState<string>("");
const [error, setError] = useState<string>("");
const [svg, setSvg] = useState("");
const [error, setError] = useState("");
const idRef = useRef(`mermaid-${Math.random().toString(36).slice(2)}`);
useEffect(() => {
@@ -40,6 +27,7 @@ function MermaidBlock({ chart }: { chart: string }) {
const mermaid = (await import("mermaid")).default;
mermaid.initialize({ startOnLoad: false, theme: "neutral", securityLevel: "loose" });
const { svg: rendered } = await mermaid.render(idRef.current, chart);
if (mounted) {
setSvg(rendered);
setError("");
@@ -84,88 +72,22 @@ function MermaidBlock({ chart }: { chart: string }) {
);
}
export function BlogDetailContent({ post, engagement }: BlogDetailContentProps) {
export function BlogDetailContent({ post }: BlogDetailContentProps) {
const scrollerRef = useRef<HTMLDivElement | null>(null);
const [progress, setProgress] = useState(0);
const [liked, setLiked] = useState(false);
const [likeCount, setLikeCount] = useState(engagement.likes);
const [comments, setComments] = useState<BlogComment[]>(engagement.comments);
const [commentSheetOpen, setCommentSheetOpen] = useState(false);
const [githubAuthed, setGithubAuthed] = useState(false);
const [draft, setDraft] = useState("");
const [replyTo, setReplyTo] = useState<{ id: string; author: string } | null>(null);
const progressWidth = useMemo(() => `${Math.min(100, Math.max(0, progress))}%`, [progress]);
const handleScroll = () => {
const el = scrollerRef.current;
if (!el) return;
const element = scrollerRef.current;
if (!element) return;
const scrollable = el.scrollHeight - el.clientHeight;
const scrollable = element.scrollHeight - element.clientHeight;
if (scrollable <= 0) {
setProgress(100);
return;
}
setProgress((el.scrollTop / scrollable) * 100);
};
const toggleLike = () => {
setLiked((prev) => {
const next = !prev;
setLikeCount((count) => (next ? count + 1 : Math.max(0, count - 1)));
return next;
});
};
const handleReplyClick = (id: string, author: string) => {
setReplyTo({ id, author });
setCommentSheetOpen(true);
};
const handleSubmitComment = () => {
if (!githubAuthed) return;
const content = draft.trim();
if (!content) return;
if (replyTo) {
setComments((prev) =>
prev.map((item) =>
item.id === replyTo.id
? {
...item,
replies: [
...item.replies,
{
id: `reply-${Date.now()}`,
author: "Sen (GitHub)",
avatar: "/logo/logo.jpeg",
date: "Az önce",
content,
likes: 0,
},
],
}
: item,
),
);
setReplyTo(null);
} else {
setComments((prev) => [
{
id: `comment-${Date.now()}`,
author: "Sen (GitHub)",
avatar: "/logo/logo.jpeg",
date: "Az önce",
content,
likes: 0,
replies: [],
},
...prev,
]);
}
setDraft("");
setProgress((element.scrollTop / scrollable) * 100);
};
return (
@@ -210,169 +132,6 @@ export function BlogDetailContent({ post, engagement }: BlogDetailContentProps)
/>
</Card>
<div className="flex items-center justify-end gap-2">
<Button
type="button"
variant={liked ? "default" : "outline"}
className="h-9 w-9 rounded-sm p-0"
onClick={toggleLike}
aria-label={`Yazıyı beğen (${likeCount})`}
title={`Beğen (${likeCount})`}
>
<Icon icon={liked ? "mdi:heart" : "mdi:heart-outline"} width={18} height={18} />
</Button>
<Sheet open={commentSheetOpen} onOpenChange={setCommentSheetOpen}>
<SheetTrigger asChild>
<Button
type="button"
variant="outline"
className="h-9 w-9 rounded-sm p-0"
aria-label={`Yorumları aç (${comments.length})`}
title={`Yorumlar (${comments.length})`}
>
<Icon icon="mdi:comment-outline" width={18} height={18} />
</Button>
</SheetTrigger>
<SheetContent side="right" className="flex h-dvh w-full max-w-xl flex-col p-0">
<div className="border-b border-border px-4 py-3">
<SheetTitle>Yorumlar</SheetTitle>
</div>
<div className="flex min-h-0 flex-1 flex-col gap-3 p-4">
<div className="min-h-0 flex-1 space-y-3 overflow-y-auto pr-1">
{comments.map((item) => (
<Card key={item.id} className="overflow-visible rounded-sm border-border p-3">
<div className="flex items-start gap-2">
<Avatar className="h-8 w-8 rounded-sm">
<AvatarImage src={item.avatar} alt={item.author} />
<AvatarFallback className="rounded-sm bg-muted text-xs">
{item.author.slice(0, 2).toUpperCase()}
</AvatarFallback>
</Avatar>
<div className="min-w-0 flex-1">
<div className="flex flex-wrap items-center gap-2">
<Typography variant="small" className="font-semibold text-foreground">
{item.author}
</Typography>
<Typography variant="small" className="text-muted-foreground">
{item.date}
</Typography>
</div>
<Typography variant="small" className="mt-1 text-muted-foreground">
{item.content}
</Typography>
<div className="mt-2 flex items-center gap-2">
<Button type="button" variant="outline" size="sm" className="rounded-sm">
Beğen ({item.likes})
</Button>
<Button
type="button"
variant="outline"
size="sm"
className="rounded-sm"
onClick={() => handleReplyClick(item.id, item.author)}
>
Yanıtla
</Button>
</div>
{item.replies.length > 0 ? (
<div className="mt-3 grid gap-2 border-l border-border pl-3">
{item.replies.map((reply) => (
<Card key={reply.id} className="rounded-sm border-border p-2.5">
<div className="flex items-start gap-2">
<Avatar className="h-7 w-7 rounded-sm">
<AvatarImage src={reply.avatar} alt={reply.author} />
<AvatarFallback className="rounded-sm bg-muted text-[10px]">
{reply.author.slice(0, 2).toUpperCase()}
</AvatarFallback>
</Avatar>
<div className="min-w-0">
<div className="flex flex-wrap items-center gap-2">
<Typography
variant="small"
className="font-semibold text-foreground"
>
{reply.author}
</Typography>
<Typography variant="small" className="text-muted-foreground">
{reply.date}
</Typography>
</div>
<Typography variant="small" className="mt-1 text-muted-foreground">
{reply.content}
</Typography>
</div>
</div>
</Card>
))}
</div>
) : null}
</div>
</div>
</Card>
))}
</div>
{!githubAuthed ? (
<Card className="rounded-sm border-border p-3">
<Typography variant="small" className="text-muted-foreground">
Yorum yapmadan önce GitHub ile giriş yapman gerekiyor.
</Typography>
<Button
type="button"
className="mt-2 rounded-sm"
onClick={() => setGithubAuthed(true)}
>
GitHub ile devam et
</Button>
</Card>
) : null}
{replyTo ? (
<Card className="rounded-sm border-border p-2">
<div className="flex flex-wrap items-center justify-between gap-2">
<Typography variant="small" className="text-muted-foreground">
{replyTo.author} kullanıcısına yanıt yazıyorsun
</Typography>
<Button
type="button"
size="sm"
variant="outline"
className="rounded-sm"
onClick={() => setReplyTo(null)}
>
Vazgeç
</Button>
</div>
</Card>
) : null}
<Card className="rounded-sm border-border p-3">
<Textarea
value={draft}
onChange={(event) => setDraft(event.target.value)}
placeholder={githubAuthed ? "Yorumunu yaz..." : "Önce GitHub ile giriş yap"}
className="min-h-24 rounded-sm"
disabled={!githubAuthed}
/>
<div className="mt-2 flex justify-end">
<Button
type="button"
className="rounded-sm"
onClick={handleSubmitComment}
disabled={!githubAuthed || !draft.trim()}
>
Yorumu Gönder
</Button>
</div>
</Card>
</div>
</SheetContent>
</Sheet>
</div>
<section className="space-y-4">
<ReactMarkdown
remarkPlugins={[remarkGfm]}
@@ -417,11 +176,7 @@ export function BlogDetailContent({ post, engagement }: BlogDetailContentProps)
const language = match?.[1] ?? "";
if (!match) {
return (
<code className="rounded-sm bg-muted px-1.5 py-0.5 text-[13px]">
{children}
</code>
);
return <code className="rounded-sm bg-muted px-1.5 py-0.5 text-[13px]">{children}</code>;
}
if (language === "mermaid") {
+15 -5
View File
@@ -4,9 +4,19 @@ import Image from "next/image";
import { useRef, useState } from "react";
import { Card, Typography } from "poyraz-ui/atoms";
import { NewsCard } from "poyraz-ui/molecules";
import { HOME_NEWS } from "@/lib/home-news";
export function HomeHero() {
type HomeHeroProps = {
news: {
id: string;
category: string;
title: string;
date: string;
image: string;
href: string;
}[];
};
export function HomeHero({ news }: HomeHeroProps) {
const [frame, setFrame] = useState<1 | 2>(1);
const intervalRef = useRef<ReturnType<typeof setInterval> | null>(null);
@@ -29,7 +39,7 @@ export function HomeHero() {
return (
<section className="grid gap-3 md:h-65 md:grid-cols-2">
<div className="grid gap-2 md:grid-rows-3">
{HOME_NEWS.map((item) => (
{news.map((item) => (
<NewsCard
key={item.id}
className="rounded-sm border-border md:h-full"
@@ -54,8 +64,8 @@ export function HomeHero() {
</Typography>
</div>
<Typography variant="small" className="text-muted-foreground">
Teknolojiyi merak eden bir genç. Yazılımı seviyor, bir şeyler üretiyor ve bolca
deniyor. Çok fazla şey yapıyor, takipte kal.
Teknolojiyi merak eden bir genç. Yazı±± seviyor, bir ÅŸeyler üretiyor ve bolca
deniyor. Ãok fazla ÅŸey yapıyor, takipte kal.
</Typography>
</div>