mirror of
https://github.com/ruvnet/RuView.git
synced 2026-04-28 05:59:32 +00:00
P1 fixes (this sprint): - P1-6: Extract sensing-server modules (cli, types, csi, pose) from main.rs - P1-7: DDA ray march for tomography — O(max(n)) replaces O(n^3) voxel scan - P1-8: Batch neural inference — Tensor::stack/split for single GPU call - P1-10: Eliminate 112KB/frame alloc — islice replaces deque→list copy P2 fixes (this quarter): - P2-11: Python unit tests for 8 modules (rate_limit, auth, error_handler, pose_service, stream_service, hardware_service, health_check, metrics) - P2-13: MAT simulated data safety guard — blocking overlay + pulsing banner - P2-14: Wire token blacklist into auth verification + logout endpoint - P2-15: Frame budget benchmark — confirms pipeline well under 50ms budget Addresses 8 of 10 remaining issues from QE analysis (ADR-080). Co-Authored-By: claude-flow <ruv@ruv.net>
78 lines
1.9 KiB
TypeScript
78 lines
1.9 KiB
TypeScript
import React from 'react';
|
|
import { Modal, Pressable, StyleSheet, Text, View } from 'react-native';
|
|
|
|
interface Props {
|
|
visible: boolean;
|
|
onAcknowledge: () => void;
|
|
}
|
|
|
|
export const SimulationWarningOverlay: React.FC<Props> = ({ visible, onAcknowledge }) => (
|
|
<Modal visible={visible} transparent animationType="fade">
|
|
<View style={styles.backdrop}>
|
|
<View style={styles.card}>
|
|
<Text style={styles.icon}>⚠</Text>
|
|
<Text style={styles.title}>SIMULATED DATA</Text>
|
|
<Text style={styles.body}>
|
|
NOT CONNECTED TO REAL SENSORS{'\n\n'}
|
|
All survivor detections, vital signs, and alerts displayed on this screen are
|
|
generated from simulated data and do not reflect actual conditions.
|
|
</Text>
|
|
<Pressable style={styles.button} onPress={onAcknowledge}>
|
|
<Text style={styles.buttonText}>I UNDERSTAND</Text>
|
|
</Pressable>
|
|
</View>
|
|
</View>
|
|
</Modal>
|
|
);
|
|
|
|
const styles = StyleSheet.create({
|
|
backdrop: {
|
|
flex: 1,
|
|
backgroundColor: 'rgba(0,0,0,0.85)',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
padding: 24,
|
|
},
|
|
card: {
|
|
backgroundColor: '#1a1a2e',
|
|
borderRadius: 16,
|
|
padding: 32,
|
|
alignItems: 'center',
|
|
borderWidth: 2,
|
|
borderColor: '#e74c3c',
|
|
maxWidth: 420,
|
|
width: '100%',
|
|
},
|
|
icon: {
|
|
fontSize: 48,
|
|
color: '#e74c3c',
|
|
marginBottom: 12,
|
|
},
|
|
title: {
|
|
fontSize: 22,
|
|
fontWeight: '800',
|
|
color: '#e74c3c',
|
|
textAlign: 'center',
|
|
marginBottom: 16,
|
|
letterSpacing: 1,
|
|
},
|
|
body: {
|
|
fontSize: 15,
|
|
color: '#cccccc',
|
|
textAlign: 'center',
|
|
lineHeight: 22,
|
|
marginBottom: 28,
|
|
},
|
|
button: {
|
|
backgroundColor: '#e74c3c',
|
|
paddingHorizontal: 36,
|
|
paddingVertical: 14,
|
|
borderRadius: 8,
|
|
},
|
|
buttonText: {
|
|
color: '#ffffff',
|
|
fontWeight: '700',
|
|
fontSize: 16,
|
|
letterSpacing: 0.5,
|
|
},
|
|
});
|