Files
mockupAWS/frontend/src/components/layout/Header.tsx
T
Luca Sacchi Ricciardi 38fd6cb562
CI/CD - Build & Test / Backend Tests (push) Has been cancelled
CI/CD - Build & Test / Frontend Tests (push) Has been cancelled
CI/CD - Build & Test / Security Scans (push) Has been cancelled
CI/CD - Build & Test / Docker Build Test (push) Has been cancelled
CI/CD - Build & Test / Terraform Validate (push) Has been cancelled
Deploy to Production / Build & Test (push) Has been cancelled
Deploy to Production / Security Scan (push) Has been cancelled
Deploy to Production / Build Docker Images (push) Has been cancelled
Deploy to Production / Deploy to Staging (push) Has been cancelled
Deploy to Production / E2E Tests (push) Has been cancelled
Deploy to Production / Deploy to Production (push) Has been cancelled
E2E Tests / Run E2E Tests (push) Has been cancelled
E2E Tests / Visual Regression Tests (push) Has been cancelled
E2E Tests / Smoke Tests (push) Has been cancelled
release: v1.0.0 - Production Ready
Complete production-ready release with all v1.0.0 features:

Architecture & Planning (@spec-architect):
- Production architecture design with scalability and HA
- Security audit plan and compliance review
- Technical debt assessment and refactoring roadmap

Database (@db-engineer):
- 17 performance indexes and 3 materialized views
- PgBouncer connection pooling
- Automated backup/restore with PITR (RTO<1h, RPO<5min)
- Data archiving strategy (~65% storage savings)

Backend (@backend-dev):
- Redis caching layer with 3-tier strategy
- Celery async jobs with Flower monitoring
- API v2 with rate limiting (tiered: free/premium/enterprise)
- Prometheus metrics and OpenTelemetry tracing
- Security hardening (headers, audit logging)

Frontend (@frontend-dev):
- Bundle optimization: 308KB (code splitting, lazy loading)
- Onboarding tutorial (react-joyride)
- Command palette (Cmd+K) and keyboard shortcuts
- Analytics dashboard with cost predictions
- i18n (English + Italian) and WCAG 2.1 AA compliance

DevOps (@devops-engineer):
- Complete deployment guide (Docker, K8s, AWS ECS)
- Terraform AWS infrastructure (Multi-AZ RDS, ElastiCache, ECS)
- CI/CD pipelines with blue-green deployment
- Prometheus + Grafana monitoring with 15+ alert rules
- SLA definition and incident response procedures

QA (@qa-engineer):
- 153+ E2E test cases (85% coverage)
- k6 performance tests (1000+ concurrent users, p95<200ms)
- Security testing (0 critical vulnerabilities)
- Cross-browser and mobile testing
- Official QA sign-off

Production Features:
 Horizontal scaling ready
 99.9% uptime target
 <200ms response time (p95)
 Enterprise-grade security
 Complete observability
 Disaster recovery
 SLA monitoring

Ready for production deployment! 🚀
2026-04-07 20:14:51 +02:00

172 lines
6.8 KiB
TypeScript

