mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
d1dfdbdbec
Unfortunately webpack doesn’t understand jsnext:main declarations yet, so we have to do this ourselves by using react-router’s es6 build
23 lines
631 B
JavaScript
23 lines
631 B
JavaScript
import React from 'react';
|
|
import Redirect from 'react-router/es6/Redirect';
|
|
|
|
import Routes from './routes';
|
|
|
|
import ApiUrls from './constants/api_urls';
|
|
|
|
|
|
function resolve({ subdomain, type }) {
|
|
if (type === 'wallet') {
|
|
return System.import('./components/whitelabel/wallet/wallet_app_resolver')
|
|
.then(({ default: WalletAppResolver }) => WalletAppResolver.resolve(subdomain));
|
|
} else {
|
|
return Promise.resolve({
|
|
apiUrls: ApiUrls,
|
|
redirectRoute: (<Redirect from="/" to="/collection" />),
|
|
routes: Routes
|
|
});
|
|
}
|
|
}
|
|
|
|
export default { resolve };
|