import React from 'react' import {observer} from 'mobx-react-lite' import { StyleSheet, TouchableOpacity, TouchableWithoutFeedback, View, } from 'react-native' import { FontAwesomeIcon, FontAwesomeIconStyle, } from '@fortawesome/react-native-fontawesome' import {useNavigation} from '@react-navigation/native' import {BlurView} from '../util/BlurView' import {ProfileModel} from 'state/models/content/profile' import {useStores} from 'state/index' import {ProfileImageLightbox} from 'state/models/ui/shell' import {pluralize} from 'lib/strings/helpers' import {toShareUrl} from 'lib/strings/url-helpers' import {sanitizeDisplayName} from 'lib/strings/display-names' import {s, colors} from 'lib/styles' import {DropdownButton, DropdownItem} from '../util/forms/DropdownButton' import * as Toast from '../util/Toast' import {LoadingPlaceholder} from '../util/LoadingPlaceholder' import {Text} from '../util/text/Text' import {TextLink} from '../util/Link' import {RichText} from '../util/text/RichText' import {UserAvatar} from '../util/UserAvatar' import {UserBanner} from '../util/UserBanner' import {ProfileHeaderWarnings} from '../util/moderation/ProfileHeaderWarnings' import {usePalette} from 'lib/hooks/usePalette' import {useAnalytics} from 'lib/analytics' import {NavigationProp} from 'lib/routes/types' import {listUriToHref} from 'lib/strings/url-helpers' import {isDesktopWeb, isNative} from 'platform/detection' import {FollowState} from 'state/models/cache/my-follows' import {shareUrl} from 'lib/sharing' import {formatCount} from '../util/numeric/format' const BACK_HITSLOP = {left: 30, top: 30, right: 30, bottom: 30} interface Props { view: ProfileModel onRefreshAll: () => void hideBackButton?: boolean } export const ProfileHeader = observer( ({view, onRefreshAll, hideBackButton = false}: Props) => { const pal = usePalette('default') // loading // = if (!view || !view.hasLoaded) { return ( {sanitizeDisplayName(view.displayName || view.handle)} ) } // error // = if (view.hasError) { return ( {view.error} ) } // loaded // = return ( ) }, ) const ProfileHeaderLoaded = observer( ({view, onRefreshAll, hideBackButton = false}: Props) => { const pal = usePalette('default') const store = useStores() const navigation = useNavigation() const {track} = useAnalytics() const onPressBack = React.useCallback(() => { navigation.goBack() }, [navigation]) const onPressAvi = React.useCallback(() => { if (view.avatar) { store.shell.openLightbox(new ProfileImageLightbox(view)) } }, [store, view]) const onPressToggleFollow = React.useCallback(() => { view?.toggleFollowing().then( () => { Toast.show( `${ view.viewer.following ? 'Following' : 'No longer following' } ${sanitizeDisplayName(view.displayName || view.handle)}`, ) }, err => store.log.error('Failed to toggle follow', err), ) }, [view, store]) const onPressEditProfile = React.useCallback(() => { track('ProfileHeader:EditProfileButtonClicked') store.shell.openModal({ name: 'edit-profile', profileView: view, onUpdate: onRefreshAll, }) }, [track, store, view, onRefreshAll]) const onPressFollowers = React.useCallback(() => { track('ProfileHeader:FollowersButtonClicked') navigation.push('ProfileFollowers', {name: view.handle}) }, [track, navigation, view]) const onPressFollows = React.useCallback(() => { track('ProfileHeader:FollowsButtonClicked') navigation.push('ProfileFollows', {name: view.handle}) }, [track, navigation, view]) const onPressShare = React.useCallback(() => { track('ProfileHeader:ShareButtonClicked') const url = toShareUrl(`/profile/${view.handle}`) shareUrl(url) }, [track, view]) const onPressAddRemoveLists = React.useCallback(() => { track('ProfileHeader:AddToListsButtonClicked') store.shell.openModal({ name: 'list-add-remove-user', subject: view.did, displayName: view.displayName || view.handle, }) }, [track, view, store]) const onPressMuteAccount = React.useCallback(async () => { track('ProfileHeader:MuteAccountButtonClicked') try { await view.muteAccount() Toast.show('Account muted') } catch (e: any) { store.log.error('Failed to mute account', e) Toast.show(`There was an issue! ${e.toString()}`) } }, [track, view, store]) const onPressUnmuteAccount = React.useCallback(async () => { track('ProfileHeader:UnmuteAccountButtonClicked') try { await view.unmuteAccount() Toast.show('Account unmuted') } catch (e: any) { store.log.error('Failed to unmute account', e) Toast.show(`There was an issue! ${e.toString()}`) } }, [track, view, store]) const onPressBlockAccount = React.useCallback(async () => { track('ProfileHeader:BlockAccountButtonClicked') store.shell.openModal({ name: 'confirm', title: 'Block Account', message: 'Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you.', onPressConfirm: async () => { try { await view.blockAccount() onRefreshAll() Toast.show('Account blocked') } catch (e: any) { store.log.error('Failed to block account', e) Toast.show(`There was an issue! ${e.toString()}`) } }, }) }, [track, view, store, onRefreshAll]) const onPressUnblockAccount = React.useCallback(async () => { track('ProfileHeader:UnblockAccountButtonClicked') store.shell.openModal({ name: 'confirm', title: 'Unblock Account', message: 'The account will be able to interact with you after unblocking.', onPressConfirm: async () => { try { await view.unblockAccount() onRefreshAll() Toast.show('Account unblocked') } catch (e: any) { store.log.error('Failed to block unaccount', e) Toast.show(`There was an issue! ${e.toString()}`) } }, }) }, [track, view, store, onRefreshAll]) const onPressReportAccount = React.useCallback(() => { track('ProfileHeader:ReportAccountButtonClicked') store.shell.openModal({ name: 'report-account', did: view.did, }) }, [track, store, view]) const isMe = React.useMemo( () => store.me.did === view.did, [store.me.did, view.did], ) const dropdownItems: DropdownItem[] = React.useMemo(() => { let items: DropdownItem[] = [ { testID: 'profileHeaderDropdownShareBtn', label: 'Share', onPress: onPressShare, }, { testID: 'profileHeaderDropdownListAddRemoveBtn', label: 'Add to Lists', onPress: onPressAddRemoveLists, }, ] if (!isMe) { items.push({sep: true}) if (!view.viewer.blocking) { items.push({ testID: 'profileHeaderDropdownMuteBtn', label: view.viewer.muted ? 'Unmute Account' : 'Mute Account', onPress: view.viewer.muted ? onPressUnmuteAccount : onPressMuteAccount, }) } items.push({ testID: 'profileHeaderDropdownBlockBtn', label: view.viewer.blocking ? 'Unblock Account' : 'Block Account', onPress: view.viewer.blocking ? onPressUnblockAccount : onPressBlockAccount, }) items.push({ testID: 'profileHeaderDropdownReportBtn', label: 'Report Account', onPress: onPressReportAccount, }) } return items }, [ isMe, view.viewer.muted, view.viewer.blocking, onPressShare, onPressUnmuteAccount, onPressMuteAccount, onPressUnblockAccount, onPressBlockAccount, onPressReportAccount, onPressAddRemoveLists, ]) const blockHide = !isMe && (view.viewer.blocking || view.viewer.blockedBy) return ( {isMe ? ( Edit Profile ) : view.viewer.blocking ? ( Unblock ) : !view.viewer.blockedBy ? ( <> {store.me.follows.getFollowState(view.did) === FollowState.Following ? ( Following ) : ( Follow )} ) : null} {dropdownItems?.length ? ( ) : undefined} {sanitizeDisplayName(view.displayName || view.handle)} {view.viewer.followedBy && !blockHide ? ( Follows you ) : undefined} @{view.handle} {!blockHide && ( <> {formatCount(view.followersCount)} {pluralize(view.followersCount, 'follower')} {formatCount(view.followsCount)} following {formatCount(view.postsCount)}{' '} {pluralize(view.postsCount, 'post')} {view.descriptionRichText ? ( ) : undefined} )} {view.viewer.blocking ? ( Account blocked ) : view.viewer.muted ? ( Account muted{' '} {view.viewer.mutedByList && ( by{' '} )} ) : undefined} {view.viewer.blockedBy && ( This account has blocked you )} {!isDesktopWeb && !hideBackButton && ( )} ) }, ) const styles = StyleSheet.create({ banner: { width: '100%', height: 120, }, backBtnWrapper: { position: 'absolute', top: 10, left: 10, width: 30, height: 30, overflow: 'hidden', borderRadius: 15, }, backBtn: { width: 30, height: 30, borderRadius: 15, alignItems: 'center', justifyContent: 'center', }, avi: { position: 'absolute', top: 110, left: 10, width: 84, height: 84, borderRadius: 42, borderWidth: 2, }, content: { paddingTop: 8, paddingHorizontal: 14, paddingBottom: 4, }, buttonsLine: { flexDirection: 'row', marginLeft: 'auto', marginBottom: 12, }, primaryBtn: { backgroundColor: colors.blue3, paddingHorizontal: 24, paddingVertical: 6, }, mainBtn: { paddingHorizontal: 24, }, secondaryBtn: { paddingHorizontal: 14, }, btn: { flexDirection: 'row', alignItems: 'center', justifyContent: 'center', paddingVertical: 7, borderRadius: 50, marginLeft: 6, }, title: {lineHeight: 38}, // Word wrapping appears fine on // mobile but overflows on desktop handle: isNative ? undefined : { // eslint-disable-next-line wordBreak: 'break-all', }, handleLine: { flexDirection: 'row', marginBottom: 8, }, metricsLine: { flexDirection: 'row', marginBottom: 8, }, description: { marginBottom: 8, }, detailLine: { flexDirection: 'row', alignItems: 'center', marginBottom: 5, }, pill: { borderRadius: 4, paddingHorizontal: 6, paddingVertical: 2, }, moderationLines: { gap: 6, }, moderationNotice: { flexDirection: 'row', alignItems: 'center', borderRadius: 8, paddingHorizontal: 16, paddingVertical: 14, gap: 8, }, br40: {borderRadius: 40}, br50: {borderRadius: 50}, })