Centralize project loading and status-state handling across dashboard surfaces. - add a reusable DataBoundary component for loading, empty, error, and loaded states - extract shared project status config helpers for labels, colors, icons, and initializing detection - update project overview, cards, badges, and selector UI to use the shared helpers - add regression coverage for data-boundary behavior, project overview empty/loading transitions, and status config fallbacks Files changed: packages/dashboard/app/components/DataBoundary.tsx | 64 ++++++++++++++++++++++ packages/dashboard/app/components/ProjectCard.tsx | 48 ++-------------- .../app/components/ProjectHealthBadge.tsx | 45 +-------------- .../dashboard/app/components/ProjectOverview.tsx | 4 +- .../dashboard/app/components/ProjectSelector.tsx | 27 +-------- .../app/components/__tests__/DataBoundary.test.tsx | 62 +++++++++++++++++++++ .../components/__tests__/ProjectOverview.test.tsx | 25 +++++++++ .../__tests__/ProjectThemeTokens.test.tsx | 37 ++++--------- .../utils/__tests__/projectStatusConfig.test.ts | 53 ++++++++++++++++++ .../dashboard/app/utils/projectStatusConfig.ts | 50 +++++++++++++++++ packages/dashboard/vitest.config.ts | 2 + 11 files changed, 282 insertions(+), 135 deletions(-) Fusion-Task-Id: FN-5894 Fusion-Task-Lineage: 3626a4af-b62b-456d-82d7-cf47bbf55c21
101 lines
3.5 KiB
TypeScript
101 lines
3.5 KiB
TypeScript
import { useState, useCallback } from "react";
|
|
import type { ProjectStatus } from "@fusion/core";
|
|
import type { ProjectHealth } from "../api";
|
|
import { getProjectStatusConfig, isInitializingStatus } from "../utils/projectStatusConfig";
|
|
|
|
export interface ProjectHealthBadgeProps {
|
|
status: ProjectStatus;
|
|
health?: ProjectHealth | null;
|
|
size?: "sm" | "md" | "lg";
|
|
showTooltip?: boolean;
|
|
}
|
|
|
|
/**
|
|
* ProjectHealthBadge - Color-coded badge showing project health status
|
|
*
|
|
* Displays a status indicator with icon and label. Optionally shows a tooltip
|
|
* with detailed health metrics on hover.
|
|
*/
|
|
export function ProjectHealthBadge({
|
|
status,
|
|
health,
|
|
size = "md",
|
|
showTooltip = true,
|
|
}: ProjectHealthBadgeProps) {
|
|
const [isHovered, setIsHovered] = useState(false);
|
|
const config = getProjectStatusConfig(status);
|
|
const StatusIcon = config.icon;
|
|
|
|
const handleMouseEnter = useCallback(() => {
|
|
if (showTooltip && health) {
|
|
setIsHovered(true);
|
|
}
|
|
}, [showTooltip, health]);
|
|
|
|
const handleMouseLeave = useCallback(() => {
|
|
setIsHovered(false);
|
|
}, []);
|
|
|
|
const sizeClasses = {
|
|
sm: "project-health-badge--sm",
|
|
md: "project-health-badge--md",
|
|
lg: "project-health-badge--lg",
|
|
};
|
|
|
|
const isInitializing = isInitializingStatus(status);
|
|
|
|
return (
|
|
<div
|
|
className={`project-health-badge ${sizeClasses[size]}`}
|
|
style={{
|
|
color: config.color,
|
|
borderColor: config.color,
|
|
}}
|
|
onMouseEnter={handleMouseEnter}
|
|
onMouseLeave={handleMouseLeave}
|
|
data-status={status}
|
|
>
|
|
<StatusIcon
|
|
size={size === "sm" ? 10 : size === "md" ? 12 : 14}
|
|
className={isInitializing ? "animate-spin" : ""}
|
|
/>
|
|
<span className="project-health-badge__label">{config.label}</span>
|
|
|
|
{/* Tooltip with health metrics */}
|
|
{isHovered && health && (
|
|
<div className="project-health-badge__tooltip">
|
|
<div className="project-health-tooltip__header">
|
|
<strong>Health Metrics</strong>
|
|
</div>
|
|
<div className="project-health-tooltip__content">
|
|
<div className="project-health-tooltip__metric">
|
|
<span className="project-health-tooltip__label">Active Tasks:</span>
|
|
<span className="project-health-tooltip__value">{health.activeTaskCount}</span>
|
|
</div>
|
|
<div className="project-health-tooltip__metric">
|
|
<span className="project-health-tooltip__label">In-Flight Agents:</span>
|
|
<span className="project-health-tooltip__value">{health.inFlightAgentCount}</span>
|
|
</div>
|
|
<div className="project-health-tooltip__metric">
|
|
<span className="project-health-tooltip__label">Completed:</span>
|
|
<span className="project-health-tooltip__value">{health.totalTasksCompleted}</span>
|
|
</div>
|
|
<div className="project-health-tooltip__metric">
|
|
<span className="project-health-tooltip__label">Failed:</span>
|
|
<span className="project-health-tooltip__value">{health.totalTasksFailed}</span>
|
|
</div>
|
|
{health.lastErrorMessage && (
|
|
<div className="project-health-tooltip__error">
|
|
<span className="project-health-tooltip__label">Last Error:</span>
|
|
<span className="project-health-tooltip__error-text">
|
|
{health.lastErrorMessage}
|
|
</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|