chore: show preferences notification count bubble on mobile

This commit is contained in:
Aman Harwara
2023-09-08 18:35:51 +05:30
parent 986985b7de
commit 2e364dc016
4 changed files with 51 additions and 19 deletions

View File

@@ -1,22 +1,43 @@
import { PaneLayout } from '@/Controllers/PaneController/PaneLayout'
import useIsTabletOrMobileScreen from '@/Hooks/useIsTabletOrMobileScreen'
import { classNames } from '@standardnotes/snjs'
import { StatusServiceEvent, classNames } from '@standardnotes/snjs'
import RoundIconButton from '../Button/RoundIconButton'
import { useResponsiveAppPane } from '../Panes/ResponsivePaneProvider'
import { useState, useEffect } from 'react'
import { useApplication } from '../ApplicationProvider'
/** This button is displayed in the items list header */
export const NavigationMenuButton = () => {
const application = useApplication()
const { setPaneLayout } = useResponsiveAppPane()
const { isTabletOrMobile } = useIsTabletOrMobileScreen()
const { isTabletOrMobile, isMobile } = useIsTabletOrMobileScreen()
const [bubbleCount, setBubbleCount] = useState<string | undefined>(() =>
application.status.totalPreferencesBubbleCount.toString(),
)
useEffect(() => {
return application.status.addEventObserver((event, message) => {
if (event !== StatusServiceEvent.PreferencesBubbleCountChanged) {
return
}
setBubbleCount(message)
})
}, [application.status])
return (
<RoundIconButton
className={classNames(isTabletOrMobile ? 'flex' : 'hidden', 'mr-3')}
onClick={() => {
setPaneLayout(PaneLayout.TagSelection)
}}
label="Open navigation menu"
icon="menu-variant"
/>
<div className={classNames(isTabletOrMobile ? 'flex' : 'hidden', 'relative h-10 w-10', 'mr-3')}>
<RoundIconButton
onClick={() => {
setPaneLayout(PaneLayout.TagSelection)
}}
label="Open navigation menu"
icon="menu-variant"
/>
{isMobile && bubbleCount && (
<div className="absolute -right-2 -top-2 aspect-square rounded-full border border-info-contrast bg-info px-2 py-0.5 text-[0.65rem] font-bold text-info-contrast">
{bubbleCount}
</div>
)}
</div>
)
}