File size: 1,500 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 |
import config from '@automattic/calypso-config';
import { Gridicon } from '@automattic/components';
import { Button } from '@wordpress/components';
import { createInterpolateElement, Fragment } from '@wordpress/element';
import { __ } from '@wordpress/i18n';
import { localize } from 'i18n-calypso';
import BlazeProLogo from 'calypso/assets/images/blaze/blaze-pro-logo.png';
import './typekit';
import './blaze-pro.scss';
const BlazeProOauthMasterbar = () => {
function onClick() {
if ( document.referrer ) {
window.location.href = document.referrer;
} else {
window.history.back();
}
}
const backNav = (
<li className="masterbar__blaze-pro-nav-item">
<Button className="masterbar__login-back-link" onClick={ onClick }>
{ createInterpolateElement( __( '<arrow/> Back' ), {
arrow: <Gridicon icon="chevron-left" size={ 18 } />,
} ) }
</Button>
</li>
);
return (
<Fragment>
<header className="masterbar masterbar__blaze-pro">
<nav className="masterbar__blaze-pro-nav-wrapper">
<ul className="masterbar__blaze-pro-nav">
<li className="masterbar__blaze-pro-nav-item">
<a href={ config( 'blaze_pro_back_link' ) } className="masterbar__blaze-pro-link">
<img src={ BlazeProLogo } alt="Blaze Pro" width="40" />
</a>
</li>
{ backNav }
</ul>
</nav>
</header>
<div className="masterbar__blaze-pro-mobile-nav">{ backNav }</div>
</Fragment>
);
};
export default localize( BlazeProOauthMasterbar );
|