import { useTranslate } from 'i18n-calypso'; import AsyncLoad from 'calypso/components/async-load'; import DocumentHead from 'calypso/components/data/document-head'; import { sectionify } from 'calypso/lib/route'; import { trackPageLoad } from 'calypso/reader/controller-helper'; import { recordTrack } from 'calypso/reader/stats'; import { getShouldShowGlobalSidebar } from 'calypso/state/global-sidebar/selectors'; import getCurrentRoute from 'calypso/state/selectors/get-current-route'; import getIsNotificationsOpen from 'calypso/state/selectors/is-notifications-open'; import { toggleNotificationsPanel } from 'calypso/state/ui/actions'; export function notifications( context, next ) { const basePath = sectionify( context.path ); const mcKey = 'notifications'; const state = context.store.getState(); const shouldShowGlobalSidebar = getShouldShowGlobalSidebar( { state, section: { group: 'reader' }, } ); const isGlobalNotificationsOpen = getIsNotificationsOpen( state ); // Close the global notifications panel if it's already open. if ( isGlobalNotificationsOpen ) { context.store.dispatch( toggleNotificationsPanel() ); } trackPageLoad( basePath, 'Reader > Notifications', mcKey ); recordTrack( 'calypso_reader_notifications_viewed', {}, { pathnameOverride: getCurrentRoute( state ) } ); const NotificationTitle = () => { const translate = useTranslate(); return ( ); }; context.primary = ( <>
{} } placeholder={ null } isGlobalSidebarVisible={ shouldShowGlobalSidebar } />
); next(); }