import React, { Component, PropTypes } from 'react'; import { connect } from 'react-redux'; import { StyleRoot } from 'radium'; import componentStyles from './styles'; import FlashMessage from '../../components/FlashMessage'; import SidePanel from '../../components/SidePanel'; export class CoreLayout extends Component { static propTypes = { children: PropTypes.node, config: PropTypes.shape({ org_logo_url: PropTypes.string, org_name: PropTypes.string, }), dispatch: PropTypes.func, notifications: PropTypes.object, showRightSidePanel: PropTypes.bool, user: PropTypes.object, }; render () { const { children, config, dispatch, notifications, showRightSidePanel, user } = this.props; const { wrapperStyles } = componentStyles; if (!user) return false; const { pathname } = global.window.location; return (
{children}
); } } const mapStateToProps = (state) => { const { app: { config, showRightSidePanel }, auth: { user }, notifications, } = state; return { config, notifications, showRightSidePanel, user, }; }; export default connect(mapStateToProps)(CoreLayout);