import React from 'react'; import { Share } from 'react-native'; import {useLanguage, useToast, ToastType} from 'ordering-components/native' import MaterialIcon from 'react-native-vector-icons/MaterialCommunityIcons' import { ShareComponentParams } from '../../types'; export const ShareComponent = (props : ShareComponentParams) => { const {orderId, hashkey} = props const [ ,t] = useLanguage() const {showToast} = useToast() const url = `${t('SHARE_URL', 'https://reactdemo.tryordering.com/')}orders/${orderId}?=${hashkey}` const onShare = async () => { try { const result = await Share.share({ title: t('SHARE_YOUR_ORDER', 'Share your order'), message: `${t('MY_ORDER', 'My order')} ${url}`, url: `https://reactdemo.ordering.co/orders/${orderId}?=${hashkey}` }); if (result.action === Share.sharedAction && result.activityType) { showToast(ToastType.Success, t('ORDER_SHARED_SUCCESSFULLY', 'Order shared successfully')) } } catch (error) { showToast(ToastType.Success, t('ORDER_SHARED_ERROR', 'Order shared successfully')) } }; return ( ); };