Files
mattermost/webapp/routes/route_root.jsx
Joram Wilander 1138dd6770 PLT-6657 Move system console to use v4 endpoints and redux (#6572)
* Move system console to use v4 endpoints and redux

* Rename logs dir to get past gitignore

* Fix test email

* Update brand unit test

* Updates per feedback
2017-06-14 08:56:56 -04:00

182 lines
8.2 KiB
JavaScript

// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import * as RouteUtils from 'routes/route_utils.jsx';
import Root from 'components/root.jsx';
import claimAccountRoute from 'routes/route_claim.jsx';
import mfaRoute from 'routes/route_mfa.jsx';
import createTeamRoute from 'routes/route_create_team.jsx';
import teamRoute from 'routes/route_team.jsx';
import helpRoute from 'routes/route_help.jsx';
import BrowserStore from 'stores/browser_store.jsx';
import ErrorStore from 'stores/error_store.jsx';
import * as UserAgent from 'utils/user_agent.jsx';
import {browserHistory} from 'react-router/es6';
function preLogin(nextState, replace, callback) {
// redirect to the mobile landing page if the user hasn't seen it before
if (window.mm_config.IosAppDownloadLink && UserAgent.isIosWeb() && !BrowserStore.hasSeenLandingPage()) {
replace('/get_ios_app');
BrowserStore.setLandingPageSeen(true);
} else if (window.mm_config.AndroidAppDownloadLink && UserAgent.isAndroidWeb() && !BrowserStore.hasSeenLandingPage()) {
replace('/get_android_app');
BrowserStore.setLandingPageSeen(true);
}
callback();
}
function preLoggedIn(nextState, replace, callback) {
if (RouteUtils.checkIfMFARequired(nextState)) {
browserHistory.push('/mfa/setup');
return;
}
ErrorStore.clearLastError();
callback();
}
export default {
path: '/',
component: Root,
getChildRoutes: RouteUtils.createGetChildComponentsFunction(
[
{
getComponents: (location, callback) => {
System.import('components/header_footer_template.jsx').then(RouteUtils.importComponentSuccess(callback));
},
getChildRoutes: RouteUtils.createGetChildComponentsFunction(
[
{
path: 'login',
onEnter: preLogin,
getComponents: (location, callback) => {
System.import('components/login/login_controller.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'reset_password',
getComponents: (location, callback) => {
System.import('components/password_reset_send_link.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'reset_password_complete',
getComponents: (location, callback) => {
System.import('components/password_reset_form.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
claimAccountRoute,
{
path: 'signup_user_complete',
getComponents: (location, callback) => {
System.import('components/signup/signup_controller.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'signup_email',
getComponents: (location, callback) => {
System.import('components/signup/components/signup_email.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'signup_ldap',
getComponents: (location, callback) => {
System.import('components/signup/components/signup_ldap.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'should_verify_email',
getComponents: (location, callback) => {
System.import('components/should_verify_email.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'do_verify_email',
getComponents: (location, callback) => {
System.import('components/do_verify_email.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
helpRoute
]
)
},
{
path: 'get_ios_app',
getComponents: (location, callback) => {
System.import('components/get_ios_app/get_ios_app.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'get_android_app',
getComponents: (location, callback) => {
System.import('components/get_android_app/get_android_app.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: 'error',
getComponents: (location, callback) => {
System.import('components/error_page.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
{
getComponents: (location, callback) => {
System.import('components/logged_in.jsx').then(RouteUtils.importComponentSuccess(callback));
},
onEnter: preLoggedIn,
getChildRoutes: RouteUtils.createGetChildComponentsFunction(
[
{
path: 'admin_console',
getComponents: (location, callback) => {
System.import('components/admin_console').then(RouteUtils.importComponentSuccess(callback));
},
indexRoute: {onEnter: (nextState, replace) => replace('/admin_console/system_analytics')},
getChildRoutes: (location, callback) => {
System.import('routes/route_admin_console.jsx').then((comp) => callback(null, comp.default));
}
},
{
getComponents: (location, callback) => {
System.import('components/header_footer_template.jsx').then(RouteUtils.importComponentSuccess(callback));
},
getChildRoutes: RouteUtils.createGetChildComponentsFunction(
[
{
path: 'select_team',
getComponents: (location, callback) => {
System.import('components/select_team').then(RouteUtils.importComponentSuccess(callback));
}
},
{
path: '*authorize',
getComponents: (location, callback) => {
System.import('components/authorize.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
createTeamRoute
]
)
},
teamRoute,
mfaRoute
]
)
},
{
path: '*',
onEnter: (nextState, replace) => {
replace({
pathname: 'error',
query: RouteUtils.notFoundParams
});
}
}
]
)
};