mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-26 23:05:00 +03:00
updated permission dialogues
This commit is contained in:
parent
fbe8ea8962
commit
55cd3e88b9
@ -11,7 +11,7 @@ import { useIntl } from 'react-intl';
|
||||
import { navigate } from '../../navigation/service';
|
||||
import { Icon } from '..';
|
||||
import { Dimensions } from 'react-native';
|
||||
import { check, request, PERMISSIONS, RESULTS } from 'react-native-permissions';
|
||||
import { check, request, PERMISSIONS, RESULTS, openSettings } from 'react-native-permissions';
|
||||
|
||||
export interface QRModalProps {}
|
||||
|
||||
@ -38,20 +38,42 @@ export const QRModal = ({}: QRModalProps) => {
|
||||
|
||||
const requestCameraPermission = async () => {
|
||||
if (Platform.OS === 'ios') {
|
||||
const permissionStatus = await check(PERMISSIONS.IOS.CAMERA);
|
||||
if (permissionStatus !== RESULTS.GRANTED) {
|
||||
request(PERMISSIONS.IOS.CAMERA).then((result) => {
|
||||
if (result === RESULTS.GRANTED) {
|
||||
console.log('Camera permission granted');
|
||||
} else {
|
||||
console.log('Camera permission denied');
|
||||
console.log('Camera permission blocked');
|
||||
Alert.alert(
|
||||
'Unable to get camera permission',
|
||||
'Please grant camera permission to scan QR code',
|
||||
'Unable to get Camera permission',
|
||||
'Please grant camera permission in ecency settings.',
|
||||
[
|
||||
{
|
||||
text: 'Close',
|
||||
onPress: () => {
|
||||
_onClose();
|
||||
},
|
||||
style: 'cancel',
|
||||
},
|
||||
{
|
||||
text: 'Allow',
|
||||
onPress: () => {
|
||||
openSettings();
|
||||
},
|
||||
},
|
||||
],
|
||||
);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
if (Platform.OS === 'android') {
|
||||
try {
|
||||
const permissionStatus = await PermissionsAndroid.check(
|
||||
PermissionsAndroid.PERMISSIONS.CAMERA,
|
||||
);
|
||||
if (!permissionStatus) {
|
||||
const granted = await PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.CAMERA, {
|
||||
title: 'Ecency Camera Permission',
|
||||
message: 'To scan QR, Ecency needs your permission.',
|
||||
@ -62,10 +84,7 @@ export const QRModal = ({}: QRModalProps) => {
|
||||
console.log('Camera permission granted');
|
||||
} else {
|
||||
console.log('Camera permission denied');
|
||||
Alert.alert(
|
||||
'Unable to get camera permission',
|
||||
'Please grant camera permission to scan QR code',
|
||||
);
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
console.warn(err);
|
||||
|
Loading…
Reference in New Issue
Block a user