File size: 1,702 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 53 54 55 |
import clsx from 'clsx';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import DocumentHead from 'calypso/components/data/document-head';
import { withCurrentRoute } from 'calypso/components/route';
import LayoutLoader from 'calypso/layout/loader';
import { getCurrentLayoutFocus } from 'calypso/state/ui/layout-focus/selectors';
class Layout extends Component {
static propTypes = {
primary: PropTypes.element,
secondary: PropTypes.element,
focus: PropTypes.object,
// connected props
currentLayoutFocus: PropTypes.string,
};
render() {
const sectionClass = clsx( 'layout', `focus-${ this.props.currentLayoutFocus }`, {
[ 'is-group-' + this.props.sectionGroup ]: this.props.sectionGroup,
[ 'is-section-' + this.props.sectionName ]: this.props.sectionName,
'is-support-session': this.props.isSupportSession,
'has-no-sidebar': this.props.sidebarIsHidden,
'has-docked-chat': this.props.chatIsOpen && this.props.chatIsDocked,
'has-no-masterbar': this.props.masterbarIsHidden,
'is-jetpack-login': this.props.isJetpackLogin,
'is-jetpack-site': this.props.isJetpack,
} );
return (
<div className={ sectionClass }>
<DocumentHead />
<LayoutLoader />
<div id="content" className="layout__content">
<div id="secondary" className="layout__secondary" role="navigation">
{ this.props.secondary }
</div>
<div id="primary" className="layout__primary">
{ this.props.primary }
</div>
</div>
</div>
);
}
}
export default withCurrentRoute(
connect( ( state ) => {
return {
currentLayoutFocus: getCurrentLayoutFocus( state ),
};
} )( Layout )
);
|