-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathApp.js
More file actions
333 lines (312 loc) · 7.87 KB
/
App.js
File metadata and controls
333 lines (312 loc) · 7.87 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
import React, { useState, useEffect, useRef } from 'react';
import {
SafeAreaView,
StyleSheet,
Text,
View,
ActivityIndicator,
TextInput,
TouchableOpacity,
Image,
} from 'react-native';
import {
Camera,
useCameraDevices,
useFrameProcessor,
} from 'react-native-vision-camera';
import { scanBarcodes, BarcodeFormat } from 'vision-camera-code-scanner';
import Animated, {
useAnimatedProps,
useSharedValue,
} from 'react-native-reanimated';
import DropDownPicker from 'react-native-dropdown-picker';
import Video from 'react-native-video';
const AnimatedText = Animated.createAnimatedComponent(TextInput);
export default function App() {
const camera = useRef(null);
const [cameraPermission, setCameraPermission] = useState();
const [open, setOpen] = useState(false);
const [currentExample, setCurrentExample] = useState('take-photo');
const [photoPath, setPhotoPath] = useState();
const [snapshotPath, setSnapshotPath] = useState();
const [videoPath, setVideoPath] = useState();
const detectorResult = useSharedValue('');
useEffect(() => {
(async () => {
const cameraPermissionStatus = await Camera.requestCameraPermission();
setCameraPermission(cameraPermissionStatus);
})();
}, []);
const devices = useCameraDevices();
const cameraDevice = devices.back;
const frameProcessor = useFrameProcessor(frame => {
'worklet';
const detectedBarcodes = scanBarcodes(frame, [BarcodeFormat.QR_CODE]);
const barcodesStr = detectedBarcodes
.map(barcode => barcode.displayValue)
.join('');
console.log('Barcodes:', barcodesStr);
detectorResult.value = barcodesStr;
}, []);
const animatedTextProps = useAnimatedProps(
() => ({ text: detectorResult.value }),
[detectorResult.value],
);
const handleTakePhoto = async () => {
try {
const photo = await camera.current.takePhoto({
flash: 'on',
});
setPhotoPath(photo.path);
} catch (e) {
console.log(e);
}
};
const renderTakingPhoto = () => {
return (
<View>
<Camera
ref={camera}
style={[styles.camera, styles.photoAndVideoCamera]}
device={cameraDevice}
isActive
photo
/>
<TouchableOpacity style={styles.btn} onPress={handleTakePhoto}>
<Text style={styles.btnText}>Take Photo</Text>
</TouchableOpacity>
{photoPath && (
<Image style={styles.image} source={{ uri: photoPath }} />
)}
</View>
);
};
const handleRecordVideo = async () => {
try {
camera.current.startRecording({
flash: 'on',
onRecordingFinished: video => setVideoPath(video.path),
onRecordingError: error => console.error(error),
});
} catch (e) {
console.log(e);
}
};
const handleStopVideo = async () => {
try {
await camera.current.stopRecording();
} catch (e) {
console.log(e);
}
};
const renderRecordingVideo = () => {
return (
<View>
<Camera
ref={camera}
style={[styles.camera, styles.photoAndVideoCamera]}
device={cameraDevice}
isActive
video
/>
<View style={styles.btnGroup}>
<TouchableOpacity style={styles.btn} onPress={handleRecordVideo}>
<Text style={styles.btnText}>Record Video</Text>
</TouchableOpacity>
<TouchableOpacity style={{ ...styles.btn }} onPress={handleStopVideo}>
<Text style={styles.btnText}>Stop Video</Text>
</TouchableOpacity>
</View>
{videoPath && (
<Video source={{ uri: videoPath }} style={styles.video} />
)}
</View>
);
};
const handleTakeSnapshot = async () => {
try {
const snapshot = await camera.current.takeSnapshot({
quality: 85,
skipMetadata: true,
});
setSnapshotPath(snapshot.path);
} catch (e) {
console.log(e);
}
};
const renderTakingSnapshot = () => {
return (
<View>
<Camera
ref={camera}
style={[styles.camera, styles.photoAndVideoCamera]}
device={cameraDevice}
isActive
photo
/>
<TouchableOpacity style={styles.btn} onPress={handleTakeSnapshot}>
<Text style={styles.btnText}>Take Snapshot</Text>
</TouchableOpacity>
{snapshotPath && (
<Image style={styles.image} source={{ uri: snapshotPath }} />
)}
</View>
);
};
const renderCodeScanner = () => {
return (
<View>
<Camera
style={styles.camera}
device={cameraDevice}
isActive
frameProcessor={frameProcessor}
frameProcessorFps={5}
/>
<AnimatedText
style={styles.barcodeText}
animatedProps={animatedTextProps}
editable={false}
multiline
/>
</View>
);
};
const renderContent = () => {
if (cameraDevice == null) {
return <ActivityIndicator size="large" color="#1C6758" />;
}
if (cameraPermission !== 'authorized') {
return null;
}
switch (currentExample) {
case 'take-photo':
return renderTakingPhoto();
case 'record-video':
return renderRecordingVideo();
case 'take-snapshot':
return renderTakingSnapshot();
case 'code-scanner':
return renderCodeScanner();
default:
return null;
}
};
const handleChangePicketSelect = value => {
setPhotoPath(null);
setSnapshotPath(null);
setVideoPath(null);
setCurrentExample(value);
};
return (
<View style={styles.screen}>
<SafeAreaView style={styles.saveArea}>
<View style={styles.header}>
<Text style={styles.headerText}>React Native Camera Libraries</Text>
</View>
</SafeAreaView>
<View style={styles.caption}>
<Text style={styles.captionText}>
Welcome To React-Native-Vision-Camera Tutorial
</Text>
</View>
<View style={styles.dropdownPickerWrapper}>
<DropDownPicker
open={open}
value={currentExample}
items={[
{ label: 'Take Photo', value: 'take-photo' },
{ label: 'Record Video', value: 'record-video' },
{ label: 'Take Snapshot', value: 'take-snapshot' },
{ label: 'Code Scanner', value: 'code-scanner' },
]}
setOpen={setOpen}
setValue={handleChangePicketSelect}
/>
</View>
{renderContent()}
</View>
);
}
const styles = StyleSheet.create({
screen: {
flex: 1,
backgroundColor: '#EEF2E6',
},
saveArea: {
backgroundColor: '#3D8361',
},
header: {
height: 50,
backgroundColor: '#3D8361',
alignItems: 'center',
justifyContent: 'center',
},
headerText: {
color: '#ffffff',
fontSize: 20,
},
caption: {
height: 100,
justifyContent: 'center',
alignItems: 'center',
},
captionText: {
color: '#100F0F',
fontSize: 16,
fontWeight: '600',
},
camera: {
height: 460,
width: '92%',
alignSelf: 'center',
},
photoAndVideoCamera: {
height: 360,
},
barcodeText: {
paddingHorizontal: 16,
paddingVertical: 20,
textAlign: 'center',
color: '#100F0F',
fontSize: 24,
},
pickerSelect: {
paddingVertical: 12,
},
image: {
marginHorizontal: 16,
paddingTop: 8,
width: 80,
height: 80,
},
dropdownPickerWrapper: {
paddingHorizontal: 16,
paddingBottom: 16,
zIndex: 9,
},
btnGroup: {
margin: 16,
flexDirection: 'row',
},
btn: {
backgroundColor: '#63995f',
margin: 13,
paddingHorizontal: 20,
paddingVertical: 16,
borderRadius: 8,
},
btnText: {
color: '#ffffff',
fontSize: 20,
textAlign: 'center',
},
video: {
marginHorizontal: 16,
height: 100,
width: 80,
position: 'absolute',
right: 0,
bottom: -80,
},
});