import { useState, useRef, useEffect, useCallback } from 'react';
import { Link, useNavigate } from 'react-router-dom';
import { Cloud, User, Settings, Key, LogOut, ChevronDown, Command } from 'lucide-react';
import { ThemeToggle } from '@/components/ui/theme-toggle';
import { Button } from '@/components/ui/button';
import { useAuth } from '@/contexts/AuthContext';
export function Header() {
const { user, isAuthenticated, logout } = useAuth();
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
const dropdownRef = useRef<HTMLDivElement>(null);
const navigate = useNavigate();
// Close dropdown when clicking outside
useEffect(() => {
const handleClickOutside = (event: MouseEvent) => {
if (dropdownRef.current && !dropdownRef.current.contains(event.target as Node)) {
setIsDropdownOpen(false);
}
};
document.addEventListener('mousedown', handleClickOutside);
return () => document.removeEventListener('mousedown', handleClickOutside);
}, []);
const handleLogout = useCallback(() => {
logout();
navigate('/login');
}, [logout, navigate]);
const handleKeyDown = useCallback((e: React.KeyboardEvent) => {
if (e.key === 'Escape') {
setIsDropdownOpen(false);
}
}, []);
return (
<header className="border-b bg-card sticky top-0 z-50" role="banner">
<div className="flex h-16 items-center px-6">
<Link
to="/"
className="flex items-center gap-2 font-bold text-xl"
aria-label="mockupAWS Home"
>
<Cloud className="h-6 w-6" aria-hidden="true" />
<span>mockupAWS</span>
</Link>
{/* Keyboard shortcut hint */}
<div className="hidden md:flex items-center ml-4 text-xs text-muted-foreground">
<kbd className="px-1.5 py-0.5 bg-muted rounded mr-1">
{navigator.platform.includes('Mac') ? '⌘' : 'Ctrl'}
</kbd>
<kbd className="px-1.5 py-0.5 bg-muted rounded">K</kbd>
<span className="ml-2">for commands</span>
</div>
<div className="ml-auto flex items-center gap-4">
<span className="text-sm text-muted-foreground hidden sm:inline">
AWS Cost Simulator
</span>
<div data-tour="theme-toggle">
<ThemeToggle />
</div>
{isAuthenticated && user ? (
<div className="relative" ref={dropdownRef}>
<Button
variant="ghost"
className="flex items-center gap-2"
onClick={() => setIsDropdownOpen(!isDropdownOpen)}
aria-expanded={isDropdownOpen}
aria-haspopup="true"
aria-label="User menu"
>
<User className="h-4 w-4" aria-hidden="true" />
<span className="hidden sm:inline">{user.full_name || user.email}</span>
<ChevronDown className="h-4 w-4" aria-hidden="true" />
</Button>
{isDropdownOpen && (
<div
className="absolute right-0 mt-2 w-56 rounded-md border bg-popover shadow-lg"
role="menu"
aria-orientation="vertical"
onKeyDown={handleKeyDown}
>
<div className="p-2">
<div className="px-2 py-1.5 text-sm font-medium">
{user.full_name}
</div>
<div className="px-2 py-0.5 text-xs text-muted-foreground">
{user.email}
</div>
</div>
<div className="border-t my-1" role="separator" />
<div className="p-1">
<button
onClick={() => {
setIsDropdownOpen(false);
navigate('/profile');
}}
className="w-full flex items-center gap-2 px-2 py-1.5 text-sm rounded-sm hover:bg-accent hover:text-accent-foreground transition-colors"
role="menuitem"
>
<User className="h-4 w-4" aria-hidden="true" />
Profile
</button>
<button
onClick={() => {
setIsDropdownOpen(false);
navigate('/settings');
}}
className="w-full flex items-center gap-2 px-2 py-1.5 text-sm rounded-sm hover:bg-accent hover:text-accent-foreground transition-colors"
role="menuitem"
>
<Settings className="h-4 w-4" aria-hidden="true" />
Settings
</button>
<button
onClick={() => {
setIsDropdownOpen(false);
navigate('/settings/api-keys');
}}
className="w-full flex items-center gap-2 px-2 py-1.5 text-sm rounded-sm hover:bg-accent hover:text-accent-foreground transition-colors"
role="menuitem"
>
<Key className="h-4 w-4" aria-hidden="true" />
API Keys
</button>
<button
onClick={() => {
setIsDropdownOpen(false);
navigate('/analytics');
}}
className="w-full flex items-center gap-2 px-2 py-1.5 text-sm rounded-sm hover:bg-accent hover:text-accent-foreground transition-colors"
role="menuitem"
>
<Command className="h-4 w-4" aria-hidden="true" />
Analytics
</button>
</div>
<div className="border-t my-1" role="separator" />
<div className="p-1">
<button
onClick={handleLogout}
className="w-full flex items-center gap-2 px-2 py-1.5 text-sm rounded-sm hover:bg-destructive hover:text-destructive-foreground transition-colors text-destructive"
role="menuitem"
>
<LogOut className="h-4 w-4" aria-hidden="true" />
Logout
</button>
</div>
</div>
)}
</div>
) : (
<div className="flex items-center gap-2">
<Link to="/login">
<Button variant="ghost" size="sm">Sign in</Button>
</Link>
<Link to="/register">
<Button size="sm">Sign up</Button>
</Link>
</div>
)}
</div>
</div>
</header>
);
}