4 Commits

Author SHA1 Message Date
JSC
427b776269 feat: Add Project and Image detail pages with vulnerability summaries and counts 2025-07-11 15:10:46 +02:00
JSC
d9cd3adef1 fix: Update Layout component to center sidebar items and add scan_job_id to Vulnerability interface 2025-07-10 23:07:36 +02:00
JSC
181b3e2878 feat: Implement API client and dashboard functionality
- Added api.ts to handle API requests and define data models for Project, Image, Vulnerability, IgnoreRule, ScanJob, and DashboardStats.
- Created Dashboard component to display statistics and initiate scans for projects and vulnerabilities.
- Developed IgnoreRules component for managing ignore rules with filtering options.
- Implemented Images component to list discovered Docker images.
- Added Projects component to display monitored GitLab projects.
- Created ScanJobs component to show history and status of scanning operations.
- Developed Vulnerabilities component to report security vulnerabilities found in Docker images.
- Removed BrowserRouter from main.tsx as routing is not currently implemented.
2025-07-10 22:57:22 +02:00
JSC
8fe6ee937b feat: initialize frontend project with Vite, React, and TypeScript
- Added components.json for component configuration
- Created eslint.config.js for ESLint setup with TypeScript and React
- Added index.html as the main entry point
- Initialized package.json with dependencies and scripts for development
- Included Vite logo SVG in public directory
- Created basic App component in src/App.tsx
- Added React logo SVG in assets directory
- Implemented Button component with variants in src/components/ui/button.tsx
- Set up Tailwind CSS in src/index.css
- Created utility functions for class names in src/lib/utils.ts
- Configured main entry point in src/main.tsx
- Added TypeScript environment definitions in vite-env.d.ts
- Created tsconfig files for application and node configurations
- Configured Vite with React and Tailwind CSS in vite.config.ts
2025-07-10 20:53:12 +02:00