Files
freeCodeCamp/common/app/App.jsx

162 lines
3.6 KiB
JavaScript
Raw Normal View History

2015-06-17 21:04:28 -07:00
import React, { PropTypes } from 'react';
2016-06-01 15:52:08 -07:00
import { Button, Row } from 'react-bootstrap';
2016-01-27 11:34:44 -08:00
import { connect } from 'react-redux';
import { createSelector } from 'reselect';
import MapDrawer from './components/Map-Drawer.jsx';
2016-03-05 21:06:04 -08:00
import {
fetchUser,
initWindowHeight,
updateNavHeight,
2016-06-03 23:34:28 -07:00
toggleMapDrawer,
toggleMainChat,
updateAppLang,
trackEvent
2016-03-05 21:06:04 -08:00
} from './redux/actions';
2015-06-17 21:04:28 -07:00
2016-06-01 15:52:08 -07:00
import { submitChallenge } from './routes/challenges/redux/actions';
2016-01-06 09:33:55 -08:00
import Nav from './components/Nav';
import Toasts from './toasts/Toasts.jsx';
import { userSelector } from './redux/selectors';
2015-06-17 21:04:28 -07:00
const bindableActions = {
initWindowHeight,
updateNavHeight,
fetchUser,
submitChallenge,
toggleMapDrawer,
toggleMainChat,
updateAppLang,
trackEvent
};
2016-01-27 11:34:44 -08:00
const mapStateToProps = createSelector(
userSelector,
state => state.app.shouldShowSignIn,
2016-06-01 15:52:08 -07:00
state => state.app.toast,
state => state.app.isMapDrawerOpen,
state => state.app.isMapAlreadyLoaded,
2016-06-01 15:52:08 -07:00
state => state.challengesApp.toast,
(
{ user: { username, points, picture } },
shouldShowSignIn,
2016-06-01 15:52:08 -07:00
toast,
isMapDrawerOpen,
isMapAlreadyLoaded,
2016-06-01 15:52:08 -07:00
) => ({
2016-01-27 11:34:44 -08:00
username,
points,
picture,
2016-06-01 15:52:08 -07:00
toast,
shouldShowSignIn,
isMapDrawerOpen,
isMapAlreadyLoaded,
isSignedIn: !!username
2016-01-27 11:34:44 -08:00
})
);
// export plain class for testing
export class FreeCodeCamp extends React.Component {
static displayName = 'FreeCodeCamp';
static contextTypes = {
router: PropTypes.object
};
2016-01-27 11:34:44 -08:00
static propTypes = {
children: PropTypes.node,
username: PropTypes.string,
isSignedIn: PropTypes.bool,
2016-01-27 11:34:44 -08:00
points: PropTypes.number,
picture: PropTypes.string,
2016-03-05 21:06:04 -08:00
toast: PropTypes.object,
updateNavHeight: PropTypes.func,
2016-06-01 15:52:08 -07:00
initWindowHeight: PropTypes.func,
submitChallenge: PropTypes.func,
isMapDrawerOpen: PropTypes.bool,
isMapAlreadyLoaded: PropTypes.bool,
2016-06-03 23:34:28 -07:00
toggleMapDrawer: PropTypes.func,
toggleMainChat: PropTypes.func,
fetchUser: PropTypes.func,
shouldShowSignIn: PropTypes.bool,
params: PropTypes.object,
updateAppLang: PropTypes.func.isRequired,
trackEvent: PropTypes.func.isRequired
2016-01-27 11:34:44 -08:00
};
componentWillReceiveProps(nextProps) {
if (this.props.params.lang !== nextProps.params.lang) {
this.props.updateAppLang(nextProps.params.lang);
}
}
2016-03-05 21:06:04 -08:00
componentDidMount() {
this.props.initWindowHeight();
if (!this.props.isSignedIn) {
this.props.fetchUser();
}
2016-03-05 21:06:04 -08:00
}
2016-06-01 15:52:08 -07:00
renderChallengeComplete() {
const { submitChallenge } = this.props;
return (
<Button
block={ true }
bsSize='small'
bsStyle='primary'
className='animated fadeIn'
onClick={ submitChallenge }
>
2016-06-01 15:52:08 -07:00
Submit and go to my next challenge
</Button>
);
}
2016-01-27 11:34:44 -08:00
render() {
const { router } = this.context;
const {
username,
points,
picture,
updateNavHeight,
isMapDrawerOpen,
isMapAlreadyLoaded,
2016-06-03 23:34:28 -07:00
toggleMapDrawer,
toggleMainChat,
shouldShowSignIn,
params: { lang },
trackEvent
} = this.props;
const navProps = {
isOnMap: router.isActive(`/${lang}/map`),
username,
points,
picture,
updateNavHeight,
2016-06-03 23:34:28 -07:00
toggleMapDrawer,
toggleMainChat,
shouldShowSignIn,
trackEvent
};
2016-01-27 11:34:44 -08:00
return (
<div>
<Nav { ...navProps }/>
<Row>
{ this.props.children }
</Row>
<MapDrawer
isAlreadyLoaded={ isMapAlreadyLoaded }
isOpen={ isMapDrawerOpen }
toggleMapDrawer={ toggleMapDrawer }
/>
<Toasts />
2016-01-27 11:34:44 -08:00
</div>
);
}
}
export default connect(
mapStateToProps,
bindableActions
)(FreeCodeCamp);