refactor(admin): split dsr/new, compliance-hub, iace/monitoring, cookie-banner pages

Extract components and hooks from 4 oversized pages (518–508 LOC each) to bring
each page.tsx under 300 LOC (hard cap 500). Zero behavior changes.

- dsr/new: TypeSelector, SourceSelector → _components/; useNewDSRForm → _hooks/
- compliance-hub: QuickActions, StatsRow, DomainChart, MappingsAndFindings,
  RegulationsTable → _components/; useComplianceHub → _hooks/
- iace/[projectId]/monitoring: Badges, EventForm, ResolveModal, TimelineEvent →
  _components/; useMonitoring → _hooks/
- cookie-banner: BannerPreview, CategoryCard → _components/; useCookieBanner → _hooks/

Result: page.tsx LOC: dsr/new=259, compliance-hub=95, monitoring=157, cookie-banner=212

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Sharang Parnerkar
2026-04-16 13:22:01 +02:00
parent 519ffdc8dc
commit e04816cfe5
20 changed files with 1514 additions and 1378 deletions

View File

@@ -0,0 +1,50 @@
'use client'
import { BannerConfig, BannerTexts, CookieCategory } from '../_hooks/useCookieBanner'
export function BannerPreview({
config,
categories,
bannerTexts,
}: {
config: BannerConfig
categories: CookieCategory[]
bannerTexts: BannerTexts
}) {
return (
<div className="relative bg-gray-100 rounded-xl p-8 min-h-64 flex items-end justify-center">
<div className="absolute inset-0 flex items-center justify-center text-gray-400 text-sm">
Website-Vorschau
</div>
<div
className={`w-full max-w-2xl bg-white rounded-xl shadow-xl p-6 border-2 ${
config.position === 'center' ? 'absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2' : ''
}`}
style={{ borderColor: config.primaryColor }}
>
<h4 className="font-semibold text-gray-900">{bannerTexts.title}</h4>
<p className="text-sm text-gray-600 mt-2">
{bannerTexts.description}
</p>
<div className="mt-4 flex items-center gap-3">
<button
className="px-4 py-2 rounded-lg text-white text-sm font-medium"
style={{ backgroundColor: config.primaryColor }}
>
Alle akzeptieren
</button>
{config.showDeclineAll && (
<button className="px-4 py-2 rounded-lg border border-gray-300 text-gray-700 text-sm font-medium">
Alle ablehnen
</button>
)}
{config.showSettings && (
<button className="px-4 py-2 text-sm text-gray-600 hover:underline">
Einstellungen
</button>
)}
</div>
</div>
</div>
)
}

View File

@@ -0,0 +1,80 @@
'use client'
import { useState } from 'react'
import { CookieCategory } from '../_hooks/useCookieBanner'
export function CategoryCard({
category,
onToggle,
}: {
category: CookieCategory
onToggle: (enabled: boolean) => void
}) {
const [expanded, setExpanded] = useState(false)
return (
<div className="bg-white rounded-xl border border-gray-200 overflow-hidden">
<div className="p-4 flex items-center justify-between">
<div className="flex-1">
<div className="flex items-center gap-2">
<h4 className="font-semibold text-gray-900">{category.name}</h4>
{category.required && (
<span className="px-2 py-0.5 text-xs bg-gray-100 text-gray-500 rounded">Erforderlich</span>
)}
<span className="px-2 py-0.5 text-xs bg-blue-50 text-blue-600 rounded">
{category.cookies.length} Cookies
</span>
</div>
<p className="text-sm text-gray-500 mt-1">{category.description}</p>
</div>
<div className="flex items-center gap-4">
<button
onClick={() => setExpanded(!expanded)}
className="text-sm text-purple-600 hover:underline"
>
{expanded ? 'Ausblenden' : 'Details'}
</button>
<label className="relative inline-flex items-center cursor-pointer">
<input
type="checkbox"
checked={category.enabled}
onChange={(e) => onToggle(e.target.checked)}
disabled={category.required}
className="sr-only peer"
/>
<div className={`w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-purple-100 rounded-full peer ${
category.enabled ? 'peer-checked:bg-purple-600' : ''
} peer-disabled:opacity-50 after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:rounded-full after:h-5 after:w-5 after:transition-all ${
category.enabled ? 'after:translate-x-full' : ''
}`} />
</label>
</div>
</div>
{expanded && (
<div className="border-t border-gray-100 p-4 bg-gray-50">
<table className="w-full text-sm">
<thead>
<tr className="text-left text-gray-500">
<th className="pb-2">Cookie</th>
<th className="pb-2">Anbieter</th>
<th className="pb-2">Zweck</th>
<th className="pb-2">Ablauf</th>
</tr>
</thead>
<tbody className="text-gray-700">
{category.cookies.map(cookie => (
<tr key={cookie.name}>
<td className="py-1 font-mono text-xs">{cookie.name}</td>
<td className="py-1">{cookie.provider}</td>
<td className="py-1">{cookie.purpose}</td>
<td className="py-1">{cookie.expiry}</td>
</tr>
))}
</tbody>
</table>
</div>
)}
</div>
)
}