File size: 1,176 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
import page from '@automattic/calypso-router';
import { useTranslate } from 'i18n-calypso';
import { createElement } from 'react';
import DocumentHead from 'calypso/components/data/document-head';
import AppsComponent from 'calypso/me/get-apps';
import SidebarComponent from 'calypso/me/sidebar';
export function sidebar( context, next ) {
context.secondary = createElement( SidebarComponent, {
context: context,
} );
next();
}
export function profile( context, next ) {
const ProfileComponent = require( 'calypso/me/profile' ).default;
const ProfileTitle = () => {
const translate = useTranslate();
return <DocumentHead title={ translate( 'My Profile', { textOnly: true } ) } />;
};
context.primary = (
<>
<ProfileTitle />
<ProfileComponent path={ context.path } />
</>
);
next();
}
export function apps( context, next ) {
const AppsTitle = () => {
const translate = useTranslate();
return <DocumentHead title={ translate( 'Get Apps', { textOnly: true } ) } />;
};
context.primary = (
<>
<AppsTitle />
<AppsComponent path={ context.path } />
</>
);
next();
}
export function profileRedirect() {
page.redirect( '/me' );
}
|