84 lines
3.0 KiB
JavaScript
84 lines
3.0 KiB
JavaScript
import Sticky from 'react-stickynode'
|
|
import * as Constants from '../constants'
|
|
import Search from '../components/search'
|
|
import ColumnHeader from '../components/column_header'
|
|
import Sidebar from '../components/sidebar'
|
|
// import Header from '../components/header'
|
|
// import Footer from '../components/footer'
|
|
import FloatingActionButton from '../components/floating_action_button'
|
|
import Responsive from '../features/ui/util/responsive_component'
|
|
|
|
export default class DefaultLayout extends PureComponent {
|
|
static propTypes = {
|
|
actions: PropTypes.array,
|
|
tabs: PropTypes.array,
|
|
layout: PropTypes.object,
|
|
title: PropTypes.string,
|
|
showBackBtn: PropTypes.bool,
|
|
}
|
|
|
|
render() {
|
|
const { children, title, showBackBtn, layout, actions, tabs } = this.props
|
|
|
|
console.log("Constants.BREAKPOINT_EXTRA_SMALL:", Constants.BREAKPOINT_EXTRA_SMALL)
|
|
|
|
return (
|
|
<div className={[_s.default, _s.flexRow, _s.width100PC, _s.heightMin100VH, _s.backgroundColorSecondary3].join(' ')}>
|
|
|
|
<Responsive min={Constants.BREAKPOINT_EXTRA_SMALL}>
|
|
<Sidebar />
|
|
</Responsive>
|
|
|
|
<main role='main' className={[_s.default, _s.flexShrink1, _s.flexGrow1, _s.borderColorSecondary2, _s.borderLeft1PX].join(' ')}>
|
|
|
|
<div className={[_s.default, _s.height53PX, _s.borderBottom1PX, _s.borderColorSecondary2, _s.backgroundColorSecondary3, _s.z3, _s.top0, _s.positionFixed].join(' ')}>
|
|
<div className={[_s.default, _s.height53PX, _s.pl15, _s.width1015PX, _s.flexRow, _s.justifyContentSpaceBetween].join(' ')}>
|
|
<div className={[_s.default, _s.width645PX].join(' ')}>
|
|
<ColumnHeader
|
|
title={title}
|
|
showBackBtn={showBackBtn}
|
|
actions={actions}
|
|
tabs={tabs}
|
|
/>
|
|
</div>
|
|
<Responsive min={Constants.BREAKPOINT_EXTRA_SMALL}>
|
|
<div className={[_s.default, _s.width340PX].join(' ')}>
|
|
<Search />
|
|
</div>
|
|
</Responsive>
|
|
</div>
|
|
</div>
|
|
|
|
<div className={[_s.default, _s.height53PX].join(' ')}></div>
|
|
|
|
<div className={[_s.default, _s.width1015PX, _s.flexRow, _s.justifyContentSpaceBetween, _s.pl15, _s.py15].join(' ')}>
|
|
<div className={[_s.default, _s.width645PX, _s.z1].join(' ')}>
|
|
<div className={_s.default}>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
|
|
<Responsive min={Constants.BREAKPOINT_EXTRA_SMALL}>
|
|
<div className={[_s.default, _s.width340PX].join(' ')}>
|
|
<Sticky top={73} enabled>
|
|
<div className={[_s.default, _s.width340PX].join(' ')}>
|
|
{layout}
|
|
</div>
|
|
</Sticky>
|
|
</div>
|
|
</Responsive>
|
|
|
|
<Responsive max={Constants.BREAKPOINT_EXTRA_SMALL}>
|
|
<FloatingActionButton />
|
|
</Responsive>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
)
|
|
}
|
|
|
|
}
|