Files
blog-nextjs/components/post-card.tsx
gbanyan 6a9296f33d Migrate to HeroUI v3 and Tailwind CSS v4
- Upgrade from Tailwind CSS v3 to v4 with CSS-first configuration
- Install HeroUI v3 beta packages (@heroui/react, @heroui/styles)
- Migrate PostCSS config to new @tailwindcss/postcss plugin
- Convert tailwind.config.cjs to CSS @theme directive in globals.css
- Replace @tailwindcss/typography with custom prose styles

Component migrations:
- theme-toggle, back-to-top: HeroUI Button with onPress
- post-card, post-list-item: HeroUI Card compound components
- right-sidebar: HeroUI Card, Avatar, Chip
- search-modal: HeroUI Modal with compound structure
- nav-menu: HeroUI Button for mobile controls
- post-list-with-controls: HeroUI Button for sorting/pagination

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:47:36 +08:00

72 lines
2.6 KiB
TypeScript

import Link from 'next/link';
import Image from 'next/image';
import type { Post } from 'contentlayer2/generated';
import { siteConfig } from '@/lib/config';
import { FiCalendar, FiTag } from 'react-icons/fi';
import { MetaItem } from './meta-item';
import { Card } from '@heroui/react';
interface PostCardProps {
post: Post;
showTags?: boolean;
}
export function PostCard({ post, showTags = true }: PostCardProps) {
const cover =
post.feature_image && post.feature_image.startsWith('../assets')
? post.feature_image.replace('../assets', '/assets')
: undefined;
return (
<article>
<Card className="motion-card group relative overflow-hidden rounded-xl border dark:border-slate-800">
<div className="pointer-events-none absolute inset-x-0 top-0 h-1 origin-left scale-x-0 bg-gradient-to-r from-blue-500 via-sky-400 to-indigo-500 opacity-80 transition-transform duration-300 ease-out group-hover:scale-x-100 dark:from-blue-400 dark:via-sky-300 dark:to-indigo-400" />
{cover && (
<div className="relative w-full bg-slate-100 dark:bg-slate-800">
<Image
src={cover}
alt={post.title}
width={640}
height={360}
sizes="(max-width: 768px) 100vw, (max-width: 1200px) 50vw, 33vw"
loading="lazy"
className="mx-auto max-h-60 w-full object-contain transition-transform duration-300 ease-out group-hover:scale-105"
/>
</div>
)}
<Card.Content className="space-y-3 px-4 py-4">
<div className="flex flex-wrap items-center gap-3 text-xs">
{post.published_at && (
<MetaItem icon={FiCalendar}>
{new Date(post.published_at).toLocaleDateString(
siteConfig.defaultLocale
)}
</MetaItem>
)}
{showTags && post.tags && post.tags.length > 0 && (
<MetaItem icon={FiTag} tone="muted">
{post.tags.slice(0, 3).join(', ')}
</MetaItem>
)}
</div>
<Card.Header className="p-0">
<Card.Title className="text-lg font-semibold leading-snug">
<Link
href={post.url}
className="hover:text-blue-600 dark:hover:text-blue-400"
>
{post.title}
</Link>
</Card.Title>
</Card.Header>
{post.description && (
<Card.Description className="line-clamp-3 text-sm text-slate-700 dark:text-slate-100">
{post.description}
</Card.Description>
)}
</Card.Content>
</Card>
</article>
);
}