mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import Router from 'react-router';
|
|
import Hero from './components/prize_hero';
|
|
import Header from '../../header';
|
|
import Footer from '../../footer';
|
|
import GlobalNotification from '../../global_notification';
|
|
|
|
import getRoutes from './prize_routes';
|
|
|
|
let RouteHandler = Router.RouteHandler;
|
|
|
|
let PrizeApp = React.createClass({
|
|
mixins: [Router.State],
|
|
|
|
render() {
|
|
let header = null;
|
|
let subdomain = window.location.host.split('.')[0];
|
|
|
|
let ROUTES = getRoutes(null, subdomain);
|
|
|
|
if (this.isActive('landing') || this.isActive('login') || this.isActive('signup')) {
|
|
header = <Hero />;
|
|
} else {
|
|
header = <Header showAddWork={false} routes={ROUTES}/>;
|
|
}
|
|
|
|
return (
|
|
<div className="container ascribe-prize-app">
|
|
{header}
|
|
<RouteHandler />
|
|
<GlobalNotification />
|
|
<div id="modal" className="container"></div>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default PrizeApp;
|