summaryrefslogtreecommitdiffstats
path: root/webapp/routes/route_root.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/routes/route_root.jsx')
-rw-r--r--webapp/routes/route_root.jsx181
1 files changed, 0 insertions, 181 deletions
diff --git a/webapp/routes/route_root.jsx b/webapp/routes/route_root.jsx
deleted file mode 100644
index 8a1f440be..000000000
--- a/webapp/routes/route_root.jsx
+++ /dev/null
@@ -1,181 +0,0 @@
-// 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').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
- });
- }
- }
- ]
- )
-};