-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathroutes.js
More file actions
81 lines (79 loc) · 3.02 KB
/
Copy pathroutes.js
File metadata and controls
81 lines (79 loc) · 3.02 KB
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
define(
(require, factory) => {
const { AuthorizedRoute } = require('pages/Route');
const sharedState = require('atlas-state');
function routes(router) {
return {
'/cohortdefinitions': new AuthorizedRoute(() => {
require([
'./cohort-definitions',
'./cohort-definition-manager',
'components/cohort-definition-browser',
], function () {
router.setCurrentView('cohort-definitions');
});
}),
'/cohortdefinition/:cohortDefinitionId/conceptsets/:conceptSetId/:mode': new AuthorizedRoute((cohortDefinitionId, conceptSetId, mode) => {
require([
'components/cohortbuilder/CohortDefinition',
'components/atlas.cohort-editor',
'./cohort-definitions',
'./cohort-definition-manager',
'components/cohort-definition-browser',
'conceptset-editor',
'./components/reporting/cost-utilization/report-manager',
'explore-cohort',
], function () {
sharedState.CohortDefinition.mode('conceptsets');
sharedState.ConceptSet.source('cohort');
router.setCurrentView('cohort-definition-manager', {
cohortDefinitionId,
mode: 'conceptsets',
conceptSetId,
});
});
}),
'/cohortdefinition/:cohortDefinitionId:/?((\w|.)*)': new AuthorizedRoute((cohortDefinitionId, path = 'definition') => {
require([
'components/cohortbuilder/CohortDefinition',
'components/atlas.cohort-editor',
'./cohort-definitions',
'./cohort-definition-manager',
'components/cohort-definition-browser',
'conceptset-editor',
'./components/reporting/cost-utilization/report-manager',
'explore-cohort',
'conceptset-list-modal',
], function () {
// Determine the view to show on the cohort manager screen based on the path
path = path.split("/");
let view = 'definition';
if (path.length > 0 && path[0] != "") {
view = path[0];
}
// Determine any optional parameters to set based on the query string
qs = router.qs(); // Get the query string parameters
var sourceKey = qs.sourceKey || null;
router.setCurrentView('cohort-definition-manager', {
cohortDefinitionId,
mode: view,
sourceKey,
});
sharedState.ConceptSet.source('cohort');
sharedState.CohortDefinition.mode(view);
});
}),
'/reports': new AuthorizedRoute(() => {
require([
'./components/reporting/cost-utilization/report-manager',
'./cohort-definition-manager',
'components/cohort-definition-browser',
], function () {
router.setCurrentView('report-manager');
});
}),
};
}
return routes;
}
);