1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
// 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
});
}
}
]
)
};
|