Implement the main dashboard / projects list page for Syndarix as the landing page after login. The implementation includes: Dashboard Components: - QuickStats: Overview cards showing active projects, agents, issues, approvals - ProjectsSection: Grid/list view with filtering and sorting controls - ProjectCardGrid: Rich project cards for grid view - ProjectRowList: Compact rows for list view - ActivityFeed: Real-time activity sidebar with connection status - PerformanceCard: Performance metrics display - EmptyState: Call-to-action for new users - ProjectStatusBadge: Status indicator with icons - ComplexityIndicator: Visual complexity dots - ProgressBar: Accessible progress bar component Features: - Projects grid/list view with view mode toggle - Filter by status (all, active, paused, completed, archived) - Sort by recent, name, progress, or issues - Quick stats overview with counts - Real-time activity feed sidebar with live/reconnecting status - Performance metrics card - Create project button linking to wizard - Responsive layout for mobile/desktop - Loading skeleton states - Empty state for new users API Integration: - useProjects hook for fetching projects (mock data until backend ready) - useDashboardStats hook for statistics - TanStack Query for caching and data fetching Testing: - 37 unit tests covering all dashboard components - E2E test suite for dashboard functionality - Accessibility tests (keyboard nav, aria attributes, heading hierarchy) Technical: - TypeScript strict mode compliance - ESLint passing - WCAG AA accessibility compliance - Mobile-first responsive design - Dark mode support via semantic tokens - Follows design system guidelines 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
84 lines
2.6 KiB
TypeScript
84 lines
2.6 KiB
TypeScript
/**
|
|
* StatusWorkflow Component Tests
|
|
*/
|
|
|
|
import { render, screen } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import { StatusWorkflow } from '@/features/issues/components/StatusWorkflow';
|
|
import type { IssueStatus } from '@/features/issues/types';
|
|
|
|
describe('StatusWorkflow', () => {
|
|
const mockOnStatusChange = jest.fn();
|
|
|
|
beforeEach(() => {
|
|
mockOnStatusChange.mockClear();
|
|
});
|
|
|
|
it('renders all status options', () => {
|
|
render(
|
|
<StatusWorkflow currentStatus="open" onStatusChange={mockOnStatusChange} />
|
|
);
|
|
|
|
expect(screen.getByText('Open')).toBeInTheDocument();
|
|
expect(screen.getByText('In Progress')).toBeInTheDocument();
|
|
expect(screen.getByText('In Review')).toBeInTheDocument();
|
|
expect(screen.getByText('Blocked')).toBeInTheDocument();
|
|
expect(screen.getByText('Done')).toBeInTheDocument();
|
|
expect(screen.getByText('Closed')).toBeInTheDocument();
|
|
});
|
|
|
|
it('highlights current status', () => {
|
|
render(
|
|
<StatusWorkflow currentStatus="in_progress" onStatusChange={mockOnStatusChange} />
|
|
);
|
|
|
|
const inProgressButton = screen.getByRole('radio', { name: /in progress/i });
|
|
expect(inProgressButton).toHaveAttribute('aria-checked', 'true');
|
|
});
|
|
|
|
it('calls onStatusChange when status is clicked', async () => {
|
|
const user = userEvent.setup();
|
|
render(
|
|
<StatusWorkflow currentStatus="open" onStatusChange={mockOnStatusChange} />
|
|
);
|
|
|
|
const inProgressButton = screen.getByRole('radio', { name: /in progress/i });
|
|
await user.click(inProgressButton);
|
|
|
|
expect(mockOnStatusChange).toHaveBeenCalledWith('in_progress');
|
|
});
|
|
|
|
it('disables status buttons when disabled prop is true', async () => {
|
|
const user = userEvent.setup();
|
|
render(
|
|
<StatusWorkflow currentStatus="open" onStatusChange={mockOnStatusChange} disabled />
|
|
);
|
|
|
|
const inProgressButton = screen.getByRole('radio', { name: /in progress/i });
|
|
expect(inProgressButton).toBeDisabled();
|
|
|
|
await user.click(inProgressButton);
|
|
expect(mockOnStatusChange).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('applies custom className', () => {
|
|
const { container } = render(
|
|
<StatusWorkflow
|
|
currentStatus="open"
|
|
onStatusChange={mockOnStatusChange}
|
|
className="custom-class"
|
|
/>
|
|
);
|
|
|
|
expect(container.firstChild).toHaveClass('custom-class');
|
|
});
|
|
|
|
it('has proper radiogroup role', () => {
|
|
render(
|
|
<StatusWorkflow currentStatus="open" onStatusChange={mockOnStatusChange} />
|
|
);
|
|
|
|
expect(screen.getByRole('radiogroup', { name: /issue status/i })).toBeInTheDocument();
|
|
});
|
|
});
|