A couple various fixes (#242)
* Fix: set the status bar color for dark mode when logging in * Add some logging * Improve read/unread tracking behaviors in notifications
This commit is contained in:
parent
1fd2942b9b
commit
9b46b2e6a9
4 changed files with 15 additions and 3 deletions
|
@ -61,13 +61,13 @@ export const Notifications = ({navIdx, visible}: ScreenParams) => {
|
|||
// =
|
||||
useEffect(() => {
|
||||
if (!visible) {
|
||||
// mark read when the user leaves the screen
|
||||
store.me.notifications.markAllRead()
|
||||
return
|
||||
}
|
||||
store.log.debug('NotificationsScreen: Updating feed')
|
||||
const softResetSub = store.onScreenSoftReset(scrollToTop)
|
||||
store.me.notifications.update().then(() => {
|
||||
store.me.notifications.markAllRead()
|
||||
})
|
||||
store.me.notifications.update()
|
||||
screen('Notifications')
|
||||
store.nav.setTitle(navIdx, 'Notifications')
|
||||
return () => {
|
||||
|
|
|
@ -398,6 +398,11 @@ export const MobileShell: React.FC = observer(() => {
|
|||
if (!store.session.hasSession) {
|
||||
return (
|
||||
<View style={styles.outerContainer}>
|
||||
<StatusBar
|
||||
barStyle={
|
||||
theme.colorScheme === 'dark' ? 'light-content' : 'dark-content'
|
||||
}
|
||||
/>
|
||||
<Login />
|
||||
<ModalsContainer />
|
||||
</View>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue