Replace the FAB with a compose prompt at the top of the feed

This commit is contained in:
Paul Frazee 2022-11-20 11:20:08 -06:00
parent 39058cd36a
commit 8e3dc52536
5 changed files with 78 additions and 15 deletions

View file

@ -1,7 +1,6 @@
import React, {useState, useEffect} from 'react'
import {View} from 'react-native'
import {ViewHeader} from '../com/util/ViewHeader'
import {FAB} from '../com/util/FloatingActionButton'
import {Feed} from '../com/notifications/Feed'
import {useStores} from '../../state'
import {NotificationsViewModel} from '../../state/models/notifications-view'
@ -37,9 +36,6 @@ export const Notifications = ({navIdx, visible}: ScreenParams) => {
}
}, [visible, store])
const onComposePress = () => {
store.shell.openComposer({})
}
const onPressTryAgain = () => {
notesView?.refresh()
}
@ -48,7 +44,6 @@ export const Notifications = ({navIdx, visible}: ScreenParams) => {
<View style={{flex: 1}}>
<ViewHeader title="Notifications" />
{notesView && <Feed view={notesView} onPressTryAgain={onPressTryAgain} />}
<FAB icon="pen-nib" onPress={onComposePress} />
</View>
)
}