import React from 'react'; // @ts-ignore: react-native-handoff is not in the type definition import Handoff from 'react-native-handoff'; import { useSettings } from './Context/SettingsContext'; interface HandOffComponentProps { url?: string; title?: string; type: (typeof HandOffComponent.activityTypes)[keyof typeof HandOffComponent.activityTypes]; userInfo?: object; } interface HandOffComponentWithActivityTypes extends React.FC { activityTypes: { ReceiveOnchain: string; Xpub: string; ViewInBlockExplorer: string; }; } const HandOffComponent: HandOffComponentWithActivityTypes = props => { const { isHandOffUseEnabled } = useSettings(); if (process.env.NODE_ENV === 'development') { console.log('HandOffComponent: props', props); } if (isHandOffUseEnabled) { return ; } return null; }; const activityTypes = { ReceiveOnchain: 'io.bluewallet.bluewallet.receiveonchain', Xpub: 'io.bluewallet.bluewallet.xpub', ViewInBlockExplorer: 'io.bluewallet.bluewallet.blockexplorer', }; HandOffComponent.activityTypes = activityTypes; export default HandOffComponent;