import React, {useEffect} from 'react' import {View} from 'react-native' import {ViewHeader} from '../com/util/ViewHeader' import {Feed} from '../com/notifications/Feed' import {useStores} from '../../state' import {ScreenParams} from '../routes' import {useOnMainScroll} from '../lib/hooks/useOnMainScroll' import {s} from '../lib/styles' export const Notifications = ({navIdx, visible}: ScreenParams) => { const store = useStores() const onMainScroll = useOnMainScroll(store) useEffect(() => { if (!visible) { return } store.log.debug('Updating notifications feed') store.me.notifications .update() .catch(e => { store.log.error('Error while updating notifications feed', e) }) .then(() => { store.me.notifications.updateReadState() }) store.nav.setTitle(navIdx, 'Notifications') }, [visible, store, navIdx]) const onPressTryAgain = () => { store.me.notifications.refresh() } return ( ) }