2016-09-21 03:07:32 +00:00
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
2017-01-27 15:05:44 +00:00
|
|
|
import LoadingBar from 'react-redux-loading-bar';
|
2016-12-05 17:55:30 +00:00
|
|
|
import { logoutUser } from 'redux/nodes/auth/actions';
|
|
|
|
import { push } from 'react-router-redux';
|
2017-02-24 23:01:43 +00:00
|
|
|
import classnames from 'classnames';
|
2016-10-19 20:22:18 +00:00
|
|
|
|
2016-12-01 22:14:39 +00:00
|
|
|
import configInterface from 'interfaces/config';
|
2017-02-10 03:16:51 +00:00
|
|
|
import FlashMessage from 'components/flash_messages/FlashMessage';
|
|
|
|
import PersistentFlash from 'components/flash_messages/PersistentFlash';
|
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';
|
2016-09-21 03:07:32 +00:00
|
|
|
|
|
|
|
export class CoreLayout extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
children: PropTypes.node,
|
2016-10-21 23:13:41 +00:00
|
|
|
config: configInterface,
|
2016-09-21 03:07:32 +00:00
|
|
|
dispatch: PropTypes.func,
|
2016-10-21 23:13:41 +00:00
|
|
|
user: userInterface,
|
2017-01-05 18:08:19 +00:00
|
|
|
fullWidthFlash: PropTypes.bool,
|
2017-02-24 23:01:43 +00:00
|
|
|
isSmallNav: PropTypes.bool,
|
2017-01-05 18:08:19 +00:00
|
|
|
notifications: notificationInterface,
|
2017-02-10 03:16:51 +00:00
|
|
|
persistentFlash: PropTypes.shape({
|
|
|
|
showFlash: PropTypes.bool.isRequired,
|
|
|
|
message: PropTypes.string.isRequired,
|
|
|
|
}).isRequired,
|
2016-09-21 03:07:32 +00:00
|
|
|
};
|
|
|
|
|
2016-12-05 17:55:30 +00:00
|
|
|
onLogoutUser = () => {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
|
|
|
|
dispatch(logoutUser());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-12-29 20:27:43 +00:00
|
|
|
onNavItemClick = (path) => {
|
2016-12-13 15:24:58 +00:00
|
|
|
return (evt) => {
|
|
|
|
evt.preventDefault();
|
2016-12-05 17:55:30 +00:00
|
|
|
|
2016-12-13 15:24:58 +00:00
|
|
|
const { dispatch } = this.props;
|
2016-12-05 17:55:30 +00:00
|
|
|
|
2017-01-18 14:40:28 +00:00
|
|
|
if (path.indexOf('http') !== -1) {
|
|
|
|
global.window.open(path, '_blank');
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-12-13 15:24:58 +00:00
|
|
|
dispatch(push(path));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
2016-12-05 17:55:30 +00:00
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-09-21 03:07:32 +00:00
|
|
|
render () {
|
2017-02-24 23:01:43 +00:00
|
|
|
const {
|
|
|
|
fullWidthFlash,
|
|
|
|
notifications,
|
|
|
|
children,
|
|
|
|
config,
|
|
|
|
persistentFlash,
|
|
|
|
user,
|
|
|
|
isSmallNav,
|
|
|
|
} = this.props;
|
2017-01-05 18:08:19 +00:00
|
|
|
const { onRemoveFlash, onUndoActionClick } = this;
|
2016-09-21 03:07:32 +00:00
|
|
|
|
|
|
|
if (!user) return false;
|
|
|
|
|
2016-12-29 20:27:43 +00:00
|
|
|
const { onLogoutUser, onNavItemClick } = this;
|
2016-09-30 18:55:15 +00:00
|
|
|
const { pathname } = global.window.location;
|
|
|
|
|
2017-02-24 23:01:43 +00:00
|
|
|
const siteNavClasses = classnames('site-nav', {
|
|
|
|
'site-nav--small': isSmallNav,
|
|
|
|
});
|
|
|
|
|
|
|
|
const coreWrapperClasses = classnames('core-wrapper', {
|
|
|
|
'core-wrapper--small': isSmallNav,
|
|
|
|
});
|
|
|
|
|
2016-09-21 03:07:32 +00:00
|
|
|
return (
|
2016-12-06 16:55:48 +00:00
|
|
|
<div className="app-wrap">
|
2017-01-27 15:05:44 +00:00
|
|
|
<LoadingBar />
|
2017-02-24 23:01:43 +00:00
|
|
|
<nav className={siteNavClasses}>
|
2016-12-01 22:14:39 +00:00
|
|
|
<SiteNavHeader
|
|
|
|
config={config}
|
2016-12-05 17:55:30 +00:00
|
|
|
onLogoutUser={onLogoutUser}
|
2016-12-29 20:27:43 +00:00
|
|
|
onNavItemClick={onNavItemClick}
|
2016-12-01 22:14:39 +00:00
|
|
|
user={user}
|
|
|
|
/>
|
|
|
|
<SiteNavSidePanel
|
|
|
|
config={config}
|
2016-12-29 20:27:43 +00:00
|
|
|
onNavItemClick={onNavItemClick}
|
2016-12-01 22:14:39 +00:00
|
|
|
pathname={pathname}
|
|
|
|
user={user}
|
|
|
|
/>
|
|
|
|
</nav>
|
2017-02-24 23:01:43 +00:00
|
|
|
<div className={coreWrapperClasses}>
|
2017-02-10 03:16:51 +00:00
|
|
|
{persistentFlash.showFlash && <PersistentFlash message={persistentFlash.message} />}
|
2017-01-05 18:08:19 +00:00
|
|
|
<FlashMessage
|
|
|
|
fullWidth={fullWidthFlash}
|
|
|
|
notification={notifications}
|
|
|
|
onRemoveFlash={onRemoveFlash}
|
|
|
|
onUndoActionClick={onUndoActionClick}
|
|
|
|
/>
|
2016-09-30 18:55:15 +00:00
|
|
|
{children}
|
|
|
|
</div>
|
2016-11-03 19:40:54 +00:00
|
|
|
</div>
|
2016-09-21 03:07:32 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapStateToProps = (state) => {
|
2016-10-11 15:32:39 +00:00
|
|
|
const {
|
2017-02-24 23:01:43 +00:00
|
|
|
app: {
|
|
|
|
config,
|
|
|
|
isSmallNav,
|
|
|
|
},
|
2016-10-11 15:32:39 +00:00
|
|
|
auth: { user },
|
2017-01-05 18:08:19 +00:00
|
|
|
notifications,
|
2017-02-10 03:16:51 +00:00
|
|
|
persistentFlash,
|
2016-10-11 15:32:39 +00:00
|
|
|
} = state;
|
|
|
|
|
2017-01-05 18:08:19 +00:00
|
|
|
const fullWidthFlash = !user;
|
|
|
|
|
2016-10-11 15:32:39 +00:00
|
|
|
return {
|
|
|
|
config,
|
2017-02-10 03:16:51 +00:00
|
|
|
fullWidthFlash,
|
2017-02-24 23:01:43 +00:00
|
|
|
isSmallNav,
|
2017-02-10 03:16:51 +00:00
|
|
|
notifications,
|
|
|
|
persistentFlash,
|
2016-10-11 15:32:39 +00:00
|
|
|
user,
|
|
|
|
};
|
2016-09-21 03:07:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps)(CoreLayout);
|