consolidated share code to shareUrl
parent
3463f601a3
commit
d0d24ea248
|
@ -0,0 +1,22 @@
|
||||||
|
import {isNative} from 'platform/detection'
|
||||||
|
// import * as Sharing from 'expo-sharing'
|
||||||
|
import Clipboard from '@react-native-clipboard/clipboard'
|
||||||
|
import * as Toast from '../view/com/util/Toast'
|
||||||
|
import {Share} from 'react-native'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 (isNative) {
|
||||||
|
Share.share({url: url})
|
||||||
|
} else {
|
||||||
|
// React Native Share is not supported by web. Web Share API
|
||||||
|
// has increasing but not full support, so default to clipboard
|
||||||
|
Clipboard.setString(url)
|
||||||
|
Toast.show('Copied to clipboard')
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import {observer} from 'mobx-react-lite'
|
import {observer} from 'mobx-react-lite'
|
||||||
import {
|
import {
|
||||||
Share,
|
|
||||||
StyleSheet,
|
StyleSheet,
|
||||||
TouchableOpacity,
|
TouchableOpacity,
|
||||||
TouchableWithoutFeedback,
|
TouchableWithoutFeedback,
|
||||||
|
@ -31,9 +30,9 @@ import {ProfileHeaderLabels} from '../util/moderation/ProfileHeaderLabels'
|
||||||
import {usePalette} from 'lib/hooks/usePalette'
|
import {usePalette} from 'lib/hooks/usePalette'
|
||||||
import {useAnalytics} from 'lib/analytics'
|
import {useAnalytics} from 'lib/analytics'
|
||||||
import {NavigationProp} from 'lib/routes/types'
|
import {NavigationProp} from 'lib/routes/types'
|
||||||
import {isAndroid, isDesktopWeb, isIOS} from 'platform/detection'
|
import {isDesktopWeb} from 'platform/detection'
|
||||||
import {FollowState} from 'state/models/cache/my-follows'
|
import {FollowState} from 'state/models/cache/my-follows'
|
||||||
import Clipboard from '@react-native-clipboard/clipboard'
|
import {shareUrl} from 'lib/sharing'
|
||||||
|
|
||||||
const BACK_HITSLOP = {left: 30, top: 30, right: 30, bottom: 30}
|
const BACK_HITSLOP = {left: 30, top: 30, right: 30, bottom: 30}
|
||||||
|
|
||||||
|
@ -152,15 +151,7 @@ const ProfileHeaderLoaded = observer(function ProfileHeaderLoaded({
|
||||||
const onPressShare = React.useCallback(async () => {
|
const onPressShare = React.useCallback(async () => {
|
||||||
track('ProfileHeader:ShareButtonClicked')
|
track('ProfileHeader:ShareButtonClicked')
|
||||||
const url = toShareUrl(`/profile/${view.handle}`)
|
const url = toShareUrl(`/profile/${view.handle}`)
|
||||||
|
shareUrl(url)
|
||||||
if (isIOS || isAndroid) {
|
|
||||||
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
|
|
||||||
Clipboard.setString(url)
|
|
||||||
Toast.show('Copied to clipboard')
|
|
||||||
}
|
|
||||||
}, [track, view])
|
}, [track, view])
|
||||||
|
|
||||||
const onPressMuteAccount = React.useCallback(async () => {
|
const onPressMuteAccount = React.useCallback(async () => {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
import React, {useRef} from 'react'
|
import React, {useRef} from 'react'
|
||||||
import {
|
import {
|
||||||
Dimensions,
|
Dimensions,
|
||||||
Share,
|
|
||||||
StyleProp,
|
StyleProp,
|
||||||
StyleSheet,
|
StyleSheet,
|
||||||
TouchableOpacity,
|
TouchableOpacity,
|
||||||
|
@ -19,10 +18,8 @@ import {toShareUrl} from 'lib/strings/url-helpers'
|
||||||
import {useStores} from 'state/index'
|
import {useStores} from 'state/index'
|
||||||
import {usePalette} from 'lib/hooks/usePalette'
|
import {usePalette} from 'lib/hooks/usePalette'
|
||||||
import {useTheme} from 'lib/ThemeContext'
|
import {useTheme} from 'lib/ThemeContext'
|
||||||
import {isAndroid, isIOS} from 'platform/detection'
|
|
||||||
import Clipboard from '@react-native-clipboard/clipboard'
|
|
||||||
import * as Toast from '../../util/Toast'
|
|
||||||
import {isWeb} from 'platform/detection'
|
import {isWeb} from 'platform/detection'
|
||||||
|
import {shareUrl} from 'lib/sharing'
|
||||||
|
|
||||||
const HITSLOP = {left: 10, top: 10, right: 10, bottom: 10}
|
const HITSLOP = {left: 10, top: 10, right: 10, bottom: 10}
|
||||||
const ESTIMATED_BTN_HEIGHT = 50
|
const ESTIMATED_BTN_HEIGHT = 50
|
||||||
|
@ -182,15 +179,7 @@ export function PostDropdownBtn({
|
||||||
label: 'Share...',
|
label: 'Share...',
|
||||||
onPress() {
|
onPress() {
|
||||||
const url = toShareUrl(itemHref)
|
const url = toShareUrl(itemHref)
|
||||||
|
shareUrl(url)
|
||||||
if (isIOS || isAndroid) {
|
|
||||||
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
|
|
||||||
Clipboard.setString(url)
|
|
||||||
Toast.show('Copied to clipboard')
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{sep: true},
|
{sep: true},
|
||||||
|
|
Loading…
Reference in New Issue