feat(cra): Eingangstür-Frontend — neutrales Verdict + Hersteller-Typ + Presets

ReadinessCheck erweitert: Hersteller-Typ-Weiche (Komponente/Endgeraet/Anlage-
Maschine/Software-App), Verkauf-ab-2027- und Kunden-Nachfrage-Fragen, Checkliste
vorhandener Nachweise. Neuer Ergebnis-View (ReadinessResult): 3-Tier-Verdict
(zwingend/ratsam/nicht betroffen, Co-Pilot-Ton ohne Panik-Rot) + Reifegrad-%
+ fehlende Nachweise + gefundene digitale Elemente + Pflichten-Uebersicht.
Zwei Demo-Presets (OWIS PS90+ Komponente, ZwickRoell roboTest Anlage+SW).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-06-16 17:25:17 +02:00
parent 3afb0e7f4d
commit 2d9b650ac1
3 changed files with 333 additions and 135 deletions
@@ -0,0 +1,54 @@
// Demo presets for the CRA readiness entrance door — two real, contrasting
// manufacturer archetypes so the flow is tangible. Data grounded in public
// datasheets (owis.eu PS 90+, zwickroell.com roboTest / testXpert).
export interface ReadinessPreset {
id: string
label: string
sublabel: string
intended_use: string
producer_type: string
flags: Record<string, boolean>
placed_on_market_after_2027: boolean
customers_request_cra_evidence: boolean
digital_elements: string[]
provided_evidence: string[]
}
export const READINESS_PRESETS: ReadinessPreset[] = [
{
id: 'owis',
label: 'OWIS PS 90+',
sublabel: 'Positioniersteuerung — Komponente',
intended_use:
'Universelle Positioniersteuerung (bis 9 Achsen) zur Ansteuerung von Motoren und Bremsen in Automatisierungsanlagen — mit Ethernet, USB, RS232, optionalem Anybus (Modbus/TCP), SPS-I/O, Triggerfunktionen und Software-SDK.',
producer_type: 'component',
flags: { connected_to_internet: true, has_firmware: true, has_software_updates: true },
placed_on_market_after_2027: true,
customers_request_cra_evidence: true,
digital_elements: [
'Ethernet', 'USB', 'RS232', 'Anybus (Modbus/TCP)', 'SDK (C/C++/C#/LabView)',
'SPS-I/O', 'Firmware', 'OWISoft', 'Triggerfunktionen',
],
provided_evidence: [],
},
{
id: 'zwick',
label: 'ZwickRoell roboTest',
sublabel: 'Automatisiertes Prüfsystem + testXpert — Anlage & Software',
intended_use:
'Automatisiertes Prüfsystem mit Roboter-Probenhandling (24/7-Betrieb), Software autoEdition + testXpert (Windows), volle Prozesssteuerung per Browser, Status auf Tablet-PCs, direkte Datenanbindung an Host-Systeme sowie Benutzer- und Rechteverwaltung.',
producer_type: 'machine_integrator',
flags: {
is_machinery: true, connected_to_internet: true, has_firmware: true,
has_software_updates: true, remote_maintenance: true, user_parameter_app: true,
},
placed_on_market_after_2027: true,
customers_request_cra_evidence: false,
digital_elements: [
'Roboter-Steuerung', 'autoEdition', 'testXpert (Windows)', 'Browser-Prozesssteuerung',
'Tablet-Status', 'Host-System-Anbindung', 'Benutzer-/Rechteverwaltung', 'Barcode/QR-Scanner',
],
provided_evidence: ['support_lifecycle'],
},
]