import {memo, useMemo} from 'react' import {AtUri} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' import {useOpenLink} from '#/lib/hooks/useOpenLink' import {makeProfileLink} from '#/lib/routes/links' import {type NavigationProp} from '#/lib/routes/types' import {shareText, shareUrl} from '#/lib/sharing' import {toShareUrl, toShareUrlBsky} from '#/lib/strings/url-helpers' import {logger} from '#/logger' import {useProfileShadow} from '#/state/cache/profile-shadow' import {useShowExternalShareButtons} from '#/state/preferences/external-share-buttons' import {useSession} from '#/state/session' import {useBreakpoints} from '#/alf' import {useDialogControl} from '#/components/Dialog' import {EmbedDialog} from '#/components/dialogs/Embed' import {SendViaChatDialog} from '#/components/dms/dialogs/ShareViaChatDialog' import {ChainLink_Stroke2_Corner0_Rounded as ChainLinkIcon} from '#/components/icons/ChainLink' import {Clipboard_Stroke2_Corner2_Rounded as ClipboardIcon} from '#/components/icons/Clipboard' import {CodeBrackets_Stroke2_Corner0_Rounded as CodeBracketsIcon} from '#/components/icons/CodeBrackets' import {PaperPlane_Stroke2_Corner0_Rounded as Send} from '#/components/icons/PaperPlane' import {SquareArrowTopRight_Stroke2_Corner0_Rounded as ExternalIcon} from '#/components/icons/SquareArrowTopRight' import * as Menu from '#/components/Menu' import {useAgeAssurance} from '#/ageAssurance' import {IS_WEB} from '#/env' import {useDevMode} from '#/storage/hooks/dev-mode' import {type ShareMenuItemsProps} from './ShareMenuItems.types' let ShareMenuItems = ({ post, record, timestamp, onShare: onShareProp, }: ShareMenuItemsProps): React.ReactNode => { const {hasSession} = useSession() const {gtMobile} = useBreakpoints() const {_} = useLingui() const navigation = useNavigation() const embedPostControl = useDialogControl() const sendViaChatControl = useDialogControl() const [devModeEnabled] = useDevMode() const aa = useAgeAssurance() const openLink = useOpenLink() const postUri = post.uri const postCid = post.cid const postAuthor = useProfileShadow(post.author) const href = useMemo(() => { const urip = new AtUri(postUri) return makeProfileLink(postAuthor, 'post', urip.rkey) }, [postUri, postAuthor]) const hideInPWI = useMemo(() => { return !!postAuthor.labels?.find( label => label.val === '!no-unauthenticated', ) }, [postAuthor]) const onCopyLink = () => { logger.metric('share:press:copyLink', {}, {statsig: true}) const url = toShareUrl(href) shareUrl(url) onShareProp() } const onCopyLinkBsky = () => { logger.metric('share:press:copyLink', {}, {statsig: true}) const url = toShareUrlBsky(href) shareUrl(url) onShareProp() } const onSelectChatToShareTo = (conversation: string) => { logger.metric('share:press:dmSelected', {}, {statsig: true}) navigation.navigate('MessagesConversation', { conversation, embed: postUri, }) } const canEmbed = IS_WEB && gtMobile && !hideInPWI const onShareATURI = () => { shareText(postUri) } const onShareAuthorDID = () => { shareText(postAuthor.did) } const showExternalShareButtons = useShowExternalShareButtons() const isBridgedPost = !!post.record.bridgyOriginalUrl || !!post.record.fediverseId const originalPostUrl = (post.record.bridgyOriginalUrl || post.record.fediverseId) as string | undefined const onOpenOriginalPost = () => { originalPostUrl && openLink(originalPostUrl, true) } const onOpenPostInPdsls = () => { openLink(`https://pdsls.dev/${post.uri}`, true) } const copyLinkItem = ( Copy link to skeet Copy via bsky.app ) return ( <> {copyLinkItem} {showExternalShareButtons && isBridgedPost && ( Open original skeet )} {showExternalShareButtons && ( Open skeet in PDSls )} {hasSession && aa.state.access === aa.Access.Full && ( { logger.metric('share:press:openDmSearch', {}, {statsig: true}) sendViaChatControl.open() }}> Send via direct message )} {canEmbed && ( { logger.metric('share:press:embed', {}, {statsig: true}) embedPostControl.open() }}> {_(msg`Embed skeet`)} )} {false && hideInPWI && ( <> {hasSession && } {copyLinkItem} Note: This skeet is only visible to logged-in users. )} {devModeEnabled && ( <> Copy skeet at:// URI Copy author DID )} {canEmbed && ( )} ) } ShareMenuItems = memo(ShareMenuItems) export {ShareMenuItems}