Files
ruvnet--RuView/ui/mobile/src/screens/MATScreen/AlertCard.tsx
T
ruv fdc7142dfa feat: Implement RSSI service for iOS and Web platforms
- Added IosRssiService to handle synthetic RSSI data for iOS.
- Created WebRssiService to simulate RSSI scanning on the web.
- Defined shared types for WifiNetwork and RssiService in rssi.service.ts.
- Introduced simulation service to generate synthetic sensing data.
- Implemented WebSocket service for real-time data handling with reconnection logic.
- Established Zustand stores for managing application state related to MAT and pose data.
- Developed theme context and utility functions for consistent styling and formatting.
- Added type definitions for various application entities including API responses and sensing data.
- Created utility functions for color mapping and URL validation.
- Configured TypeScript settings for the mobile application.
2026-03-02 10:30:33 -05:00

85 lines
1.9 KiB
TypeScript

import { View } from 'react-native';
import { ThemedText } from '@/components/ThemedText';
import { colors } from '@/theme/colors';
import { spacing } from '@/theme/spacing';
import { AlertPriority, type Alert } from '@/types/mat';
type SeverityLevel = 'URGENT' | 'HIGH' | 'NORMAL';
type AlertCardProps = {
alert: Alert;
};
type SeverityMeta = {
label: SeverityLevel;
icon: string;
color: string;
};
const resolveSeverity = (alert: Alert): SeverityMeta => {
if (alert.priority === AlertPriority.Critical) {
return {
label: 'URGENT',
icon: '‼',
color: colors.danger,
};
}
if (alert.priority === AlertPriority.High) {
return {
label: 'HIGH',
icon: '⚠',
color: colors.warn,
};
}
return {
label: 'NORMAL',
icon: '•',
color: colors.accent,
};
};
const formatTime = (value?: string): string => {
if (!value) {
return 'Unknown';
}
try {
return new Date(value).toLocaleTimeString();
} catch {
return 'Unknown';
}
};
export const AlertCard = ({ alert }: AlertCardProps) => {
const severity = resolveSeverity(alert);
return (
<View
style={{
backgroundColor: '#111827',
borderWidth: 1,
borderColor: `${severity.color}55`,
padding: spacing.md,
borderRadius: 10,
marginBottom: spacing.sm,
}}
>
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 8 }}>
<ThemedText preset="labelMd" style={{ color: severity.color }}>
{severity.icon} {severity.label}
</ThemedText>
<View style={{ flex: 1 }}>
<ThemedText preset="bodySm" style={{ color: colors.textSecondary }}>
{formatTime(alert.created_at)}
</ThemedText>
</View>
</View>
<ThemedText preset="bodyMd" style={{ color: colors.textPrimary, marginTop: 6 }}>
{alert.message}
</ThemedText>
</View>
);
};