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
|
// Copyright (c) 2016 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 createTeamRoute from 'routes/route_create_team.jsx';
import teamRoute from 'routes/route_team.jsx';
import ErrorStore from 'stores/error_store.jsx';
function preLoggedIn(nextState, replace, callback) {
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',
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_user_complete.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));
}
}
]
)
},
{
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/admin_console.jsx').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/select_team.jsx').then(RouteUtils.importComponentSuccess(callback));
}
},
createTeamRoute
]
)
},
teamRoute
]
)
},
{
path: '*',
onEnter: (nextState, replace) => {
replace({
pathname: 'error',
query: RouteUtils.notFoundParams
});
}
}
]
)
};
|