-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
109 lines (105 loc) · 2.74 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import { StatusBar } from 'expo-status-bar';
import React, { useEffect, useState } from 'react';
import {
Linking,
Platform,
StyleSheet,
Text,
View,
TouchableOpacity,
Button,
} from 'react-native';
import { Camera } from 'expo-camera';
import { BarCodeScanner } from 'expo-barcode-scanner';
import * as WebBrowser from 'expo-web-browser';
export default function App() {
const [hasPermission, setHasPermission] = useState(null);
const [type, setType] = useState(Camera.Constants.Type.back);
const [scanned, setScanned] = useState(false);
if (Platform.OS === 'web') {
if (!Camera.isAvailableAsync()) {
return <Text>Camera is not available.</Text>;
}
// setType(Camera.Constants.Type.front);
} else {
useEffect(() => {
(async () => {
const { status } = await Camera.requestPermissionsAsync();
setHasPermission(status === 'granted');
})();
}, []);
if (hasPermission === null) {
return <Text>Requesting for camera permission.</Text>;
}
if (hasPermission === false) {
return <Text>No access to camera</Text>;
}
}
const handleBarCodeScanned = ({ type, data }) => {
setScanned(true);
// alert(`Bar code with type ${type} and data ${data} has been scanned!`);
let res = WebBrowser.openBrowserAsync(data);
if (Platform.os !== 'web') {
// setScanned(false);
}
};
return (
<View style={styles.container}>
<Camera
style={styles.camera}
type={type}
barCodeScannerSettings={{
shouldRenderIndicator: true,
barCodeTypes: [BarCodeScanner.Constants.BarCodeType.qr],
}}
onBarCodeScanned={scanned ? undefined : handleBarCodeScanned}
>
<View style={styles.buttonContainer}>
{scanned && (
<TouchableOpacity
style={styles.button}
title={'Tap to Scan Again'}
onPress={() => setScanned(false)}
>
<Text style={styles.text}> 再スキャンするには画面にタップしてください </Text>
</TouchableOpacity>
)}
</View>
</Camera>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
camera: {
flex: 1,
},
buttonContainer: {
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
},
button: {
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
alignSelf: 'flex-end',
alignItems: 'center',
},
text: {
color: 'white',
fontSize: 20,
marginHorizontal: 15,
marginBottom: 10,
},
noCamera: {
color: '#888',
fontSize: 20,
alignItems: 'center',
justifyContent: 'center',
},
});