import React from 'react' import {ActivityIndicator, AppState, StyleSheet, View} from 'react-native' import {useFocusEffect} from '@react-navigation/native' import {PROD_DEFAULT_FEED} from '#/lib/constants' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import {useSetTitle} from '#/lib/hooks/useSetTitle' import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import {logEvent, LogEvents} from '#/lib/statsig/statsig' import {emitSoftReset} from '#/state/events' import {SavedFeedSourceInfo, usePinnedFeedsInfos} from '#/state/queries/feed' import {FeedDescriptor, FeedParams} from '#/state/queries/post-feed' import {usePreferencesQuery} from '#/state/queries/preferences' import {UsePreferencesQueryResponse} from '#/state/queries/preferences/types' import {useSession} from '#/state/session' import { useMinimalShellMode, useSetDrawerSwipeDisabled, useSetMinimalShellMode, } from '#/state/shell' import {useSelectedFeed, useSetSelectedFeed} from '#/state/shell/selected-feed' import {useOTAUpdates} from 'lib/hooks/useOTAUpdates' import {useRequestNotificationsPermission} from 'lib/notifications/notifications' import {HomeTabNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' import {FeedPage} from 'view/com/feeds/FeedPage' import {Pager, PagerRef, RenderTabBarFnProps} from 'view/com/pager/Pager' import {CustomFeedEmptyState} from 'view/com/posts/CustomFeedEmptyState' import {FollowingEmptyState} from 'view/com/posts/FollowingEmptyState' import {FollowingEndOfFeed} from 'view/com/posts/FollowingEndOfFeed' import {NoFeedsPinned} from '#/screens/Home/NoFeedsPinned' import {TOURS, useTriggerTourIfQueued} from '#/tours' import {HomeHeader} from '../com/home/HomeHeader' type Props = NativeStackScreenProps export function HomeScreen(props: Props) { const {data: preferences} = usePreferencesQuery() const {currentAccount} = useSession() const {data: pinnedFeedInfos, isLoading: isPinnedFeedsLoading} = usePinnedFeedsInfos() React.useEffect(() => { const params = props.route.params if ( currentAccount && props.route.name === 'Start' && params?.name && params?.rkey ) { props.navigation.navigate('StarterPack', { rkey: params.rkey, name: params.name, }) } }, [currentAccount, props.navigation, props.route.name, props.route.params]) if (preferences && pinnedFeedInfos && !isPinnedFeedsLoading) { return ( ) } else { return ( ) } } function HomeScreenReady({ preferences, pinnedFeedInfos, }: Props & { preferences: UsePreferencesQueryResponse pinnedFeedInfos: SavedFeedSourceInfo[] }) { const allFeeds = React.useMemo( () => pinnedFeedInfos.map(f => f.feedDescriptor), [pinnedFeedInfos], ) const rawSelectedFeed = useSelectedFeed() ?? allFeeds[0] const setSelectedFeed = useSetSelectedFeed() const maybeFoundIndex = allFeeds.indexOf(rawSelectedFeed) const selectedIndex = Math.max(0, maybeFoundIndex) const selectedFeed = allFeeds[selectedIndex] const requestNotificationsPermission = useRequestNotificationsPermission() const triggerTourIfQueued = useTriggerTourIfQueued(TOURS.HOME) useSetTitle(pinnedFeedInfos[selectedIndex]?.displayName) useOTAUpdates() React.useEffect(() => { requestNotificationsPermission('Home') }, [requestNotificationsPermission]) const pagerRef = React.useRef(null) const lastPagerReportedIndexRef = React.useRef(selectedIndex) React.useLayoutEffect(() => { // Since the pager is not a controlled component, adjust it imperatively // if the selected index gets out of sync with what it last reported. // This is supposed to only happen on the web when you use the right nav. if (selectedIndex !== lastPagerReportedIndexRef.current) { lastPagerReportedIndexRef.current = selectedIndex pagerRef.current?.setPage(selectedIndex, 'desktop-sidebar-click') } }, [selectedIndex]) // Temporary, remove when finished debugging const debugHasLoggedFollowingPrefs = React.useRef(false) const debugLogFollowingPrefs = React.useCallback( (feed: FeedDescriptor) => { if (debugHasLoggedFollowingPrefs.current) return if (feed !== 'following') return logEvent('debug:followingPrefs', { followingShowRepliesFromPref: preferences.feedViewPrefs.hideReplies ? 'off' : preferences.feedViewPrefs.hideRepliesByUnfollowed ? 'following' : 'all', followingRepliesMinLikePref: preferences.feedViewPrefs.hideRepliesByLikeCount, }) debugHasLoggedFollowingPrefs.current = true }, [ preferences.feedViewPrefs.hideReplies, preferences.feedViewPrefs.hideRepliesByLikeCount, preferences.feedViewPrefs.hideRepliesByUnfollowed, ], ) const {hasSession} = useSession() const setMinimalShellMode = useSetMinimalShellMode() const setDrawerSwipeDisabled = useSetDrawerSwipeDisabled() useFocusEffect( React.useCallback(() => { setMinimalShellMode(false) setDrawerSwipeDisabled(selectedIndex > 0) triggerTourIfQueued() return () => { setDrawerSwipeDisabled(false) } }, [ setDrawerSwipeDisabled, selectedIndex, setMinimalShellMode, triggerTourIfQueued, ]), ) useFocusEffect( useNonReactiveCallback(() => { if (selectedFeed) { logEvent('home:feedDisplayed:sampled', { index: selectedIndex, feedType: selectedFeed.split('|')[0], feedUrl: selectedFeed, reason: 'focus', }) debugLogFollowingPrefs(selectedFeed) } }), ) const mode = useMinimalShellMode() const {isMobile} = useWebMediaQueries() useFocusEffect( React.useCallback(() => { const listener = AppState.addEventListener('change', nextAppState => { if (nextAppState === 'active') { if (isMobile && mode.value === 1) { // Reveal the bottom bar so you don't miss notifications or messages. // TODO: Experiment with only doing it when unread > 0. setMinimalShellMode(false) } } }) return () => { listener.remove() } }, [setMinimalShellMode, mode, isMobile]), ) const onPageSelected = React.useCallback( (index: number) => { setMinimalShellMode(false) setDrawerSwipeDisabled(index > 0) const feed = allFeeds[index] setSelectedFeed(feed) lastPagerReportedIndexRef.current = index }, [setDrawerSwipeDisabled, setSelectedFeed, setMinimalShellMode, allFeeds], ) const onPageSelecting = React.useCallback( ( index: number, reason: LogEvents['home:feedDisplayed:sampled']['reason'], ) => { const feed = allFeeds[index] logEvent('home:feedDisplayed:sampled', { index, feedType: feed.split('|')[0], feedUrl: feed, reason, }) debugLogFollowingPrefs(feed) }, [allFeeds, debugLogFollowingPrefs], ) const onPressSelected = React.useCallback(() => { emitSoftReset() }, []) const onPageScrollStateChanged = React.useCallback( (state: 'idle' | 'dragging' | 'settling') => { if (state === 'dragging') { setMinimalShellMode(false) } }, [setMinimalShellMode], ) const renderTabBar = React.useCallback( (props: RenderTabBarFnProps) => { return ( ) }, [onPressSelected, pinnedFeedInfos], ) const renderFollowingEmptyState = React.useCallback(() => { return }, []) const renderCustomFeedEmptyState = React.useCallback(() => { return }, []) const homeFeedParams = React.useMemo(() => { return { mergeFeedEnabled: Boolean(preferences.feedViewPrefs.lab_mergeFeedEnabled), mergeFeedSources: preferences.feedViewPrefs.lab_mergeFeedEnabled ? preferences.savedFeeds .filter(f => f.type === 'feed' || f.type === 'list') .map(f => f.value) : [], } }, [preferences]) return hasSession ? ( {pinnedFeedInfos.length ? ( pinnedFeedInfos.map(feedInfo => { const feed = feedInfo.feedDescriptor if (feed === 'following') { return ( ) } const savedFeedConfig = feedInfo.savedFeed return ( ) }) ) : ( )} ) : ( ) } const styles = StyleSheet.create({ loading: { height: '100%', alignContent: 'center', justifyContent: 'center', paddingBottom: 100, }, })