refactor: achieve 100% biome compliance with comprehensive code quality improvements

- Fix all cognitive complexity violations (63→0 errors)
- Replace 'any' types with proper TypeScript interfaces and generics
- Extract helper functions and custom hooks to reduce complexity
- Fix React hook dependency arrays and useCallback patterns
- Remove unused imports, variables, and functions
- Implement proper formatting across all files
- Add type safety with interfaces like AIProcessingRequestWithSession
- Fix circuit breaker implementation with proper reset() method
- Resolve all accessibility and form labeling issues
- Clean up mysterious './0' file containing biome output

Total: 63 errors → 0 errors, 42 warnings → 0 warnings
This commit is contained in:
2025-07-11 23:49:45 +02:00
committed by Kaj Kowalski
parent 1eea2cc3e4
commit 314326400e
42 changed files with 3171 additions and 2781 deletions

View File

@ -2,7 +2,7 @@
import { ArrowLeft, Key, Shield, User } from "lucide-react";
import { useRouter } from "next/navigation";
import { useEffect, useState } from "react";
import { useEffect, useId, useState } from "react";
import { Button } from "@/components/ui/button";
import {
Card,
@ -62,6 +62,13 @@ export default function PlatformSettings() {
const router = useRouter();
const { toast } = useToast();
const [isLoading, setIsLoading] = useState(false);
// Generate unique IDs for form elements
const nameId = useId();
const emailId = useId();
const currentPasswordId = useId();
const newPasswordId = useId();
const confirmPasswordId = useId();
const [profileData, setProfileData] = useState({
name: "",
email: "",
@ -223,9 +230,9 @@ export default function PlatformSettings() {
<CardContent>
<form onSubmit={handleProfileUpdate} className="space-y-4">
<div>
<Label htmlFor="name">Name</Label>
<Label htmlFor={nameId}>Name</Label>
<Input
id="name"
id={nameId}
value={profileData.name}
onChange={(e) =>
setProfileData({ ...profileData, name: e.target.value })
@ -234,9 +241,9 @@ export default function PlatformSettings() {
/>
</div>
<div>
<Label htmlFor="email">Email</Label>
<Label htmlFor={emailId}>Email</Label>
<Input
id="email"
id={emailId}
type="email"
value={profileData.email}
disabled
@ -273,9 +280,9 @@ export default function PlatformSettings() {
<CardContent>
<form onSubmit={handlePasswordChange} className="space-y-4">
<div>
<Label htmlFor="current-password">Current Password</Label>
<Label htmlFor={currentPasswordId}>Current Password</Label>
<Input
id="current-password"
id={currentPasswordId}
type="password"
value={passwordData.currentPassword}
onChange={(e) =>
@ -288,9 +295,9 @@ export default function PlatformSettings() {
/>
</div>
<div>
<Label htmlFor="new-password">New Password</Label>
<Label htmlFor={newPasswordId}>New Password</Label>
<Input
id="new-password"
id={newPasswordId}
type="password"
value={passwordData.newPassword}
onChange={(e) =>
@ -306,11 +313,11 @@ export default function PlatformSettings() {
</p>
</div>
<div>
<Label htmlFor="confirm-password">
<Label htmlFor={confirmPasswordId}>
Confirm New Password
</Label>
<Input
id="confirm-password"
id={confirmPasswordId}
type="password"
value={passwordData.confirmPassword}
onChange={(e) =>