Files
FarmaFinder/apps/frontend-mobile/components/BarcodeScanner.tsx
T
Ichitux 2f36ef685d
Run Tests on Branches / Detect Changes (push) Successful in 10s
Run Tests on Branches / Backend Tests (push) Successful in 2m12s
Run Tests on Branches / Frontend Tests (push) Has been skipped
Run Tests on Branches / Frontend Mobile Tests (push) Successful in 1m47s
Mobile App design
2026-07-09 13:33:54 +02:00

203 lines
5.5 KiB
TypeScript

import React, { useState } from 'react';
import { View, Text, StyleSheet, TouchableOpacity } from 'react-native';
import { CameraView, useCameraPermissions } from 'expo-camera';
import { Ionicons } from '@expo/vector-icons';
import { useThemeContext } from './ThemeProvider';
import { spacing, borderRadius } from '../constants/theme';
interface BarcodeScannerProps {
onBarcodeScanned: (barcode: string) => void;
onClose: () => void;
}
export function BarcodeScanner({ onBarcodeScanned, onClose }: BarcodeScannerProps) {
const [permission, requestPermission] = useCameraPermissions();
const [scanned, setScanned] = useState(false);
const { colors } = useThemeContext();
if (!permission) {
return <View style={styles.container} />;
}
if (!permission.granted) {
return (
<View style={[styles.permissionContainer, { backgroundColor: colors.background }]}>
<Ionicons name="camera" size={64} color={colors.textSecondary} />
<Text style={[styles.permissionTitle, { color: colors.text }]}>Permiso de cámara requerido</Text>
<Text style={[styles.permissionText, { color: colors.textSecondary }]}>
Necesitamos acceso a la cámara para escanear códigos de barras
</Text>
<TouchableOpacity style={[styles.permissionButton, { backgroundColor: colors.primary }]} onPress={requestPermission}>
<Text style={styles.permissionButtonText}>Conceder permiso</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.cancelButton} onPress={onClose}>
<Text style={[styles.cancelButtonText, { color: colors.textSecondary }]}>Cancelar</Text>
</TouchableOpacity>
</View>
);
}
const handleBarCodeScanned = ({ type, data }: { type: string; data: string }) => {
if (scanned) return;
setScanned(true);
onBarcodeScanned(data);
};
return (
<View style={styles.container}>
<CameraView
style={StyleSheet.absoluteFillObject}
facing="back"
barcodeScannerSettings={{
barcodeTypes: ['ean13', 'ean8', 'upc_a', 'upc_e'],
}}
onBarcodeScanned={scanned ? undefined : handleBarCodeScanned}
/>
<View style={styles.overlay}>
<View style={styles.scannerFrame}>
<View style={[styles.corner, styles.topLeft, { borderColor: colors.primary }]} />
<View style={[styles.corner, styles.topRight, { borderColor: colors.primary }]} />
<View style={[styles.corner, styles.bottomLeft, { borderColor: colors.primary }]} />
<View style={[styles.corner, styles.bottomRight, { borderColor: colors.primary }]} />
</View>
<Text style={styles.instruction}>
Apunta la cámara al código de barras del medicamento
</Text>
<TouchableOpacity style={styles.closeButton} onPress={onClose}>
<Ionicons name="close" size={24} color={colors.textInverse} />
</TouchableOpacity>
</View>
{scanned && (
<View style={styles.scannedOverlay}>
<TouchableOpacity
style={[styles.scanAgainButton, { backgroundColor: colors.primary }]}
onPress={() => setScanned(false)}
>
<Text style={styles.scanAgainText}>Escanear de nuevo</Text>
</TouchableOpacity>
</View>
)}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#000',
},
permissionContainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
padding: spacing.xl,
},
permissionTitle: {
fontSize: 20,
fontWeight: 'bold',
marginTop: spacing.lg,
},
permissionText: {
fontSize: 16,
textAlign: 'center',
marginTop: spacing.sm,
marginBottom: spacing.xl,
},
permissionButton: {
borderRadius: borderRadius.md,
paddingVertical: spacing.md,
paddingHorizontal: spacing.xl,
},
permissionButtonText: {
color: '#ffffff',
fontSize: 16,
fontWeight: '600',
},
cancelButton: {
marginTop: spacing.md,
},
cancelButtonText: {
fontSize: 14,
},
overlay: {
flex: 1,
backgroundColor: 'transparent',
justifyContent: 'center',
alignItems: 'center',
},
scannerFrame: {
width: 250,
height: 250,
borderWidth: 2,
borderColor: 'transparent',
position: 'relative',
},
corner: {
position: 'absolute',
width: 30,
height: 30,
},
topLeft: {
top: 0,
left: 0,
borderTopWidth: 3,
borderLeftWidth: 3,
},
topRight: {
top: 0,
right: 0,
borderTopWidth: 3,
borderRightWidth: 3,
},
bottomLeft: {
bottom: 0,
left: 0,
borderBottomWidth: 3,
borderLeftWidth: 3,
},
bottomRight: {
bottom: 0,
right: 0,
borderBottomWidth: 3,
borderRightWidth: 3,
},
instruction: {
color: '#ffffff',
fontSize: 14,
textAlign: 'center',
marginTop: spacing.xl,
backgroundColor: 'rgba(0,0,0,0.6)',
paddingHorizontal: spacing.md,
paddingVertical: spacing.sm,
borderRadius: borderRadius.sm,
},
closeButton: {
position: 'absolute',
top: spacing.xl,
right: spacing.xl,
backgroundColor: 'rgba(0,0,0,0.6)',
borderRadius: 20,
padding: spacing.sm,
},
scannedOverlay: {
position: 'absolute',
bottom: spacing.xxl,
left: spacing.xl,
right: spacing.xl,
},
scanAgainButton: {
borderRadius: borderRadius.md,
padding: spacing.md,
alignItems: 'center',
},
scanAgainText: {
color: '#ffffff',
fontSize: 16,
fontWeight: '600',
},
});