fleet/frontend/layouts/CoreLayout/CoreLayout.jsx

122 lines
2.8 KiB
React
Raw Normal View History

import React, { Component, PropTypes } from 'react';
import { connect } from 'react-redux';
import { logoutUser } from 'redux/nodes/auth/actions';
import { push } from 'react-router-redux';
2016-12-01 22:14:39 +00:00
import configInterface from 'interfaces/config';
2017-01-05 18:08:19 +00:00
import FlashMessage from 'components/FlashMessage';
2016-12-01 22:14:39 +00:00
import SiteNavHeader from 'components/side_panels/SiteNavHeader';
import SiteNavSidePanel from 'components/side_panels/SiteNavSidePanel';
import userInterface from 'interfaces/user';
2017-01-05 18:08:19 +00:00
import notificationInterface from 'interfaces/notification';
import { hideFlash } from 'redux/nodes/notifications/actions';
export class CoreLayout extends Component {
static propTypes = {
children: PropTypes.node,
config: configInterface,
dispatch: PropTypes.func,
user: userInterface,
2017-01-05 18:08:19 +00:00
fullWidthFlash: PropTypes.bool,
notifications: notificationInterface,
};
onLogoutUser = () => {
const { dispatch } = this.props;
dispatch(logoutUser());
return false;
}
onNavItemClick = (path) => {
return (evt) => {
evt.preventDefault();
const { dispatch } = this.props;
dispatch(push(path));
return false;
};
}
2017-01-05 18:08:19 +00:00
onRemoveFlash = () => {
const { dispatch } = this.props;
dispatch(hideFlash);
return false;
}
onUndoActionClick = (undoAction) => {
return (evt) => {
evt.preventDefault();
const { dispatch } = this.props;
const { onRemoveFlash } = this;
dispatch(undoAction);
return onRemoveFlash();
};
}
render () {
2017-01-05 18:08:19 +00:00
const { fullWidthFlash, notifications, children, config, user } = this.props;
const { onRemoveFlash, onUndoActionClick } = this;
if (!user) return false;
const { onLogoutUser, onNavItemClick } = this;
const { pathname } = global.window.location;
return (
<div className="app-wrap">
2016-12-01 22:14:39 +00:00
<nav className="site-nav">
<SiteNavHeader
config={config}
onLogoutUser={onLogoutUser}
onNavItemClick={onNavItemClick}
2016-12-01 22:14:39 +00:00
user={user}
/>
<SiteNavSidePanel
config={config}
onNavItemClick={onNavItemClick}
2016-12-01 22:14:39 +00:00
pathname={pathname}
user={user}
/>
</nav>
<div className="core-wrapper">
2017-01-05 18:08:19 +00:00
<FlashMessage
fullWidth={fullWidthFlash}
notification={notifications}
onRemoveFlash={onRemoveFlash}
onUndoActionClick={onUndoActionClick}
/>
{children}
</div>
</div>
);
}
}
const mapStateToProps = (state) => {
const {
app: { config },
auth: { user },
2017-01-05 18:08:19 +00:00
notifications,
} = state;
2017-01-05 18:08:19 +00:00
const fullWidthFlash = !user;
return {
2017-01-05 18:08:19 +00:00
notifications,
fullWidthFlash,
config,
user,
};
};
export default connect(mapStateToProps)(CoreLayout);