Last active
September 5, 2022 12:27
-
-
Save goodpic/e362f531d59c016d9606c5ac3a53978a to your computer and use it in GitHub Desktop.
Scan barcode with ReactNative Expo.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { Alert, View, Text, Vibration, StyleSheet } from 'react-native'; | |
import { Camera, BarCodeScanner, Permissions } from 'expo'; | |
export class ExpoScanner extends Component { | |
constructor(props) { | |
super(props); | |
this.onBarCodeRead = this.onBarCodeRead.bind(this); | |
this.renderMessage = this.renderMessage.bind(this); | |
this.scannedCode = null; | |
this.state = { | |
hasCameraPermission: null, | |
type: Camera.Constants.Type.back, | |
}; | |
} | |
async componentWillMount() { | |
const { status } = await Permissions.askAsync(Permissions.CAMERA); | |
await this.setState({hasCameraPermission: status === 'granted'}); | |
await this.resetScanner(); | |
} | |
renderAlert(title, message) { | |
Alert.alert( | |
title, | |
message, | |
[ | |
{ text: 'OK', onPress: () => this.resetScanner() }, | |
], | |
{ cancelable: true } | |
); | |
} | |
onBarCodeRead({ type, data } ) { | |
if ((type === this.state.scannedItem.type && data === this.state.scannedItem.data) || data === null) { | |
return; | |
} | |
Vibration.vibrate(); | |
this.setState({ scannedItem: { data, type } }); | |
if (type.startsWith('org.gs1.EAN')) { | |
// Do something for EAN | |
console.log(`EAN scanned: ${data}`); | |
this.resetScanner(); | |
this.props.navigation.navigate('YOUR_NEXT_SCREEN', { ean: data }); | |
} else if (type.startsWith('org.iso.QRCode')) { | |
// Do samething for QRCode | |
console.log(`QRCode scanned: ${data}`); | |
this.resetScanner(); | |
} else { | |
this.renderAlert( | |
'This barcode is not supported.', | |
`${type} : ${data}`, | |
); | |
} | |
} | |
renderMessage() { | |
if (this.state.scannedItem && this.state.scannedItem.type) { | |
const { type, data } = this.state.scannedItem; | |
return ( | |
<Text style={styles.scanScreenMessage}> | |
{`Scanned \n ${type} \n ${data}`} | |
</Text> | |
); | |
} | |
return <Text style={styles.scanScreenMessage}>Focus the barcode to scan.</Text>; | |
} | |
resetScanner() { | |
this.scannedCode = null; | |
this.setState({ | |
scannedItem: { | |
type: null, | |
data: null | |
} | |
}); | |
} | |
render() { | |
const { hasCameraPermission } = this.state; | |
if (hasCameraPermission === null) { | |
return <Text>Requesting for camera permission</Text>; | |
} | |
if (hasCameraPermission === false) { | |
return <Text>No access to camera</Text>; | |
} | |
return ( | |
<View style={styles.container}> | |
<View style={{ flex: 1 }}> | |
<BarCodeScanner | |
onBarCodeScanned={this.onBarCodeRead} | |
style={StyleSheet.absoluteFill} | |
/> | |
{this.renderMessage()} | |
</View> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
paddingTop: 15, | |
backgroundColor: '#fff', | |
}, | |
scanScreenMessage: { | |
fontSize: 20, | |
color: 'white', | |
textAlign: 'center', | |
alignItems: 'center', | |
justifyContent: 'center' | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment