47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
import {Share} from 'react-native'
|
|
// import * as Sharing from 'expo-sharing'
|
|
import {setStringAsync} from 'expo-clipboard'
|
|
import {t} from '@lingui/core/macro'
|
|
|
|
import * as Toast from '#/components/Toast'
|
|
import {IS_ANDROID, IS_IOS} from '#/env'
|
|
|
|
/**
|
|
* This function shares a URL using the native Share API if available, or copies it to the clipboard
|
|
* and displays a toast message if not (mostly on web)
|
|
* @param {string} url - A string representing the URL that needs to be shared or copied to the
|
|
* clipboard.
|
|
*/
|
|
export async function shareUrl(url: string) {
|
|
if (IS_ANDROID) {
|
|
await Share.share({message: url})
|
|
} else if (IS_IOS) {
|
|
await Share.share({url})
|
|
} else {
|
|
// React Native Share is not supported by web. Web Share API
|
|
// has increasing but not full support, so default to clipboard
|
|
setStringAsync(url)
|
|
Toast.show(t`Copied to clipboard`, {
|
|
type: 'success',
|
|
})
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This function shares a text using the native Share API if available, or copies it to the clipboard
|
|
* and displays a toast message if not (mostly on web)
|
|
*
|
|
* @param {string} text - A string representing the text that needs to be shared or copied to the
|
|
* clipboard.
|
|
*/
|
|
export async function shareText(text: string) {
|
|
if (IS_ANDROID || IS_IOS) {
|
|
await Share.share({message: text})
|
|
} else {
|
|
await setStringAsync(text)
|
|
Toast.show(t`Copied to clipboard`, {
|
|
type: 'success',
|
|
})
|
|
}
|
|
}
|