mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 01:39:36 +01:00
427 lines
20 KiB
JavaScript
427 lines
20 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import { Route, IndexRoute } from 'react-router';
|
|
|
|
import { ProxyHandler, AuthRedirect } from '../../../components/ascribe_routes/proxy_handler';
|
|
|
|
// General components
|
|
import CoaVerifyContainer from '../../../components/coa_verify_container';
|
|
import LoginContainer from '../../../components/login_container';
|
|
import LogoutContainer from '../../../components/logout_container';
|
|
import SignupContainer from '../../../components/signup_container';
|
|
import PasswordResetContainer from '../../../components/password_reset_container';
|
|
import PieceList from '../../../components/piece_list';
|
|
import PieceContainer from '../../../components/ascribe_detail/piece_container';
|
|
import EditionContainer from '../../../components/ascribe_detail/edition_container';
|
|
import SettingsContainer from '../../../components/ascribe_settings/settings_container';
|
|
import ContractSettings from '../../../components/ascribe_settings/contract_settings';
|
|
import ErrorNotFoundPage from '../../../components/error_not_found_page';
|
|
import Footer from '../../../components/footer.js';
|
|
|
|
import CCRegisterPiece from './components/cc/cc_register_piece';
|
|
|
|
import CylandLanding from './components/cyland/cyland_landing';
|
|
import CylandPieceContainer from './components/cyland/cyland_detail/cyland_piece_container';
|
|
import CylandRegisterPiece from './components/cyland/cyland_register_piece';
|
|
import CylandPieceList from './components/cyland/cyland_piece_list';
|
|
|
|
import IkonotvLanding from './components/ikonotv/ikonotv_landing';
|
|
import IkonotvPieceList from './components/ikonotv/ikonotv_piece_list';
|
|
import SendContractAgreementForm from '../../../components/ascribe_forms/form_send_contract_agreement';
|
|
import IkonotvRegisterPiece from './components/ikonotv/ikonotv_register_piece';
|
|
import IkonotvPieceContainer from './components/ikonotv/ikonotv_detail/ikonotv_piece_container';
|
|
import IkonotvContractNotifications from './components/ikonotv/ikonotv_contract_notifications';
|
|
|
|
import MarketPieceList from './components/market/market_piece_list';
|
|
import MarketRegisterPiece from './components/market/market_register_piece';
|
|
import MarketPieceContainer from './components/market/market_detail/market_piece_container';
|
|
import MarketEditionContainer from './components/market/market_detail/market_edition_container';
|
|
import MarketFooter from './components/market/market_footer';
|
|
|
|
import LumenusLanding from './components/lumenus/lumenus_landing';
|
|
|
|
import Vivi23Landing from './components/23vivi/23vivi_landing';
|
|
import Vivi23PieceList from './components/23vivi/23vivi_piece_list';
|
|
|
|
import PollineLanding from './components/polline/polline_landing';
|
|
|
|
import DemoLanding from './components/demo/demo_landing';
|
|
|
|
import ArtcityLanding from './components/artcity/artcity_landing';
|
|
|
|
import WalletApp from './wallet_app';
|
|
|
|
import { getLangText } from '../../../utils/lang_utils';
|
|
|
|
|
|
let ROUTES = {
|
|
'cyland': (
|
|
<Route path='/' component={WalletApp}>
|
|
<IndexRoute
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(CylandLanding)} />
|
|
<Route
|
|
path='login'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LoginContainer)} />
|
|
<Route
|
|
path='logout'
|
|
component={ProxyHandler(AuthRedirect({to: '/', when: 'loggedOut'}))(LogoutContainer)} />
|
|
<Route
|
|
path='signup'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(SignupContainer)} />
|
|
<Route
|
|
path='password_reset'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PasswordResetContainer)} />
|
|
<Route
|
|
path='settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SettingsContainer)} />
|
|
<Route
|
|
path='contract_settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(ContractSettings)} />
|
|
<Route
|
|
path='register_piece'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(CylandRegisterPiece)}
|
|
headerTitle={getLangText('+ NEW WORK')}
|
|
aclName='acl_wallet_submit' />
|
|
<Route
|
|
path='collection'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(CylandPieceList)}
|
|
headerTitle={getLangText('COLLECTION')}
|
|
disableOn='noPieces' />
|
|
<Route
|
|
path='editions/:editionId'
|
|
component={EditionContainer} />
|
|
<Route
|
|
path='coa_verify'
|
|
component={CoaVerifyContainer} />
|
|
<Route
|
|
path='pieces/:pieceId'
|
|
component={CylandPieceContainer} />
|
|
<Route
|
|
path='*'
|
|
component={ErrorNotFoundPage} />
|
|
</Route>
|
|
),
|
|
'cc': (
|
|
<Route path='/' component={WalletApp}>
|
|
<Route
|
|
path='login'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LoginContainer)} />
|
|
<Route
|
|
path='logout'
|
|
component={ProxyHandler(AuthRedirect({to: '/', when: 'loggedOut'}))(LogoutContainer)} />
|
|
<Route
|
|
path='signup'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(SignupContainer)} />
|
|
<Route
|
|
path='password_reset'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PasswordResetContainer)} />
|
|
<Route
|
|
path='settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SettingsContainer)} />
|
|
<Route
|
|
path='contract_settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(ContractSettings)} />
|
|
<Route
|
|
path='register_piece'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(CCRegisterPiece)}
|
|
headerTitle={getLangText('+ NEW WORK')} />
|
|
<Route
|
|
path='collection'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(PieceList)}
|
|
headerTitle={getLangText('COLLECTION')}
|
|
disableOn='noPieces' />
|
|
<Route
|
|
path='pieces/:pieceId'
|
|
component={PieceContainer} />
|
|
<Route
|
|
path='editions/:editionId'
|
|
component={EditionContainer} />
|
|
<Route
|
|
path='coa_verify'
|
|
component={CoaVerifyContainer} />
|
|
<Route
|
|
path='*'
|
|
component={ErrorNotFoundPage} />
|
|
</Route>
|
|
),
|
|
'ikonotv': (
|
|
<Route path='/' component={WalletApp}>
|
|
<IndexRoute
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(IkonotvLanding)} />
|
|
<Route
|
|
path='login'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LoginContainer)} />
|
|
<Route
|
|
path='logout'
|
|
component={ProxyHandler(AuthRedirect({to: '/', when: 'loggedOut'}))(LogoutContainer)} />
|
|
<Route
|
|
path='signup'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(SignupContainer)} />
|
|
<Route
|
|
path='password_reset'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PasswordResetContainer)} />
|
|
<Route
|
|
path='settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SettingsContainer)} />
|
|
<Route
|
|
path='contract_settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(ContractSettings)} />
|
|
<Route
|
|
path='request_loan'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SendContractAgreementForm)}
|
|
headerTitle={getLangText('SEND NEW CONTRACT')}
|
|
aclName='acl_create_contractagreement' />
|
|
<Route
|
|
path='register_piece'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(IkonotvRegisterPiece)}
|
|
headerTitle={getLangText('+ NEW WORK')}
|
|
aclName='acl_wallet_submit' />
|
|
<Route
|
|
path='collection'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(IkonotvPieceList)}
|
|
headerTitle={getLangText('COLLECTION')}
|
|
disableOn='noPieces' />
|
|
<Route
|
|
path='contract_notifications'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(IkonotvContractNotifications)} />
|
|
<Route
|
|
path='pieces/:pieceId'
|
|
component={IkonotvPieceContainer} />
|
|
<Route
|
|
path='editions/:editionId'
|
|
component={EditionContainer} />
|
|
<Route
|
|
path='coa_verify'
|
|
component={CoaVerifyContainer} />
|
|
<Route
|
|
path='*'
|
|
component={ErrorNotFoundPage} />
|
|
</Route>
|
|
),
|
|
'lumenus': (
|
|
<Route path='/' component={WalletApp}>
|
|
<IndexRoute
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LumenusLanding)} />
|
|
<Route
|
|
path='login'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LoginContainer)} />
|
|
<Route
|
|
path='logout'
|
|
component={ProxyHandler(AuthRedirect({to: '/', when: 'loggedOut'}))(LogoutContainer)} />
|
|
<Route
|
|
path='signup'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(SignupContainer)} />
|
|
<Route
|
|
path='password_reset'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PasswordResetContainer)} />
|
|
<Route
|
|
path='settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SettingsContainer)} />
|
|
<Route
|
|
path='contract_settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(ContractSettings)} />
|
|
<Route
|
|
path='register_piece'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(MarketRegisterPiece)}
|
|
headerTitle={getLangText('+ NEW WORK')}
|
|
aclName='acl_wallet_submit' />
|
|
<Route
|
|
path='collection'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(MarketPieceList)}
|
|
headerTitle={getLangText('COLLECTION')}
|
|
disableOn='noPieces' />
|
|
<Route
|
|
path='pieces/:pieceId'
|
|
component={MarketPieceContainer} />
|
|
<Route
|
|
path='editions/:editionId'
|
|
component={MarketEditionContainer} />
|
|
<Route
|
|
path='coa_verify'
|
|
component={CoaVerifyContainer} />
|
|
<Route
|
|
path='*'
|
|
component={ErrorNotFoundPage} />
|
|
</Route>
|
|
),
|
|
'23vivi': (
|
|
<Route path='/' component={WalletApp}>
|
|
<IndexRoute component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(Vivi23Landing)} />
|
|
<Route
|
|
path='login'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LoginContainer)}
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='logout'
|
|
component={ProxyHandler(AuthRedirect({to: '/', when: 'loggedOut'}))(LogoutContainer)}
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='signup'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(SignupContainer)}
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='password_reset'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PasswordResetContainer)}
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SettingsContainer)}
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='contract_settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(ContractSettings)}
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='register_piece'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(MarketRegisterPiece)}
|
|
headerTitle={getLangText('+ NEW WORK')}
|
|
aclName='acl_wallet_submit'
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='collection'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(Vivi23PieceList)}
|
|
headerTitle={getLangText('COLLECTION')}
|
|
disableOn='noPieces'
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='pieces/:pieceId'
|
|
component={MarketPieceContainer}
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='editions/:editionId'
|
|
component={MarketEditionContainer}
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='coa_verify'
|
|
component={CoaVerifyContainer}
|
|
footer={MarketFooter} />
|
|
<Route
|
|
path='*'
|
|
component={ErrorNotFoundPage}
|
|
footer={MarketFooter} />
|
|
</Route>
|
|
),
|
|
'polline': (
|
|
<Route path='/' component={WalletApp}>
|
|
<IndexRoute component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PollineLanding)} />
|
|
<Route
|
|
path='login'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LoginContainer)} />
|
|
<Route
|
|
path='logout'
|
|
component={ProxyHandler(AuthRedirect({to: '/', when: 'loggedOut'}))(LogoutContainer)} />
|
|
<Route
|
|
path='signup'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(SignupContainer)} />
|
|
<Route
|
|
path='password_reset'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PasswordResetContainer)} />
|
|
<Route
|
|
path='settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SettingsContainer)} />
|
|
<Route
|
|
path='contract_settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(ContractSettings)} />
|
|
<Route
|
|
path='register_piece'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(MarketRegisterPiece)}
|
|
headerTitle={getLangText('+ NEW WORK')}
|
|
aclName='acl_wallet_submit' />
|
|
<Route
|
|
path='collection'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(MarketPieceList)}
|
|
headerTitle={getLangText('COLLECTION')}
|
|
disableOn='noPieces' />
|
|
<Route path='pieces/:pieceId' component={MarketPieceContainer} />
|
|
<Route path='editions/:editionId' component={MarketEditionContainer} />
|
|
<Route path='verify' component={CoaVerifyContainer} />
|
|
<Route path='*' component={ErrorNotFoundPage} />
|
|
</Route>
|
|
),
|
|
'artcity': (
|
|
<Route path='/' component={WalletApp}>
|
|
<IndexRoute component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(ArtcityLanding)} />
|
|
<Route
|
|
path='login'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LoginContainer)} />
|
|
<Route
|
|
path='logout'
|
|
component={ProxyHandler(AuthRedirect({to: '/', when: 'loggedOut'}))(LogoutContainer)} />
|
|
<Route
|
|
path='signup'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(SignupContainer)} />
|
|
<Route
|
|
path='password_reset'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PasswordResetContainer)} />
|
|
<Route
|
|
path='settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SettingsContainer)} />
|
|
<Route
|
|
path='contract_settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(ContractSettings)} />
|
|
<Route
|
|
path='register_piece'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(MarketRegisterPiece)}
|
|
headerTitle={getLangText('+ NEW WORK')}
|
|
aclName='acl_wallet_submit' />
|
|
<Route
|
|
path='collection'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(MarketPieceList)}
|
|
headerTitle={getLangText('COLLECTION')}
|
|
disableOn='noPieces' />
|
|
<Route path='pieces/:pieceId' component={MarketPieceContainer} />
|
|
<Route path='editions/:editionId' component={MarketEditionContainer} />
|
|
<Route path='verify' component={CoaVerifyContainer} />
|
|
<Route path='*' component={ErrorNotFoundPage} />
|
|
</Route>
|
|
),
|
|
'demo': (
|
|
<Route path='/' component={WalletApp}>
|
|
<IndexRoute component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(DemoLanding)} />
|
|
<Route
|
|
path='login'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(LoginContainer)} />
|
|
<Route
|
|
path='logout'
|
|
component={ProxyHandler(AuthRedirect({to: '/', when: 'loggedOut'}))(LogoutContainer)} />
|
|
<Route
|
|
path='signup'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(SignupContainer)} />
|
|
<Route
|
|
path='password_reset'
|
|
component={ProxyHandler(AuthRedirect({to: '/collection', when: 'loggedIn'}))(PasswordResetContainer)} />
|
|
<Route
|
|
path='settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(SettingsContainer)} />
|
|
<Route
|
|
path='contract_settings'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(ContractSettings)} />
|
|
<Route
|
|
path='register_piece'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(MarketRegisterPiece)}
|
|
headerTitle={getLangText('+ NEW WORK')}
|
|
aclName='acl_wallet_submit' />
|
|
<Route
|
|
path='collection'
|
|
component={ProxyHandler(AuthRedirect({to: '/login', when: 'loggedOut'}))(MarketPieceList)}
|
|
headerTitle={getLangText('COLLECTION')}
|
|
disableOn='noPieces' />
|
|
<Route path='pieces/:pieceId' component={MarketPieceContainer} />
|
|
<Route path='editions/:editionId' component={MarketEditionContainer} />
|
|
<Route path='verify' component={CoaVerifyContainer} />
|
|
<Route path='*' component={ErrorNotFoundPage} />
|
|
</Route>
|
|
)
|
|
};
|
|
|
|
function getRoutes(commonRoutes, subdomain) {
|
|
if(subdomain in ROUTES) {
|
|
return ROUTES[subdomain];
|
|
} else {
|
|
throw new Error('Subdomain wasn\'t specified in the wallet app.');
|
|
}
|
|
}
|
|
|
|
export default getRoutes;
|