import {memo, useCallback, useEffect, useMemo} from 'react' import {StyleSheet, TouchableWithoutFeedback, View} from 'react-native' import Animated, { measure, type MeasuredDimensions, runOnJS, runOnUI, useAnimatedRef, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' import {type AppBskyActorDefs, type ModerationDecision} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' import {useActorStatus} from '#/lib/actor-status' import {BACK_HITSLOP} from '#/lib/constants' import {useHaptics} from '#/lib/haptics' import {type NavigationProp} from '#/lib/routes/types' import {logger} from '#/logger' import {isIOS} from '#/platform/detection' import {type Shadow} from '#/state/cache/types' import {useLightboxControls} from '#/state/lightbox' import {useSession} from '#/state/session' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {UserAvatar} from '#/view/com/util/UserAvatar' import {UserBanner} from '#/view/com/util/UserBanner' import {atoms as a, platform, useTheme} from '#/alf' import {useDialogControl} from '#/components/Dialog' import {ArrowLeft_Stroke2_Corner0_Rounded as ArrowLeftIcon} from '#/components/icons/Arrow' import {EditLiveDialog} from '#/components/live/EditLiveDialog' import {LiveIndicator} from '#/components/live/LiveIndicator' import {LiveStatusDialog} from '#/components/live/LiveStatusDialog' import {LabelsOnMe} from '#/components/moderation/LabelsOnMe' import {ProfileHeaderAlerts} from '#/components/moderation/ProfileHeaderAlerts' import {GrowableAvatar} from './GrowableAvatar' import {GrowableBanner} from './GrowableBanner' import {StatusBarShadow} from './StatusBarShadow' interface Props { profile: Shadow moderation: ModerationDecision hideBackButton?: boolean isPlaceholderProfile?: boolean } let ProfileHeaderShell = ({ children, profile, moderation, hideBackButton = false, isPlaceholderProfile, }: React.PropsWithChildren): React.ReactNode => { const t = useTheme() const {currentAccount} = useSession() const {_} = useLingui() const {openLightbox} = useLightboxControls() const navigation = useNavigation() const {top: topInset} = useSafeAreaInsets() const playHaptic = useHaptics() const liveStatusControl = useDialogControl() const aviRef = useAnimatedRef() const onPressBack = useCallback(() => { if (navigation.canGoBack()) { navigation.goBack() } else { navigation.navigate('Home') } }, [navigation]) const _openLightbox = useCallback( (uri: string, thumbRect: MeasuredDimensions | null) => { openLightbox({ images: [ { uri, thumbUri: uri, thumbRect, dimensions: { // It's fine if it's actually smaller but we know it's 1:1. height: 1000, width: 1000, }, thumbDimensions: null, type: 'circle-avi', }, ], index: 0, }) }, [openLightbox], ) const isMe = useMemo( () => currentAccount?.did === profile.did, [currentAccount, profile], ) const live = useActorStatus(profile) useEffect(() => { if (live.isActive) { logger.metric( 'live:view:profile', {subject: profile.did}, {statsig: true}, ) } }, [live.isActive, profile.did]) const onPressAvi = useCallback(() => { if (live.isActive) { playHaptic('Light') logger.metric( 'live:card:open', {subject: profile.did, from: 'profile'}, {statsig: true}, ) liveStatusControl.open() } else { const modui = moderation.ui('avatar') const avatar = profile.avatar if (avatar && !(modui.blur && modui.noOverride)) { runOnUI(() => { 'worklet' const rect = measure(aviRef) runOnJS(_openLightbox)(avatar, rect) })() } } }, [ profile, moderation, _openLightbox, aviRef, liveStatusControl, live, playHaptic, ]) return ( {!hideBackButton && ( )} }> {isPlaceholderProfile ? ( ) : ( )} {children} {!isPlaceholderProfile && ( {isMe ? ( ) : ( )} )} {live.isActive && } {live.isActive && (isMe ? ( ) : ( ))} ) } ProfileHeaderShell = memo(ProfileHeaderShell) export {ProfileHeaderShell} const styles = StyleSheet.create({ backBtnWrapper: { position: 'absolute', left: 12, width: 30, height: 30, overflow: 'hidden', borderRadius: 15, cursor: 'pointer', backgroundColor: 'rgba(0, 0, 0, 0.5)', alignItems: 'center', justifyContent: 'center', }, backBtn: { width: 30, height: 30, borderRadius: 15, alignItems: 'center', justifyContent: 'center', }, aviPosition: { position: 'absolute', top: 104, left: 10, }, avi: { width: 94, height: 94, }, aviLabeler: { borderRadius: 10, }, })