| 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 ); |
|
|
| |
| 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 ( |
| <DocumentHead |
| title={ translate( '%s ‹ Reader', { |
| args: 'Notifications', |
| comment: '%s is the section name. For example: "My Likes"', |
| textOnly: true, |
| } ) } |
| /> |
| ); |
| }; |
|
|
| context.primary = ( |
| <> |
| <NotificationTitle /> |
| <div className="reader-notifications__panel"> |
| <AsyncLoad |
| require="calypso/notifications" |
| isShowing |
| checkToggle={ () => {} } |
| placeholder={ null } |
| isGlobalSidebarVisible={ shouldShowGlobalSidebar } |
| /> |
| </div> |
| </> |
| ); |
| next(); |
| } |
|
|