Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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 (
<DocumentHead
title={ translate( '%sReader', {
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();
}