import React from 'react' import {Linking, SafeAreaView, StyleSheet, View} from 'react-native' import {ScrollView} from './util' import {observer} from 'mobx-react-lite' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {Text} from '../util/text/Text' import {Button} from '../util/forms/Button' import {useStores} from 'state/index' import {s, colors} from 'lib/styles' import {usePalette} from 'lib/hooks/usePalette' import {isWeb} from 'platform/detection' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {isPossiblyAUrl, splitApexDomain} from 'lib/strings/url-helpers' export const snapPoints = ['50%'] export const Component = observer(function Component({ text, href, }: { text: string href: string }) { const pal = usePalette('default') const store = useStores() const {isMobile} = useWebMediaQueries() const potentiallyMisleading = isPossiblyAUrl(text) const onPressVisit = () => { store.shell.closeModal() Linking.openURL(href) } return ( {potentiallyMisleading ? ( <> Potentially Misleading Link ) : ( Leaving Bluesky )} This link is taking you to the following website: {potentiallyMisleading && ( Make sure this is where you intend to go! )}