import React, {useCallback} from 'react' import {TouchableOpacity, View} from 'react-native' import {KeyboardProvider} from 'react-native-keyboard-controller' import {KeyboardAvoidingView} from 'react-native-keyboard-controller' import {useSafeAreaInsets} from 'react-native-safe-area-context' import {AppBskyActorDefs} from '@atproto/api' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useFocusEffect, useNavigation} from '@react-navigation/native' import {NativeStackScreenProps} from '@react-navigation/native-stack' import {CommonNavigatorParams, NavigationProp} from '#/lib/routes/types' import {useGate} from '#/lib/statsig/statsig' import {useCurrentConvoId} from '#/state/messages/current-convo-id' import {BACK_HITSLOP} from 'lib/constants' import {isIOS, isWeb} from 'platform/detection' import {ConvoProvider, useConvo} from 'state/messages/convo' import {ConvoStatus} from 'state/messages/convo/types' import {PreviewableUserAvatar} from 'view/com/util/UserAvatar' import {CenteredView} from 'view/com/util/Views' import {MessagesList} from '#/screens/Messages/Conversation/MessagesList' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {ConvoMenu} from '#/components/dms/ConvoMenu' import {Error} from '#/components/Error' import {ListMaybePlaceholder} from '#/components/Lists' import {Loader} from '#/components/Loader' import {Text} from '#/components/Typography' import {ClipClopGate} from '../gate' type Props = NativeStackScreenProps< CommonNavigatorParams, 'MessagesConversation' > export function MessagesConversationScreen({route}: Props) { const gate = useGate() const convoId = route.params.conversation const {setCurrentConvoId} = useCurrentConvoId() useFocusEffect( useCallback(() => { setCurrentConvoId(convoId) return () => { setCurrentConvoId(undefined) } }, [convoId, setCurrentConvoId]), ) if (!gate('dms')) return return ( ) } function Inner() { const t = useTheme() const convo = useConvo() const {_} = useLingui() const [hasInitiallyRendered, setHasInitiallyRendered] = React.useState(false) const {bottom: bottomInset, top: topInset} = useSafeAreaInsets() const {gtMobile} = useBreakpoints() const bottomBarHeight = gtMobile ? 0 : isIOS ? 40 : 60 // HACK: Because we need to scroll to the bottom of the list once initial items are added to the list, we also have // to take into account that scrolling to the end of the list on native will happen asynchronously. This will cause // a little flicker when the items are first renedered at the top and immediately scrolled to the bottom. to prevent // this, we will wait until the first render has completed to remove the loading overlay. React.useEffect(() => { if ( !hasInitiallyRendered && convo.status === ConvoStatus.Ready && !convo.isFetchingHistory ) { setTimeout(() => { setHasInitiallyRendered(true) }, 15) } }, [convo.isFetchingHistory, convo.items, convo.status, hasInitiallyRendered]) if (convo.status === ConvoStatus.Error) { return (
convo.error.retry()} /> ) } /* * Any other convo states (atm) are "ready" states */ return (
{convo.status !== ConvoStatus.Ready ? ( ) : ( )} {!hasInitiallyRendered && ( )} ) } let Header = ({ profile, }: { profile?: AppBskyActorDefs.ProfileViewBasic }): React.ReactNode => { const t = useTheme() const {_} = useLingui() const {gtTablet} = useBreakpoints() const navigation = useNavigation() const convo = useConvo() const onPressBack = useCallback(() => { if (isWeb) { navigation.replace('Messages') } else { navigation.goBack() } }, [navigation]) const onUpdateConvo = useCallback(() => { // TODO eric update muted state }, []) return ( {!gtTablet ? ( ) : ( )} {profile ? ( {profile.displayName} @{profile.handle} ) : ( <> )} {convo.status === ConvoStatus.Ready && profile ? ( ) : ( )} ) } Header = React.memo(Header)