1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/components/ascribe_app.js

77 lines
2.1 KiB
JavaScript
Raw Normal View History

'use strict';
2015-05-13 16:26:12 +02:00
import React from 'react';
import UserActions from '../actions/user_actions';
import UserStore from '../stores/user_store';
import WhitelabelActions from '../actions/whitelabel_actions';
import WhitelabelStore from '../stores/whitelabel_store';
import AppRouteWrapper from './app_route_wrapper';
import Header from './header';
import Footer from './footer';
2015-06-08 18:14:25 +02:00
import GlobalNotification from './global_notification';
2015-05-15 15:38:25 +02:00
import { mergeOptions } from '../utils/general_utils';
2015-05-18 18:00:12 +02:00
2015-05-20 12:00:16 +02:00
let AscribeApp = React.createClass({
propTypes: {
children: React.PropTypes.oneOfType([
React.PropTypes.arrayOf(React.PropTypes.element),
React.PropTypes.element
2015-10-01 14:00:56 +02:00
]),
routes: React.PropTypes.arrayOf(React.PropTypes.object)
},
getInitialState() {
return mergeOptions(
UserStore.getState(),
WhitelabelStore.getState()
);
},
componentDidMount() {
UserStore.listen(this.onChange);
WhitelabelStore.listen(this.onChange);
UserActions.fetchCurrentUser();
WhitelabelActions.fetchWhitelabel();
},
componentWillUnmount() {
UserStore.unlisten(this.onChange);
WhitelabelActions.unlisten(this.onChange);
},
onChange(state) {
this.setState(state);
},
2015-05-18 18:00:12 +02:00
render() {
const { children, routes } = this.props;
const { currentUser, whitelabel } = this.state;
2015-05-18 18:00:12 +02:00
return (
2015-07-13 14:29:20 +02:00
<div className="container ascribe-default-app">
<Header
currentUser={currentUser}
routes={routes}
whitelabel={whitelabel} />
<AppRouteWrapper
currentUser={currentUser}
whitelabel={whitelabel}>
{/* Routes are injected here */}
{children}
</AppRouteWrapper>
2015-07-02 15:41:17 +02:00
<Footer />
2015-06-08 18:14:25 +02:00
<GlobalNotification />
<div id="modal" className="container"></div>
</div>
2015-05-18 18:00:12 +02:00
);
}
2015-05-20 12:00:16 +02:00
});
2015-05-13 16:26:12 +02:00
export default AscribeApp;