6ae0f1274f
- 提取 AnimatedInkDivider 组件替代硬编码 ink-divider div - 重构各营销页面组件代码结构优化 - 修正统计数据:自研产品 4 -> 6 - 更新 about 页面测试用例
191 lines
8.2 KiB
TypeScript
191 lines
8.2 KiB
TypeScript
'use client';
|
||
|
||
import { useState, useMemo, ChangeEvent } from 'react';
|
||
import { NEWS } from '@/lib/constants';
|
||
import { Card, CardContent } from '@/components/ui/card';
|
||
import { Badge } from '@/components/ui/badge';
|
||
import { Input } from '@/components/ui/input';
|
||
import { Button } from '@/components/ui/button';
|
||
import { PageHeader } from '@/components/ui/page-header';
|
||
import { Search, Calendar, Filter, ArrowRight, SearchX } from 'lucide-react';
|
||
import { StaticLink } from '@/components/ui/static-link';
|
||
import { Pagination } from '@/components/ui/pagination';
|
||
import { InkReveal, StaggerContainer, StaggerItem } from '@/lib/animations';
|
||
import { ScrollReveal } from '@/components/ui/scroll-animations';
|
||
|
||
const categories = ['全部', '公司新闻', '产品发布', '研发动态'];
|
||
const ITEMS_PER_PAGE = 9;
|
||
|
||
export default function NewsListPage() {
|
||
const [selectedCategory, setSelectedCategory] = useState('全部');
|
||
const [searchQuery, setSearchQuery] = useState('');
|
||
const [currentPage, setCurrentPage] = useState(1);
|
||
|
||
const filteredNews = useMemo(() => {
|
||
return NEWS.filter((newsItem) => {
|
||
const matchesCategory = selectedCategory === '全部' || newsItem.category === selectedCategory;
|
||
const matchesSearch =
|
||
newsItem.title.toLowerCase().includes(searchQuery.toLowerCase()) ||
|
||
newsItem.excerpt.toLowerCase().includes(searchQuery.toLowerCase());
|
||
return matchesCategory && matchesSearch;
|
||
}).sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime());
|
||
}, [selectedCategory, searchQuery]);
|
||
|
||
const totalPages = Math.ceil(filteredNews.length / ITEMS_PER_PAGE);
|
||
const paginatedNews = useMemo(() => {
|
||
const startIndex = (currentPage - 1) * ITEMS_PER_PAGE;
|
||
const endIndex = startIndex + ITEMS_PER_PAGE;
|
||
return filteredNews.slice(startIndex, endIndex);
|
||
}, [filteredNews, currentPage]);
|
||
|
||
const handlePageChange = (page: number) => {
|
||
setCurrentPage(page);
|
||
};
|
||
|
||
const handleCategoryChange = (category: string) => {
|
||
setSelectedCategory(category);
|
||
setCurrentPage(1);
|
||
};
|
||
|
||
const handleSearchChange = (e: ChangeEvent<HTMLInputElement>) => {
|
||
setSearchQuery(e.target.value);
|
||
setCurrentPage(1);
|
||
};
|
||
|
||
return (
|
||
<div className="min-h-screen bg-white">
|
||
<PageHeader
|
||
title="新闻动态"
|
||
description="了解睿新致远最新动态,把握行业发展脉搏"
|
||
/>
|
||
|
||
<div className="container-wide relative z-10 py-12" id="page-content">
|
||
{/* 筛选区 - InkReveal */}
|
||
<InkReveal className="mb-8 space-y-4">
|
||
<div className="flex flex-col md:flex-row gap-4 items-start md:items-center">
|
||
<div className="flex items-center gap-2 text-[#1C1C1C]">
|
||
<Filter className="w-5 h-5" />
|
||
<span className="font-medium">分类筛选:</span>
|
||
</div>
|
||
<div className="flex flex-wrap gap-2">
|
||
{categories.map((category) => (
|
||
<Button
|
||
key={category}
|
||
variant={selectedCategory === category ? 'default' : 'outline'}
|
||
onClick={() => handleCategoryChange(category)}
|
||
className={
|
||
selectedCategory === category
|
||
? 'bg-[var(--color-brand-primary)] hover:bg-[var(--color-brand-primary-hover)] text-white'
|
||
: ''
|
||
}
|
||
>
|
||
{category}
|
||
</Button>
|
||
))}
|
||
</div>
|
||
</div>
|
||
|
||
<div className="relative max-w-md">
|
||
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 text-[#5C5C5C] w-5 h-5" />
|
||
<Input
|
||
type="text"
|
||
placeholder="搜索新闻..."
|
||
value={searchQuery}
|
||
onChange={handleSearchChange}
|
||
className="pl-10"
|
||
aria-label="搜索新闻"
|
||
/>
|
||
</div>
|
||
</InkReveal>
|
||
|
||
{paginatedNews.length === 0 ? (
|
||
<div className="text-center py-20">
|
||
<div className="w-16 h-16 mx-auto mb-4 rounded-full bg-[#F5F5F5] flex items-center justify-center">
|
||
<SearchX className="w-8 h-8 text-[#5C5C5C]" />
|
||
</div>
|
||
<p className="text-lg text-[#5C5C5C] mb-4">没有找到相关新闻</p>
|
||
<button
|
||
onClick={() => { setSearchQuery(''); setSelectedCategory('全部'); setCurrentPage(1); }}
|
||
className="text-sm text-[var(--color-brand-primary)] hover:text-[var(--color-brand-primary-hover)] font-medium transition-colors"
|
||
>
|
||
清除筛选条件
|
||
</button>
|
||
</div>
|
||
) : (
|
||
<>
|
||
{/* 卡片网格 - StaggerContainer */}
|
||
<StaggerContainer className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" staggerDelay={0.08}>
|
||
{paginatedNews.map((newsItem) => (
|
||
<StaggerItem key={newsItem.id}>
|
||
<StaticLink href={`/news/${newsItem.id}`}>
|
||
<Card className="h-full hover:shadow-lg transition-shadow cursor-pointer border-[#E5E5E5] hover:border-[var(--color-brand-primary)]">
|
||
<CardContent className="p-0">
|
||
{newsItem.image ? (
|
||
<div className="aspect-video bg-gray-100 overflow-hidden">
|
||
<img
|
||
src={newsItem.image}
|
||
alt={newsItem.title}
|
||
className="w-full h-full object-cover"
|
||
/>
|
||
</div>
|
||
) : (
|
||
<div className="aspect-video bg-gradient-to-br from-[var(--color-brand-primary)]/10 to-[#1C1C1C]/10 flex items-center justify-center mb-4">
|
||
<span className="text-4xl">📰</span>
|
||
</div>
|
||
)}
|
||
<div className="p-6">
|
||
<div className="flex items-center gap-2 mb-3">
|
||
<Badge variant="secondary">{newsItem.category}</Badge>
|
||
<div className="flex items-center gap-1 text-sm text-[#5C5C5C]">
|
||
<Calendar className="w-4 h-4" />
|
||
{newsItem.date}
|
||
</div>
|
||
</div>
|
||
<h3 className="text-xl font-semibold text-[#1C1C1C] mb-3 line-clamp-2">
|
||
{newsItem.title}
|
||
</h3>
|
||
<p className="text-[#5C5C5C] text-sm line-clamp-3 mb-4">
|
||
{newsItem.excerpt}
|
||
</p>
|
||
<div className="flex items-center text-[var(--color-brand-primary)] text-sm font-medium group">
|
||
阅读更多
|
||
<ArrowRight className="ml-1 w-4 h-4" />
|
||
</div>
|
||
</div>
|
||
</CardContent>
|
||
</Card>
|
||
</StaticLink>
|
||
</StaggerItem>
|
||
))}
|
||
</StaggerContainer>
|
||
|
||
<Pagination currentPage={currentPage} totalPages={totalPages} onPageChange={handlePageChange} scrollTargetId="page-content" />
|
||
|
||
<div className="text-center mt-4 text-[#5C5C5C] text-sm">
|
||
显示 {paginatedNews.length} 条,共 {filteredNews.length} 条新闻
|
||
</div>
|
||
</>
|
||
)}
|
||
|
||
{/* CTA - ScrollReveal */}
|
||
<ScrollReveal>
|
||
<div className="mt-12 text-center py-16 bg-[#F5F5F5] rounded-2xl">
|
||
<h3 className="text-xl md:text-2xl font-semibold text-[#1C1C1C] mb-3">
|
||
想获取最新行业资讯?
|
||
</h3>
|
||
<p className="text-[#5C5C5C] mb-6 max-w-lg mx-auto">
|
||
关注我们的公众号,第一时间了解数字化转型趋势和公司动态
|
||
</p>
|
||
<Button size="lg" className="bg-[var(--color-brand-primary)] hover:bg-[var(--color-brand-primary-hover)] text-white" asChild>
|
||
<StaticLink href="/contact">
|
||
联系我们
|
||
<ArrowRight className="ml-2 w-4 h-4" />
|
||
</StaticLink>
|
||
</Button>
|
||
</div>
|
||
</ScrollReveal>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|