mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import { Platform } from 'react-native';
|
|
import { check, request, PERMISSIONS, RESULTS } from 'react-native-permissions';
|
|
|
|
/**
|
|
* 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 navigateFunc {function}
|
|
* @param currentScreenName {string}
|
|
* @param showFileImportButton {boolean}
|
|
*
|
|
* @param onDismiss {function} - if camera is closed via X button it gets triggered
|
|
* @return {Promise<string>}
|
|
*/
|
|
function scanQrHelper(
|
|
navigateFunc: (scr: string | any, params?: any) => void,
|
|
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);
|
|
navigateFunc({ name: currentScreenName, params: {}, merge: true });
|
|
};
|
|
|
|
navigateFunc('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 };
|