2015-08-11 13:10:15 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
2015-10-01 15:57:46 +02:00
|
|
|
import { Route, IndexRoute } from 'react-router';
|
2015-08-11 13:10:15 +02:00
|
|
|
|
2015-08-12 09:30:24 +02:00
|
|
|
// general components
|
2015-09-25 11:50:55 +02:00
|
|
|
import CoaVerifyContainer from '../../../components/coa_verify_container';
|
2015-08-11 14:47:28 +02:00
|
|
|
import LoginContainer from '../../../components/login_container';
|
2015-08-11 13:10:15 +02:00
|
|
|
import LogoutContainer from '../../../components/logout_container';
|
2015-08-11 14:47:28 +02:00
|
|
|
import SignupContainer from '../../../components/signup_container';
|
2015-08-11 13:10:15 +02:00
|
|
|
import PasswordResetContainer from '../../../components/password_reset_container';
|
2015-08-11 14:47:28 +02:00
|
|
|
import PieceList from '../../../components/piece_list';
|
|
|
|
import PieceContainer from '../../../components/ascribe_detail/piece_container';
|
|
|
|
import EditionContainer from '../../../components/ascribe_detail/edition_container';
|
2015-08-31 16:36:24 +02:00
|
|
|
import SettingsContainer from '../../../components/ascribe_settings/settings_container';
|
2015-09-23 15:16:46 +02:00
|
|
|
import ContractSettings from '../../../components/ascribe_settings/contract_settings';
|
2015-09-29 16:00:58 +02:00
|
|
|
import ErrorNotFoundPage from '../../../components/error_not_found_page';
|
2015-08-11 13:10:15 +02:00
|
|
|
|
2015-08-19 09:31:36 +02:00
|
|
|
import CylandLanding from './components/cyland/cyland_landing';
|
2015-08-17 20:52:36 +02:00
|
|
|
import CylandPieceContainer from './components/cyland/ascribe_detail/cyland_piece_container';
|
2015-08-12 09:30:24 +02:00
|
|
|
import CylandRegisterPiece from './components/cyland/cyland_register_piece';
|
2015-08-17 20:52:36 +02:00
|
|
|
import CylandPieceList from './components/cyland/cyland_piece_list';
|
|
|
|
|
2015-09-16 18:31:46 +02:00
|
|
|
import IkonotvLanding from './components/ikonotv/ikonotv_landing';
|
2015-08-18 12:36:38 +02:00
|
|
|
import IkonotvPieceList from './components/ikonotv/ikonotv_piece_list';
|
2015-10-01 15:57:46 +02:00
|
|
|
import ContractAgreementForm from '../../../components/ascribe_forms/form_contract_agreement';
|
2015-09-15 13:15:29 +02:00
|
|
|
import IkonotvRegisterPiece from './components/ikonotv/ikonotv_register_piece';
|
2015-08-28 12:33:00 +02:00
|
|
|
import IkonotvPieceContainer from './components/ikonotv/ascribe_detail/ikonotv_piece_container';
|
2015-09-04 11:49:55 +02:00
|
|
|
import IkonotvContractNotifications from './components/ikonotv/ikonotv_contract_notifications';
|
2015-08-18 12:36:38 +02:00
|
|
|
|
2015-08-12 09:30:24 +02:00
|
|
|
import CCRegisterPiece from './components/cc/cc_register_piece';
|
2015-08-11 17:40:26 +02:00
|
|
|
|
2015-08-11 14:47:28 +02:00
|
|
|
import WalletApp from './wallet_app';
|
2015-08-11 13:10:15 +02:00
|
|
|
import AppConstants from '../../../constants/application_constants';
|
|
|
|
|
|
|
|
|
2015-09-30 17:09:46 +02:00
|
|
|
let baseUrl = AppConstants.baseUrl;
|
2015-08-11 13:10:15 +02:00
|
|
|
|
2015-08-11 17:40:26 +02:00
|
|
|
let ROUTES = {
|
|
|
|
'cyland': (
|
2015-09-30 17:09:46 +02:00
|
|
|
<Route path={baseUrl} component={WalletApp}>
|
2015-10-01 15:57:46 +02:00
|
|
|
<IndexRoute component={CylandLanding} />
|
2015-09-30 17:09:46 +02:00
|
|
|
<Route path="login" component={LoginContainer} />
|
|
|
|
<Route path="logout" component={LogoutContainer} />
|
|
|
|
<Route path="signup" component={SignupContainer} />
|
|
|
|
<Route path="password_reset" component={PasswordResetContainer} />
|
|
|
|
<Route path="register_piece" component={CylandRegisterPiece} headerTitle="+ NEW WORK" />
|
|
|
|
<Route path="collection" component={CylandPieceList} headerTitle="COLLECTION" />
|
|
|
|
<Route path="pieces/:pieceId" component={CylandPieceContainer} />
|
|
|
|
<Route path="editions/:editionId" component={EditionContainer} />
|
|
|
|
<Route path="verify" component={CoaVerifyContainer} />
|
|
|
|
<Route path="settings" component={SettingsContainer} />
|
|
|
|
<Route path="contract_settings" component={ContractSettings} />
|
|
|
|
<Route path="*" component={ErrorNotFoundPage} />
|
2015-08-11 13:10:15 +02:00
|
|
|
</Route>
|
2015-08-11 17:40:26 +02:00
|
|
|
),
|
|
|
|
'cc': (
|
2015-09-30 17:09:46 +02:00
|
|
|
<Route path={baseUrl} component={WalletApp}>
|
|
|
|
<Route path="login" component={LoginContainer} />
|
|
|
|
<Route path="logout" component={LogoutContainer} />
|
|
|
|
<Route path="signup" component={SignupContainer} />
|
|
|
|
<Route path="password_reset" component={PasswordResetContainer} />
|
|
|
|
<Route path="register_piece" component={CCRegisterPiece} headerTitle="+ NEW WORK" />
|
|
|
|
<Route path="collection" component={PieceList} headerTitle="COLLECTION" />
|
|
|
|
<Route path="pieces/:pieceId" component={PieceContainer} />
|
|
|
|
<Route path="editions/:editionId" component={EditionContainer} />
|
|
|
|
<Route path="verify" component={CoaVerifyContainer} />
|
|
|
|
<Route path="settings" component={SettingsContainer} />
|
|
|
|
<Route path="*" component={ErrorNotFoundPage} />
|
2015-08-11 17:40:26 +02:00
|
|
|
</Route>
|
2015-08-18 12:08:01 +02:00
|
|
|
),
|
|
|
|
'ikonotv': (
|
2015-09-30 17:09:46 +02:00
|
|
|
<Route path={baseUrl} component={WalletApp}>
|
2015-10-01 15:57:46 +02:00
|
|
|
<IndexRoute component={IkonotvLanding} />
|
2015-09-30 17:09:46 +02:00
|
|
|
<Route path="login" component={LoginContainer} />
|
|
|
|
<Route path="logout" component={LogoutContainer} />
|
|
|
|
<Route path="signup" component={SignupContainer} />
|
|
|
|
<Route path="password_reset" component={PasswordResetContainer} />
|
2015-10-01 15:57:46 +02:00
|
|
|
<Route path="request_loan" component={ContractAgreementForm} headerTitle="SEND NEW CONTRACT" aclName="acl_create_contractagreement" />
|
2015-09-30 17:09:46 +02:00
|
|
|
<Route path="register_piece" component={IkonotvRegisterPiece} headerTitle="+ NEW WORK" aclName="acl_create_piece"/>
|
|
|
|
<Route path="collection" component={IkonotvPieceList} headerTitle="COLLECTION"/>
|
|
|
|
<Route path="pieces/:pieceId" component={IkonotvPieceContainer} />
|
|
|
|
<Route path="editions/:editionId" component={EditionContainer} />
|
|
|
|
<Route path="verify" component={CoaVerifyContainer} />
|
|
|
|
<Route path="settings" component={SettingsContainer} />
|
|
|
|
<Route path="contract_settings" component={ContractSettings} />
|
|
|
|
<Route path="contract_notifications" component={IkonotvContractNotifications} />
|
|
|
|
<Route path="*" component={ErrorNotFoundPage} />
|
2015-08-18 12:08:01 +02:00
|
|
|
</Route>
|
2015-08-11 17:40:26 +02:00
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function getRoutes(commonRoutes, subdomain) {
|
|
|
|
if(subdomain in ROUTES) {
|
|
|
|
return ROUTES[subdomain];
|
|
|
|
} else {
|
|
|
|
throw new Error('Subdomain wasn\'t specified in the wallet app.');
|
|
|
|
}
|
2015-08-11 13:10:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default getRoutes;
|