File size: 1,250 Bytes
258fb37 | 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 56 57 58 59 60 61 62 | import { Component } from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { bindActionCreators, compose } from 'redux';
import withWidth, { SMALL } from 'helpers/with-width';
import * as sidebarActions from 'modules/sidebar';
import { Sidebar } from 'components';
class SidebarContainer extends Component {
static propTypes = {
width: PropTypes.number.isRequired,
isOpen: PropTypes.bool.isRequired,
view: PropTypes.string.isRequired
}
handleSelectView = (view) => {
const {
width,
SidebarActions
} = this.props;
SidebarActions.selectView(view);
if (width === SMALL) {
SidebarActions.toggle();
}
}
render() {
const {
isOpen,
view
} = this.props;
const {
handleSelectView
} = this;
return (
<Sidebar
isOpen={isOpen}
selectedView={view}
onSelectView={handleSelectView}/>
)
}
}
const enhance = compose(
withWidth(),
connect(
(state) => ({
isOpen: state.sidebar.isOpen,
view: state.sidebar.view
}),
(dispatch) => ({
SidebarActions: bindActionCreators(sidebarActions, dispatch)
})
)
);
export default enhance(SidebarContainer); |