mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
87113d99d2
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
43 lines
1.5 KiB
TypeScript
43 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import DefaultPreference from 'react-native-default-preference';
|
|
// @ts-ignore: Handoff is not typed
|
|
import Handoff from 'react-native-handoff';
|
|
import { useSettings } from '../hooks/context/useSettings';
|
|
import { GROUP_IO_BLUEWALLET } from '../blue_modules/currency';
|
|
import { BlueApp } from '../class';
|
|
import { HandOffComponentProps } from './types';
|
|
|
|
const HandOffComponent: React.FC<HandOffComponentProps> = props => {
|
|
const { isHandOffUseEnabled } = useSettings();
|
|
console.debug('HandOffComponent is rendering.');
|
|
return isHandOffUseEnabled ? <Handoff {...props} /> : null;
|
|
};
|
|
|
|
const MemoizedHandOffComponent = React.memo(HandOffComponent);
|
|
|
|
export const setIsHandOffUseEnabled = async (value: boolean) => {
|
|
try {
|
|
await DefaultPreference.setName(GROUP_IO_BLUEWALLET);
|
|
await DefaultPreference.set(BlueApp.HANDOFF_STORAGE_KEY, value.toString());
|
|
console.debug('setIsHandOffUseEnabled', value);
|
|
} catch (error) {
|
|
console.error('Error setting handoff enabled status:', error);
|
|
throw error; // Propagate error to caller
|
|
}
|
|
};
|
|
|
|
export const getIsHandOffUseEnabled = async (): Promise<boolean> => {
|
|
try {
|
|
await DefaultPreference.setName(GROUP_IO_BLUEWALLET);
|
|
const isEnabledValue = await DefaultPreference.get(BlueApp.HANDOFF_STORAGE_KEY);
|
|
const result = isEnabledValue === 'true';
|
|
console.debug('getIsHandOffUseEnabled', result);
|
|
return result;
|
|
} catch (error) {
|
|
console.error('Error getting handoff enabled status:', error);
|
|
return false;
|
|
}
|
|
};
|
|
|
|
export default MemoizedHandOffComponent;
|