diff --git a/apps/web/app/projects/[id]/page.tsx b/apps/web/app/projects/[id]/page.tsx
index db53cf6..3b0c931 100644
--- a/apps/web/app/projects/[id]/page.tsx
+++ b/apps/web/app/projects/[id]/page.tsx
@@ -6,9 +6,13 @@ import { ChevronLeft, Package, Calendar, Clock, Users, Tag, ChevronDown } from '
import { useProductStore } from '@/stores/useProductStore';
import { useRequirementStore } from '@/stores/useRequirementStore';
import { useOvertimeStore } from '@/stores/useOvertimeStore';
+import { useVersionPlanStore } from '@/stores/useVersionPlanStore';
+import { useDevTaskStore } from '@/stores/useDevTaskStore';
+import { useTestCaseStore } from '@/stores/useTestCaseStore';
import { getProjectDetail, VersionWithContext } from '@/lib/derive';
import { Stage, Role, STAGES, ROLES, STAGE_INDEX, ROLE_LABEL } from '@/lib/stage';
import { VersionStatus, VERSION_STATUS_LABEL, VERSION_STATUS_BG } from '@/lib/version-status';
+import { STATUS_PROGRESS } from '@/lib/dev-task';
import { CapsuleStages } from '@/components/version/CapsuleStages';
import { MemberChips } from '@/components/version/MemberChips';
@@ -39,13 +43,23 @@ function ProgressBar({ role, percent, daysSpent }: { role: Role; percent: number
}
/* ─── VersionCard ─── */
-function VersionCard({ version, onNavigate }: { version: VersionWithContext; onNavigate: (id: string) => void }) {
+function VersionCard({ version, progress, onNavigate }: { version: VersionWithContext; progress: number; onNavigate: (id: string) => void }) {
const [expanded, setExpanded] = useState(false);
- const totalDays = (version.progress ?? []).reduce((sum, p) => sum + p.daysSpent, 0);
- const stageLabel = version.currentStage ? STAGES.find((s) => s.key === version.currentStage)?.label ?? '' : '';
- const displayStatus = version.status === 'released' ? '已发布' : version.status === 'planned' ? '规划中' : stageLabel ? `${stageLabel}中` : '开发中';
- const displayBg = version.status === 'released' ? 'bg-zinc-100 text-zinc-600' : version.status === 'planned' ? 'bg-orange-500/10 text-orange-600' : 'bg-blue-500/10 text-blue-600';
+ // Calculate actual elapsed days from dates instead of old progress data
+ const totalDays = useMemo(() => {
+ if (!version.startDate) return 0;
+ const start = new Date(version.startDate);
+ start.setHours(0, 0, 0, 0);
+ const end = version.status === 'released' && version.releaseDate
+ ? new Date(version.releaseDate)
+ : new Date();
+ end.setHours(0, 0, 0, 0);
+ return Math.max(0, Math.floor((end.getTime() - start.getTime()) / (1000 * 60 * 60 * 24)));
+ }, [version.startDate, version.releaseDate, version.status]);
+
+ const displayStatus = VERSION_STATUS_LABEL[version.status] ?? '开发中';
+ const displayBg = VERSION_STATUS_BG[version.status] ?? 'bg-blue-500/10 text-blue-600';
if (version.status === 'planned') {
return (
@@ -91,6 +105,12 @@ function VersionCard({ version, onNavigate }: { version: VersionWithContext; onN
onNavigate(version.id)} className="text-sm font-medium text-[var(--ink)] cursor-pointer hover:text-[var(--accent)]">{version.name}
{displayStatus}
+
@@ -163,7 +183,6 @@ const FILTER_OPTIONS: { key: string; label: string }[] = [
{ key: 'product_design', label: '产品设计' },
{ key: 'ui_design', label: 'UI设计' },
{ key: 'dev', label: '开发' },
- { key: 'integration', label: '联调' },
{ key: 'testing', label: '测试' },
{ key: 'released', label: '已发布' },
{ key: 'planned', label: '规划中' },
@@ -177,11 +196,17 @@ export default function ProjectDetailPage() {
const { overview, fetchOverview } = useProductStore();
const { requirements, fetchRequirements } = useRequirementStore();
const { records, fetchRecords } = useOvertimeStore();
+ const { plans, fetchPlans } = useVersionPlanStore();
+ const { tasks: devTasks, fetchTasks: fetchDevTasks } = useDevTaskStore();
+ const { testCases, fetchTestCases } = useTestCaseStore();
const [statusFilter, setStatusFilter] = useState
('all');
useEffect(() => { fetchOverview(); }, [fetchOverview]);
useEffect(() => { fetchRequirements(); }, [fetchRequirements]);
useEffect(() => { fetchRecords(); }, [fetchRecords]);
+ useEffect(() => { fetchPlans(); }, [fetchPlans]);
+ useEffect(() => { fetchDevTasks(); }, [fetchDevTasks]);
+ useEffect(() => { fetchTestCases(); }, [fetchTestCases]);
const project = useMemo(() => getProjectDetail(overview, projectId), [overview, projectId]);
@@ -200,12 +225,89 @@ export default function ProjectDetailPage() {
return list.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
}, [project, statusFilter]);
+ // Compute actual overall progress per version
+ const versionProgressMap = useMemo(() => {
+ if (!project) return {} as Record;
+ const map: Record = {};
+ for (const v of project.versions) {
+ const vPlans = plans.filter((p) => p.versionId === v.id);
+ const vReqs = requirements.filter((r) => r.versionId === v.id);
+ const vReqIds = new Set(vReqs.map((r) => r.id));
+ const vDevTasks = devTasks.filter((t) => vReqIds.has(t.requirementId));
+ const vTestCases = testCases.filter((c) => c.versionId === v.id);
+
+ const segments: number[] = [];
+
+ const researchPlans = vPlans.filter((p) => p.type === 'research');
+ if (researchPlans.length > 0) {
+ const totals = researchPlans.reduce((acc, p) => {
+ const tasks = p.tasks || [];
+ acc.total += tasks.length;
+ acc.done += tasks.filter((t) => t.status === 'completed').length;
+ return acc;
+ }, { total: 0, done: 0 });
+ segments.push(totals.total > 0 ? (totals.done / totals.total) * 100 : 0);
+ }
+
+ const productPlans = vPlans.filter((p) => p.type === 'product');
+ if (productPlans.length > 0) {
+ const totals = productPlans.reduce((acc, p) => {
+ const linked = p.linkedRequirementIds || [];
+ const completed = p.completedRequirementIds || [];
+ acc.total += linked.length;
+ acc.done += completed.filter((id) => linked.includes(id)).length;
+ return acc;
+ }, { total: 0, done: 0 });
+ segments.push(totals.total > 0 ? (totals.done / totals.total) * 100 : 0);
+ }
+
+ const uiPlans = vPlans.filter((p) => p.type === 'ui');
+ if (uiPlans.length > 0) {
+ const totals = uiPlans.reduce((acc, p) => {
+ const linked = p.linkedRequirementIds || [];
+ const completed = p.completedRequirementIds || [];
+ acc.total += linked.length;
+ acc.done += completed.filter((id) => linked.includes(id)).length;
+ return acc;
+ }, { total: 0, done: 0 });
+ segments.push(totals.total > 0 ? (totals.done / totals.total) * 100 : 0);
+ }
+
+ if (vDevTasks.length > 0) {
+ const totalEstimate = vDevTasks.reduce((sum, t) => sum + t.estimateHours, 0);
+ let devProgress: number;
+ if (totalEstimate === 0) {
+ devProgress = vDevTasks.reduce((sum, t) => sum + STATUS_PROGRESS[t.status], 0) / vDevTasks.length;
+ } else {
+ const weighted = vDevTasks.reduce((sum, t) => sum + t.estimateHours * STATUS_PROGRESS[t.status], 0);
+ devProgress = weighted / totalEstimate;
+ }
+ segments.push(devProgress);
+ }
+
+ if (vTestCases.length > 0) {
+ const executed = vTestCases.filter((c) => c.status === 'passed' || c.status === 'failed' || c.status === 'blocked').length;
+ segments.push((executed / vTestCases.length) * 100);
+ }
+
+ map[v.id] = segments.length > 0 ? Math.round(segments.reduce((s, x) => s + x, 0) / segments.length) : 0;
+ }
+ return map;
+ }, [project, plans, requirements, devTasks, testCases]);
+
const stats = useMemo(() => {
if (!project) return { total: 0, developing: 0, released: 0, totalDays: 0, reqCount: 0, overtimeHours: 0 };
const total = project.versions.length;
const developing = project.versions.filter((v) => v.status === 'developing').length;
const released = project.versions.filter((v) => v.status === 'released').length;
- const totalDays = project.versions.reduce((sum, v) => sum + (v.progress ?? []).reduce((s, p) => s + p.daysSpent, 0), 0);
+ const totalDays = project.versions.reduce((sum, v) => {
+ if (!v.startDate) return sum;
+ const start = new Date(v.startDate);
+ start.setHours(0, 0, 0, 0);
+ const end = v.status === 'released' && v.releaseDate ? new Date(v.releaseDate) : new Date();
+ end.setHours(0, 0, 0, 0);
+ return sum + Math.max(0, Math.floor((end.getTime() - start.getTime()) / (1000 * 60 * 60 * 24)));
+ }, 0);
const reqCount = requirements.filter((r) => r.projectId === projectId).length;
const overtimeHours = Math.round(records.filter((r) => r.projectId === projectId).reduce((sum, r) => sum + r.duration, 0) * 10) / 10;
return { total, developing, released, totalDays, reqCount, overtimeHours };
@@ -283,7 +385,7 @@ export default function ProjectDetailPage() {
{sortedVersions.length === 0 ? (
暂无版本
) : (
- sortedVersions.map((v) => router.push(`/versions/${id}`)} />)
+ sortedVersions.map((v) => router.push(`/versions/${id}`)} />)
)}
diff --git a/apps/web/app/versions/[id]/page.tsx b/apps/web/app/versions/[id]/page.tsx
index f9297f9..3471564 100644
--- a/apps/web/app/versions/[id]/page.tsx
+++ b/apps/web/app/versions/[id]/page.tsx
@@ -345,6 +345,14 @@ export default function VersionDetailPage() {
stageProgress['testing'] = { percent: testPercent, status: allPassed ? 'done' : (hasRunning || executed > 0) ? 'active' : 'idle' };
}
+ // BUG 阶段:已关闭Bug / 总Bug
+ if (versionBugs.length > 0) {
+ const closedBugs = versionBugs.filter((b) => b.status === 'closed' || b.status === 'rejected').length;
+ const bugPercent = Math.round((closedBugs / versionBugs.length) * 100);
+ const allClosed = versionBugs.every((b) => b.status === 'closed' || b.status === 'rejected');
+ stageProgress['bug'] = { percent: bugPercent, status: allClosed ? 'done' : closedBugs > 0 || versionBugs.length > 0 ? 'active' : 'idle' };
+ }
+
return ;
})()}
diff --git a/apps/web/app/versions/page.tsx b/apps/web/app/versions/page.tsx
index 27753bb..b6d0c46 100644
--- a/apps/web/app/versions/page.tsx
+++ b/apps/web/app/versions/page.tsx
@@ -5,12 +5,15 @@ import { useRouter } from 'next/navigation';
import { Search, Tag, Plus, X, ChevronDown, MoreHorizontal, Pause, Play, XCircle, Trash2 } from 'lucide-react';
import { useProductStore } from '@/stores/useProductStore';
import { useRequirementStore } from '@/stores/useRequirementStore';
+import { useVersionPlanStore } from '@/stores/useVersionPlanStore';
+import { useDevTaskStore } from '@/stores/useDevTaskStore';
+import { useTestCaseStore } from '@/stores/useTestCaseStore';
import { flattenVersions, flattenProjects } from '@/lib/derive';
import type { VersionWithContext } from '@/lib/derive';
import { VersionStatus, VERSION_STATUS_LABEL, VERSION_STATUS_DOT, VERSION_STATUS_BG, getVersionDisplayStatus } from '@/lib/version-status';
import { STAGES } from '@/lib/stage';
import { ROLE_LABEL } from '@/lib/stage';
-import { calcOverallProgress } from '@/lib/risk';
+import { STATUS_PROGRESS } from '@/lib/dev-task';
import { calcHealthScore, getHealthLevel, calcRiskTags, HEALTH_LEVEL_COLOR, HEALTH_LEVEL_DOT, getTagStyle } from '@/lib/health';
import { Pagination, usePagination } from '@/components/Pagination';
@@ -38,7 +41,6 @@ const STATUS_TABS: { key: string; label: string }[] = [
{ key: 'product_design', label: '产品设计' },
{ key: 'ui_design', label: 'UI设计' },
{ key: 'dev', label: '开发' },
- { key: 'integration', label: '联调' },
{ key: 'testing', label: '测试' },
{ key: 'released', label: '已发布' },
{ key: 'paused', label: '已暂停' },
@@ -84,7 +86,6 @@ const STAGE_ROLE_MAP: Record = {
product_design: ['product'],
ui_design: ['ui'],
dev: ['frontend', 'backend'],
- integration: ['frontend', 'backend'],
testing: ['testing'],
released: [],
};
@@ -112,9 +113,95 @@ export default function VersionsPage() {
useEffect(() => { fetchOverview(); }, [fetchOverview]);
+ const { requirements, fetchRequirements, updateRequirement } = useRequirementStore();
+ useEffect(() => { fetchRequirements(); }, [fetchRequirements]);
+
+ const { plans, fetchPlans } = useVersionPlanStore();
+ useEffect(() => { fetchPlans(); }, [fetchPlans]);
+
+ const { tasks: devTasks, fetchTasks: fetchDevTasks } = useDevTaskStore();
+ useEffect(() => { fetchDevTasks(); }, [fetchDevTasks]);
+
+ const { testCases, fetchTestCases } = useTestCaseStore();
+ useEffect(() => { fetchTestCases(); }, [fetchTestCases]);
+
const allVersions = useMemo(() => flattenVersions(overview), [overview]);
const allProjects = useMemo(() => flattenProjects(overview), [overview]);
+ // Compute overall progress per version from actual data
+ const versionProgressMap = useMemo(() => {
+ const map: Record = {};
+ for (const v of allVersions) {
+ const vPlans = plans.filter((p) => p.versionId === v.id);
+ const vReqs = requirements.filter((r) => r.versionId === v.id);
+ const vReqIds = new Set(vReqs.map((r) => r.id));
+ const vDevTasks = devTasks.filter((t) => vReqIds.has(t.requirementId));
+ const vTestCases = testCases.filter((c) => c.versionId === v.id);
+
+ const segments: number[] = [];
+
+ // Research plans progress
+ const researchPlans = vPlans.filter((p) => p.type === 'research');
+ if (researchPlans.length > 0) {
+ const totals = researchPlans.reduce((acc, p) => {
+ const tasks = p.tasks || [];
+ acc.total += tasks.length;
+ acc.done += tasks.filter((t) => t.status === 'completed').length;
+ return acc;
+ }, { total: 0, done: 0 });
+ segments.push(totals.total > 0 ? (totals.done / totals.total) * 100 : 0);
+ }
+
+ // Product plans progress
+ const productPlans = vPlans.filter((p) => p.type === 'product');
+ if (productPlans.length > 0) {
+ const totals = productPlans.reduce((acc, p) => {
+ const linked = p.linkedRequirementIds || [];
+ const completed = p.completedRequirementIds || [];
+ acc.total += linked.length;
+ acc.done += completed.filter((id) => linked.includes(id)).length;
+ return acc;
+ }, { total: 0, done: 0 });
+ segments.push(totals.total > 0 ? (totals.done / totals.total) * 100 : 0);
+ }
+
+ // UI plans progress
+ const uiPlans = vPlans.filter((p) => p.type === 'ui');
+ if (uiPlans.length > 0) {
+ const totals = uiPlans.reduce((acc, p) => {
+ const linked = p.linkedRequirementIds || [];
+ const completed = p.completedRequirementIds || [];
+ acc.total += linked.length;
+ acc.done += completed.filter((id) => linked.includes(id)).length;
+ return acc;
+ }, { total: 0, done: 0 });
+ segments.push(totals.total > 0 ? (totals.done / totals.total) * 100 : 0);
+ }
+
+ // Dev tasks progress (weighted by STATUS_PROGRESS)
+ if (vDevTasks.length > 0) {
+ const totalEstimate = vDevTasks.reduce((sum, t) => sum + t.estimateHours, 0);
+ let devProgress: number;
+ if (totalEstimate === 0) {
+ devProgress = vDevTasks.reduce((sum, t) => sum + STATUS_PROGRESS[t.status], 0) / vDevTasks.length;
+ } else {
+ const weighted = vDevTasks.reduce((sum, t) => sum + t.estimateHours * STATUS_PROGRESS[t.status], 0);
+ devProgress = weighted / totalEstimate;
+ }
+ segments.push(devProgress);
+ }
+
+ // Test cases progress (executed / total)
+ if (vTestCases.length > 0) {
+ const executed = vTestCases.filter((c) => c.status === 'passed' || c.status === 'failed' || c.status === 'blocked').length;
+ segments.push((executed / vTestCases.length) * 100);
+ }
+
+ map[v.id] = segments.length > 0 ? Math.round(segments.reduce((s, x) => s + x, 0) / segments.length) : 0;
+ }
+ return map;
+ }, [allVersions, plans, requirements, devTasks, testCases]);
+
const filtered = useMemo(() => {
let list = allVersions.filter((v) => {
if (search && !v.name.toLowerCase().includes(search.toLowerCase())) return false;
@@ -139,9 +226,6 @@ export default function VersionsPage() {
const { paged, page, setPage, total, pageSize, setPageSize } = usePagination(filtered, 20);
- const { requirements, fetchRequirements, updateRequirement } = useRequirementStore();
- useEffect(() => { fetchRequirements(); }, [fetchRequirements]);
-
const handleAction = async (version: VersionWithContext, action: 'pause' | 'resume' | 'close' | 'delete') => {
setOpenMenuId(null);
if (action === 'delete') {
@@ -264,6 +348,7 @@ export default function VersionsPage() {
router.push(`/versions/${v.id}`)}
@@ -286,15 +371,15 @@ export default function VersionsPage() {
interface VersionRowProps {
version: VersionWithContext;
+ overallProgress: number;
openMenuId: string | null;
setOpenMenuId: (id: string | null) => void;
onNavigate: () => void;
onAction: (version: VersionWithContext, action: 'pause' | 'resume' | 'close' | 'delete') => void;
}
-function VersionRow({ version, openMenuId, setOpenMenuId, onNavigate, onAction }: VersionRowProps) {
+function VersionRow({ version, overallProgress, openMenuId, setOpenMenuId, onNavigate, onAction }: VersionRowProps) {
const priority = (version.priority ?? 'P2') as Priority;
- const overallProgress = calcOverallProgress(version.progress);
const healthScore = calcHealthScore(version.status, version.startDate, version.expectedReleaseDate, version.progress);
const healthLevel = getHealthLevel(healthScore);
const riskTags = calcRiskTags(version.status, version.startDate, version.expectedReleaseDate, version.progress, version.currentStage, version.members);
diff --git a/apps/web/lib/health.ts b/apps/web/lib/health.ts
index a436e77..880717e 100644
--- a/apps/web/lib/health.ts
+++ b/apps/web/lib/health.ts
@@ -17,8 +17,8 @@ const STAGE_ROLE_MAP: Record = {
product_design: ['product'],
ui_design: ['ui'],
dev: ['frontend', 'backend'],
- integration: ['frontend', 'backend'],
testing: ['testing'],
+ bug: [],
released: [],
};
diff --git a/apps/web/lib/stage.ts b/apps/web/lib/stage.ts
index a7e3e74..8287a2c 100644
--- a/apps/web/lib/stage.ts
+++ b/apps/web/lib/stage.ts
@@ -1,4 +1,4 @@
-export type Stage = 'requirement' | 'product_design' | 'ui_design' | 'dev' | 'integration' | 'testing' | 'released';
+export type Stage = 'requirement' | 'product_design' | 'ui_design' | 'dev' | 'testing' | 'bug' | 'released';
export type Role = 'product' | 'ui' | 'frontend' | 'backend' | 'testing';
@@ -7,8 +7,8 @@ export const STAGES: { key: Stage; label: string }[] = [
{ key: 'product_design', label: '产品设计' },
{ key: 'ui_design', label: 'UI 设计' },
{ key: 'dev', label: '开发' },
- { key: 'integration', label: '联调' },
{ key: 'testing', label: '测试' },
+ { key: 'bug', label: 'BUG' },
{ key: 'released', label: '上线' },
];
diff --git a/apps/web/lib/version-status.ts b/apps/web/lib/version-status.ts
index 3498f0a..ca7705b 100644
--- a/apps/web/lib/version-status.ts
+++ b/apps/web/lib/version-status.ts
@@ -29,15 +29,12 @@ export const STAGE_LABEL: Record = {
product_design: '产品设计中',
ui_design: 'UI设计中',
dev: '开发中',
- integration: '联调中',
testing: '测试中',
+ bug: 'BUG跟进中',
released: '已发布',
};
-export function getVersionDisplayStatus(status: VersionStatus, currentStage?: string): string {
- if (status === 'developing' && currentStage && STAGE_LABEL[currentStage]) {
- return STAGE_LABEL[currentStage];
- }
+export function getVersionDisplayStatus(status: VersionStatus, _currentStage?: string): string {
return VERSION_STATUS_LABEL[status];
}