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
|
import CameraRoll from '@react-native-community/cameraroll';
import {Dispatch, RefObject, SetStateAction} from 'react';
import {Alert} from 'react-native';
import {RNCamera} from 'react-native-camera';
import ImagePicker from 'react-native-image-crop-picker';
import {ScreenType} from 'src/types';
import {ERROR_UPLOAD} from '../constants/strings';
/*
* Captures a photo and pauses to shoe the preview of the picture taken
*/
export const takePicture = (
cameraRef: RefObject<RNCamera>,
setShowSaveButton: Dispatch<SetStateAction<boolean>>,
setCapturedImage: Dispatch<SetStateAction<string>>,
) => {
if (cameraRef !== null) {
cameraRef.current?.pausePreview();
const options = {
forceUpOrientation: true,
quality: 0.5,
base64: true,
};
cameraRef.current?.takePictureAsync(options).then((response) => {
setShowSaveButton(true);
setCapturedImage(response.uri);
});
}
};
export const downloadImage = (capturedImageURI: string) => {
CameraRoll.save(capturedImageURI, {album: 'Recents', type: 'photo'})
.then((_res) => Alert.alert('Saved to device!'))
.catch((_err) => Alert.alert('Failed to save to device!'));
};
export const navigateToImagePicker = (
navigation: any,
screenType: ScreenType,
title: string,
) => {
ImagePicker.openPicker({
smartAlbums: [
'Favorites',
'RecentlyAdded',
'SelfPortraits',
'Screenshots',
'UserLibrary',
],
mediaType: 'any',
})
.then((picture) => {
if ('path' in picture) {
navigation.navigate('ZoomInCropper', {
screenType,
title,
image: picture,
});
}
})
.catch((err) => {
if (err.code && err.code !== 'E_PICKER_CANCELLED') {
Alert.alert(ERROR_UPLOAD);
}
});
};
|