onion/js/routes.js

93 lines
3.4 KiB
JavaScript
Raw Normal View History

'use strict';
import React from 'react';
2018-05-31 11:46:34 +02:00
import { Route, Redirect } from 'react-router';
2015-05-18 09:56:16 +02:00
import getPrizeRoutes from './components/whitelabel/prize/prize_routes';
import getWalletRoutes from './components/whitelabel/wallet/wallet_routes';
import AscribeApp from './components/ascribe_app';
import PieceList from './components/piece_list';
2015-07-08 22:54:07 +02:00
import PieceContainer from './components/ascribe_detail/piece_container';
import EditionContainer from './components/ascribe_detail/edition_container';
2015-06-20 16:43:18 +02:00
import LoginContainer from './components/login_container';
2015-07-17 15:02:44 +02:00
import LogoutContainer from './components/logout_container';
2015-06-15 16:56:17 +02:00
import PasswordResetContainer from './components/password_reset_container';
2015-06-20 16:43:18 +02:00
import ContractSettings from './components/ascribe_settings/contract_settings';
import SettingsContainer from './components/ascribe_settings/settings_container';
2015-06-25 14:39:39 +02:00
import CoaVerifyContainer from './components/coa_verify_container';
import ErrorNotFoundPage from './components/error_not_found_page';
2015-06-17 17:48:52 +02:00
import RegisterPiece from './components/register_piece';
2016-03-04 15:53:55 +01:00
import Footer from './components/footer';
import { ProxyHandler, AuthRedirect } from './components/ascribe_routes/proxy_handler';
2015-10-06 10:20:36 +02:00
2016-02-08 14:50:24 +01:00
import { getLangText } from './utils/lang_utils';
const COMMON_ROUTES = (
<Route path='/' component={AscribeApp}>
2015-10-12 16:51:03 +02:00
<Route
2015-10-13 15:29:41 +02:00
path='login'
2016-03-04 15:53:55 +01:00
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LoginContainer)}
footer={Footer} />
2015-10-12 16:51:03 +02:00
<Route
2015-10-13 15:29:41 +02:00
path='register_piece'
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(RegisterPiece)}
2016-03-04 15:53:55 +01:00
headerTitle={getLangText('+ NEW WORK')}
footer={Footer} />
2015-10-12 16:51:03 +02:00
<Route
2015-10-13 15:29:41 +02:00
path='collection'
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(PieceList)}
2016-02-08 14:50:24 +01:00
headerTitle={getLangText('COLLECTION')}
2016-03-04 15:53:55 +01:00
disableOn='noPieces'
footer={Footer} />
2018-06-01 10:58:50 +02:00
<Redirect from="signup" to="login" />
<Route path='signup' />
2015-10-12 16:51:03 +02:00
<Route
2015-10-13 15:29:41 +02:00
path='logout'
2016-03-04 15:53:55 +01:00
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(LogoutContainer)}
footer={Footer} />
<Route path='pieces/:pieceId' component={PieceContainer}
footer={Footer} />
<Route path='editions/:editionId' component={EditionContainer}
footer={Footer} />
2015-10-12 16:51:03 +02:00
<Route
2015-10-13 15:29:41 +02:00
path='password_reset'
2016-03-04 15:53:55 +01:00
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PasswordResetContainer)}
footer={Footer} />
2015-10-12 16:51:03 +02:00
<Route
2015-10-13 15:29:41 +02:00
path='settings'
2016-03-04 15:53:55 +01:00
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SettingsContainer)}
footer={Footer} />
2015-10-12 16:51:03 +02:00
<Route
2015-10-13 15:29:41 +02:00
path='contract_settings'
2016-03-04 15:53:55 +01:00
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(ContractSettings)}
footer={Footer} />
<Route path='coa_verify' component={CoaVerifyContainer}
footer={Footer} />
<Route path='*' component={ErrorNotFoundPage}
footer={Footer} />
2015-05-18 18:00:12 +02:00
</Route>
);
function getRoutes(type, subdomain) {
if (type === 'prize') {
return getPrizeRoutes(COMMON_ROUTES, subdomain);
} else if(type === 'wallet') {
return getWalletRoutes(COMMON_ROUTES, subdomain);
} else {
return COMMON_ROUTES;
}
}
export default getRoutes;