import React, {useMemo} from 'react' import {StyleSheet, View} from 'react-native' import {useFocusEffect} from '@react-navigation/native' import { AppBskyActorDefs, moderateProfile, ModerationOpts, RichText as RichTextAPI, } from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {NativeStackScreenProps, CommonNavigatorParams} from 'lib/routes/types' import {CenteredView} from '../com/util/Views' import {ListRef} from '../com/util/List' import {ScreenHider} from 'view/com/util/moderation/ScreenHider' import {Feed} from 'view/com/posts/Feed' import {ProfileLists} from '../com/lists/ProfileLists' import {ProfileFeedgens} from '../com/feeds/ProfileFeedgens' import {ProfileHeader, ProfileHeaderLoading} from '../com/profile/ProfileHeader' import {PagerWithHeader} from 'view/com/pager/PagerWithHeader' import {ErrorScreen} from '../com/util/error/ErrorScreen' import {EmptyState} from '../com/util/EmptyState' import {FAB} from '../com/util/fab/FAB' import {s, colors} from 'lib/styles' import {useAnalytics} from 'lib/analytics/analytics' import {ComposeIcon2} from 'lib/icons' import {useSetTitle} from 'lib/hooks/useSetTitle' import {combinedDisplayName} from 'lib/strings/display-names' import { FeedDescriptor, resetProfilePostsQueries, } from '#/state/queries/post-feed' import {useResolveDidQuery} from '#/state/queries/resolve-uri' import {useProfileQuery} from '#/state/queries/profile' import {useProfileShadow} from '#/state/cache/profile-shadow' import {useSession, getAgent} from '#/state/session' import {useModerationOpts} from '#/state/queries/preferences' import {useProfileExtraInfoQuery} from '#/state/queries/profile-extra-info' import {RQKEY as FEED_RQKEY} from '#/state/queries/post-feed' import {useSetDrawerSwipeDisabled, useSetMinimalShellMode} from '#/state/shell' import {cleanError} from '#/lib/strings/errors' import {LoadLatestBtn} from '../com/util/load-latest/LoadLatestBtn' import {useQueryClient} from '@tanstack/react-query' import {useComposerControls} from '#/state/shell/composer' import {listenSoftReset} from '#/state/events' import {truncateAndInvalidate} from '#/state/queries/util' import {Text} from '#/view/com/util/text/Text' import {usePalette} from 'lib/hooks/usePalette' import {isNative} from '#/platform/detection' import {isInvalidHandle} from '#/lib/strings/handles' interface SectionRef { scrollToTop: () => void } type Props = NativeStackScreenProps export function ProfileScreen({route}: Props) { const {_} = useLingui() const {currentAccount} = useSession() const name = route.params.name === 'me' ? currentAccount?.did : route.params.name const moderationOpts = useModerationOpts() const { data: resolvedDid, error: resolveError, refetch: refetchDid, isLoading: isLoadingDid, } = useResolveDidQuery(name) const { data: profile, error: profileError, refetch: refetchProfile, isLoading: isLoadingProfile, isPlaceholderData: isPlaceholderProfile, } = useProfileQuery({ did: resolvedDid, }) const onPressTryAgain = React.useCallback(() => { if (resolveError) { refetchDid() } else { refetchProfile() } }, [resolveError, refetchDid, refetchProfile]) // When we open the profile, we want to reset the posts query if we are blocked. React.useEffect(() => { if (resolvedDid && profile?.viewer?.blockedBy) { resetProfilePostsQueries(resolvedDid) } }, [profile?.viewer?.blockedBy, resolvedDid]) // Most pushes will happen here, since we will have only placeholder data if (isLoadingDid || isLoadingProfile) { return ( ) } if (resolveError || profileError) { return ( ) } if (profile && moderationOpts) { return ( ) } // should never happen return ( ) } function ProfileScreenLoaded({ profile: profileUnshadowed, isPlaceholderProfile, moderationOpts, hideBackButton, }: { profile: AppBskyActorDefs.ProfileViewDetailed moderationOpts: ModerationOpts hideBackButton: boolean isPlaceholderProfile: boolean }) { const profile = useProfileShadow(profileUnshadowed) const {hasSession, currentAccount} = useSession() const setMinimalShellMode = useSetMinimalShellMode() const {openComposer} = useComposerControls() const {screen, track} = useAnalytics() const [currentPage, setCurrentPage] = React.useState(0) const {_} = useLingui() const setDrawerSwipeDisabled = useSetDrawerSwipeDisabled() const extraInfoQuery = useProfileExtraInfoQuery(profile.did) const postsSectionRef = React.useRef(null) const repliesSectionRef = React.useRef(null) const mediaSectionRef = React.useRef(null) const likesSectionRef = React.useRef(null) const feedsSectionRef = React.useRef(null) const listsSectionRef = React.useRef(null) useSetTitle(combinedDisplayName(profile)) const description = profile.description ?? '' const hasDescription = description !== '' const [descriptionRT, isResolvingDescriptionRT] = useRichText(description) const showPlaceholder = isPlaceholderProfile || isResolvingDescriptionRT const moderation = useMemo( () => moderateProfile(profile, moderationOpts), [profile, moderationOpts], ) const isMe = profile.did === currentAccount?.did const showRepliesTab = hasSession const showLikesTab = isMe const showFeedsTab = hasSession && (isMe || extraInfoQuery.data?.hasFeedgens) const showListsTab = hasSession && (isMe || extraInfoQuery.data?.hasLists) const sectionTitles = useMemo(() => { return [ _(msg`Posts`), showRepliesTab ? _(msg`Replies`) : undefined, _(msg`Media`), showLikesTab ? _(msg`Likes`) : undefined, showFeedsTab ? _(msg`Feeds`) : undefined, showListsTab ? _(msg`Lists`) : undefined, ].filter(Boolean) as string[] }, [showRepliesTab, showLikesTab, showFeedsTab, showListsTab, _]) let nextIndex = 0 const postsIndex = nextIndex++ let repliesIndex: number | null = null if (showRepliesTab) { repliesIndex = nextIndex++ } const mediaIndex = nextIndex++ let likesIndex: number | null = null if (showLikesTab) { likesIndex = nextIndex++ } let feedsIndex: number | null = null if (showFeedsTab) { feedsIndex = nextIndex++ } let listsIndex: number | null = null if (showListsTab) { listsIndex = nextIndex++ } const scrollSectionToTop = React.useCallback( (index: number) => { if (index === postsIndex) { postsSectionRef.current?.scrollToTop() } else if (index === repliesIndex) { repliesSectionRef.current?.scrollToTop() } else if (index === mediaIndex) { mediaSectionRef.current?.scrollToTop() } else if (index === likesIndex) { likesSectionRef.current?.scrollToTop() } else if (index === feedsIndex) { feedsSectionRef.current?.scrollToTop() } else if (index === listsIndex) { listsSectionRef.current?.scrollToTop() } }, [postsIndex, repliesIndex, mediaIndex, likesIndex, feedsIndex, listsIndex], ) useFocusEffect( React.useCallback(() => { setMinimalShellMode(false) screen('Profile') return listenSoftReset(() => { scrollSectionToTop(currentPage) }) }, [setMinimalShellMode, screen, currentPage, scrollSectionToTop]), ) useFocusEffect( React.useCallback(() => { setDrawerSwipeDisabled(currentPage > 0) return () => { setDrawerSwipeDisabled(false) } }, [setDrawerSwipeDisabled, currentPage]), ) // events // = const onPressCompose = React.useCallback(() => { track('ProfileScreen:PressCompose') const mention = profile.handle === currentAccount?.handle || isInvalidHandle(profile.handle) ? undefined : profile.handle openComposer({mention}) }, [openComposer, currentAccount, track, profile]) const onPageSelected = React.useCallback( (i: number) => { setCurrentPage(i) }, [setCurrentPage], ) const onCurrentPageSelected = React.useCallback( (index: number) => { scrollSectionToTop(index) }, [scrollSectionToTop], ) // rendering // = const renderHeader = React.useCallback(() => { return ( ) }, [ profile, descriptionRT, hasDescription, moderationOpts, hideBackButton, showPlaceholder, ]) return ( {({headerHeight, isFocused, scrollElRef}) => ( )} {showRepliesTab ? ({headerHeight, isFocused, scrollElRef}) => ( ) : null} {({headerHeight, isFocused, scrollElRef}) => ( )} {showLikesTab ? ({headerHeight, isFocused, scrollElRef}) => ( ) : null} {showFeedsTab ? ({headerHeight, isFocused, scrollElRef}) => ( ) : null} {showListsTab ? ({headerHeight, isFocused, scrollElRef}) => ( ) : null} {hasSession && ( } accessibilityRole="button" accessibilityLabel={_(msg`New post`)} accessibilityHint="" /> )} ) } interface FeedSectionProps { feed: FeedDescriptor headerHeight: number isFocused: boolean scrollElRef: ListRef ignoreFilterFor?: string } const FeedSection = React.forwardRef( function FeedSectionImpl( {feed, headerHeight, isFocused, scrollElRef, ignoreFilterFor}, ref, ) { const {_} = useLingui() const queryClient = useQueryClient() const [hasNew, setHasNew] = React.useState(false) const [isScrolledDown, setIsScrolledDown] = React.useState(false) const onScrollToTop = React.useCallback(() => { scrollElRef.current?.scrollToOffset({ animated: isNative, offset: -headerHeight, }) truncateAndInvalidate(queryClient, FEED_RQKEY(feed)) setHasNew(false) }, [scrollElRef, headerHeight, queryClient, feed, setHasNew]) React.useImperativeHandle(ref, () => ({ scrollToTop: onScrollToTop, })) const renderPostsEmpty = React.useCallback(() => { return }, [_]) return ( {(isScrolledDown || hasNew) && ( )} ) }, ) function ProfileEndOfFeed() { const pal = usePalette('default') return ( End of feed ) } function useRichText(text: string): [RichTextAPI, boolean] { const [prevText, setPrevText] = React.useState(text) const [rawRT, setRawRT] = React.useState(() => new RichTextAPI({text})) const [resolvedRT, setResolvedRT] = React.useState(null) if (text !== prevText) { setPrevText(text) setRawRT(new RichTextAPI({text})) setResolvedRT(null) // This will queue an immediate re-render } React.useEffect(() => { let ignore = false async function resolveRTFacets() { // new each time const resolvedRT = new RichTextAPI({text}) await resolvedRT.detectFacets(getAgent()) if (!ignore) { setResolvedRT(resolvedRT) } } resolveRTFacets() return () => { ignore = true } }, [text]) const isResolving = resolvedRT === null return [resolvedRT ?? rawRT, isResolving] } const styles = StyleSheet.create({ container: { flexDirection: 'column', height: '100%', }, loading: { paddingVertical: 10, paddingHorizontal: 14, }, emptyState: { paddingVertical: 40, }, loadingMoreFooter: { paddingVertical: 20, }, endItem: { paddingTop: 20, paddingBottom: 30, color: colors.gray5, textAlign: 'center', }, })