mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 10:12:01 +01:00
46 lines
1.7 KiB
TypeScript
46 lines
1.7 KiB
TypeScript
import { Platform } from 'react-native';
|
|
import { check, request, PERMISSIONS, RESULTS } from 'react-native-permissions';
|
|
import { navigationRef } from '../NavigationService';
|
|
/**
|
|
* Helper function that navigates to ScanQR screen, and returns promise that will resolve with the result of a scan,
|
|
* and then navigates back. If QRCode scan was closed, promise resolves to null.
|
|
*
|
|
* @param currentScreenName {string}
|
|
* @param showFileImportButton {boolean}
|
|
*
|
|
* @param onDismiss {function} - if camera is closed via X button it gets triggered
|
|
* @return {Promise<string>}
|
|
*/
|
|
function scanQrHelper(currentScreenName: string, showFileImportButton = true, onDismiss?: () => void): Promise<string | null> {
|
|
return requestCameraAuthorization().then(() => {
|
|
return new Promise(resolve => {
|
|
const params = {
|
|
showFileImportButton: Boolean(showFileImportButton),
|
|
onBarScanned: (data: any) => {},
|
|
onDismiss,
|
|
};
|
|
|
|
params.onBarScanned = function (data: any) {
|
|
setTimeout(() => resolve(data.data || data), 1);
|
|
navigationRef.navigate({ name: currentScreenName, params: {}, merge: true });
|
|
};
|
|
|
|
navigationRef.navigate('ScanQRCodeRoot', {
|
|
screen: 'ScanQRCode',
|
|
params,
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
const isCameraAuthorizationStatusGranted = async () => {
|
|
const status = await check(Platform.OS === 'android' ? PERMISSIONS.ANDROID.CAMERA : PERMISSIONS.IOS.CAMERA);
|
|
return status === RESULTS.GRANTED;
|
|
};
|
|
|
|
const requestCameraAuthorization = () => {
|
|
return request(Platform.OS === 'android' ? PERMISSIONS.ANDROID.CAMERA : PERMISSIONS.IOS.CAMERA);
|
|
};
|
|
|
|
export { scanQrHelper, isCameraAuthorizationStatusGranted, requestCameraAuthorization };
|