- 调色板:zinc 中性色 + 冷静蓝色(#3b82f6)+ 卡片阴影 token - Sidebar:紧凑 60 宽度,加入顶部搜索框,分组导航,圆角 8px - 卡片:rounded-2xl + shadow-sm/md,留白节奏统一 - 表格:圆角卡片包裹,灰色表头小写大写字母 tracking - 表单:h-9 输入框,圆角 8px,focus ring 用半透明蓝 - 按钮分级:实心蓝(主操作)/ 边框白底(次操作)/ 暗黑实心(对比强调) - 状态徽章:ring-1 inset 内边框,色板更柔和 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
137 lines
5.3 KiB
TypeScript
137 lines
5.3 KiB
TypeScript
'use client';
|
|
|
|
import { RequirementStatus } from '@ftb/shared';
|
|
import { Pencil, Trash2 } from 'lucide-react';
|
|
import { RequirementStatusBadge } from './RequirementStatusBadge';
|
|
import { PRIORITY_LABEL, REQUIREMENT_STATUS_LABEL } from '@/lib/constants';
|
|
|
|
interface RequirementItem {
|
|
id: string;
|
|
title: string;
|
|
description: string;
|
|
status: RequirementStatus;
|
|
priority: number;
|
|
creator?: { id: string; name: string };
|
|
createdAt: string;
|
|
}
|
|
|
|
interface Props {
|
|
requirements: RequirementItem[];
|
|
statusFilter: RequirementStatus | null;
|
|
onFilterChange: (status: RequirementStatus | null) => void;
|
|
onEdit: (req: RequirementItem) => void;
|
|
onStatusChange: (id: string, status: RequirementStatus) => void;
|
|
onDelete: (id: string) => void;
|
|
onCreate: () => void;
|
|
}
|
|
|
|
const ALL_STATUSES = Object.values(RequirementStatus);
|
|
|
|
export function RequirementTable({
|
|
requirements,
|
|
statusFilter,
|
|
onFilterChange,
|
|
onEdit,
|
|
onDelete,
|
|
onCreate,
|
|
}: Props) {
|
|
return (
|
|
<div>
|
|
<div className="mb-4 flex flex-wrap items-center justify-between gap-3">
|
|
<div className="flex flex-wrap gap-1">
|
|
<FilterChip active={!statusFilter} onClick={() => onFilterChange(null)}>
|
|
全部
|
|
</FilterChip>
|
|
{ALL_STATUSES.map((s) => (
|
|
<FilterChip key={s} active={statusFilter === s} onClick={() => onFilterChange(s)}>
|
|
{REQUIREMENT_STATUS_LABEL[s]}
|
|
</FilterChip>
|
|
))}
|
|
</div>
|
|
<button
|
|
onClick={onCreate}
|
|
className="flex h-8 items-center gap-1 rounded-lg bg-[var(--accent)] px-3 text-[13px] font-medium text-white shadow-[var(--shadow-sm)] transition-colors hover:bg-[var(--accent-hover)]"
|
|
>
|
|
+ 新建需求
|
|
</button>
|
|
</div>
|
|
|
|
{requirements.length === 0 ? (
|
|
<div className="rounded-2xl border border-dashed border-[var(--line)] bg-[var(--bg-card)] py-16 text-center">
|
|
<p className="text-[14px] font-medium text-[var(--ink-soft)]">暂无需求</p>
|
|
<p className="mt-1.5 text-[12.5px] text-[var(--ink-muted)]">点击"新建需求"添加</p>
|
|
</div>
|
|
) : (
|
|
<div className="overflow-hidden rounded-2xl border border-[var(--line)] bg-[var(--bg-card)] shadow-[var(--shadow-sm)]">
|
|
<table className="w-full text-left text-[13px]">
|
|
<thead>
|
|
<tr className="border-b border-[var(--line)] bg-[var(--bg-subtle)]">
|
|
<th className="px-4 py-2.5 text-[11.5px] font-medium uppercase tracking-wide text-[var(--ink-muted)]">标题</th>
|
|
<th className="px-4 py-2.5 text-[11.5px] font-medium uppercase tracking-wide text-[var(--ink-muted)]">状态</th>
|
|
<th className="px-4 py-2.5 text-[11.5px] font-medium uppercase tracking-wide text-[var(--ink-muted)]">优先级</th>
|
|
<th className="px-4 py-2.5 text-[11.5px] font-medium uppercase tracking-wide text-[var(--ink-muted)]">创建者</th>
|
|
<th className="px-4 py-2.5 text-right text-[11.5px] font-medium uppercase tracking-wide text-[var(--ink-muted)]">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{requirements.map((req) => (
|
|
<tr key={req.id} className="border-b border-[var(--line-soft)] last:border-0 hover:bg-[var(--bg-subtle)]">
|
|
<td className="max-w-md truncate px-4 py-3 font-medium text-[var(--ink)]" title={req.title}>
|
|
{req.title}
|
|
</td>
|
|
<td className="px-4 py-3">
|
|
<RequirementStatusBadge status={req.status} />
|
|
</td>
|
|
<td className="px-4 py-3 text-[var(--ink-soft)]">{PRIORITY_LABEL[req.priority] || '无'}</td>
|
|
<td className="px-4 py-3 text-[var(--ink-soft)]">{req.creator?.name || '—'}</td>
|
|
<td className="px-4 py-3 text-right">
|
|
<div className="inline-flex gap-1">
|
|
<button
|
|
onClick={() => onEdit(req)}
|
|
className="rounded-md p-1.5 text-[var(--ink-muted)] transition-colors hover:bg-[var(--bg-hover)] hover:text-[var(--ink)]"
|
|
title="编辑"
|
|
>
|
|
<Pencil className="h-3.5 w-3.5" strokeWidth={1.75} />
|
|
</button>
|
|
<button
|
|
onClick={() => onDelete(req.id)}
|
|
className="rounded-md p-1.5 text-[var(--ink-muted)] transition-colors hover:bg-red-50 hover:text-red-600"
|
|
title="删除"
|
|
>
|
|
<Trash2 className="h-3.5 w-3.5" strokeWidth={1.75} />
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function FilterChip({
|
|
active,
|
|
onClick,
|
|
children,
|
|
}: {
|
|
active: boolean;
|
|
onClick: () => void;
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<button
|
|
onClick={onClick}
|
|
className={`h-7 rounded-md px-2.5 text-[12.5px] transition-colors ${
|
|
active
|
|
? 'bg-[var(--ink)] text-white'
|
|
: 'border border-[var(--line)] bg-[var(--bg-card)] text-[var(--ink-soft)] hover:border-[var(--ink-muted)] hover:text-[var(--ink)]'
|
|
}`}
|
|
>
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|