forked from cBioPortal/cbioportal-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroutes.tsx
executable file
·504 lines (476 loc) · 17.9 KB
/
routes.tsx
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
import React, { FunctionComponent, useEffect } from 'react';
import { Route, Redirect, Switch } from 'react-router-dom';
import { inject } from 'mobx-react';
import Container from 'appShell/App/Container';
import {
handleIndexDO,
handleCaseDO,
restoreRouteAfterRedirect,
handleStudyDO,
handleLinkOut,
handleEncodedRedirect,
redirectTo,
} from './shared/lib/redirectHelpers';
import PageNotFound from './shared/components/pageNotFound/PageNotFound';
import { parse } from 'qs';
import _ from 'lodash';
/* HOW TO ADD A NEW ROUTE
* 1. Import the "page" component using SuspenseWrapper and React.lazy as seen in imports below
* 2. Add a Route element with `component` prop set to the component, wrapped in LocationValidationWrapper
* which validates the parameters of a page and goes to an error page if it fails. Other wrappers like
* ScrollToTop modify the page in other ways and may also be used here.
*/
// import page components here
// NOTE: to lazy load these, we use the bundle loader. what we are importing are not the components but loaders
// which are invoked at run time by the routes
// webpack knows to 'split' the code into seperate bundles accordingly
// see article http://henleyedition.com/implicit-code-splitting-with-react-router-and-webpack/
const PatientViewPage = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/patientView/PatientViewPage'))
);
const ResultsViewPage = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/resultsView/ResultsViewPage'))
);
import TestimonialsPage from 'pages/staticPages/testimonialsPage/TestimonialsPage';
import GroupComparisonLoading from './pages/groupComparison/GroupComparisonLoading';
const DatasetPage = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/staticPages/datasetView/DatasetPage'))
);
const Homepage = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/home/HomePage'))
);
const StudyViewPage = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/studyView/StudyViewPage'))
);
const MutationMapperTool = SuspenseWrapper(
React.lazy(() =>
// @ts-ignore
import('./pages/staticPages/tools/mutationMapper/MutationMapperTool')
)
);
const OncoprinterTool = SuspenseWrapper(
React.lazy(() =>
// @ts-ignore
import('./pages/staticPages/tools/oncoprinter/OncoprinterTool')
)
);
const Visualize = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/staticPages/visualize/Visualize'))
);
const InstallationMap = SuspenseWrapper(
React.lazy(() =>
// @ts-ignore
import('./pages/staticPages/installations/InstallationMap')
)
);
const Software = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/staticPages/software/Software'))
);
const GroupComparisonPage = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/groupComparison/GroupComparisonPage'))
);
const ErrorPage = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/resultsView/ErrorPage'))
);
const WebAPIPage = SuspenseWrapper(
// @ts-ignore
React.lazy(() => import('./pages/staticPages/webAPI/WebAPIPage'))
);
import $ from 'jquery';
import { getBrowserWindow } from 'cbioportal-frontend-commons';
import { seekUrlHash } from 'shared/lib/seekUrlHash';
import { PagePath } from 'shared/enums/PagePaths';
import {
LegacyResultsViewComparisonSubTab,
ResultsViewComparisonSubTab,
ResultsViewTab,
} from 'pages/resultsView/ResultsViewPageHelpers';
import {
StudyViewPageTabKeyEnum,
StudyViewResourceTabPrefix,
} from 'pages/studyView/StudyViewPageTabs';
import {
PatientViewPageTabs,
PatientViewResourceTabPrefix,
} from 'pages/patientView/PatientViewPageTabs';
import { GroupComparisonTab } from 'pages/groupComparison/GroupComparisonTabs';
import { CLIN_ATTR_DATA_TYPE } from 'shared/components/plots/PlotsTabUtils';
import { SpecialAttribute } from 'shared/cache/ClinicalDataCache';
import { AlterationTypeConstants } from 'shared/constants';
import {
cnaGroup,
mutationGroup,
} from 'shared/lib/comparison/ComparisonStoreUtils';
import { MapValues } from 'shared/lib/TypeScriptUtils';
import { ResultsViewURLQuery } from 'pages/resultsView/ResultsViewURLWrapper';
import { EnumDeclaration, EnumType } from 'typescript';
function SuspenseWrapper(Component: any) {
return (props: any) => (
<React.Suspense fallback={null}>
<Component {...props} />
</React.Suspense>
);
}
function LocationValidationWrapper(
Component: any,
validator: (params: any) => boolean,
queryParamsAdjuster?: (oldParams: any) => any | undefined
) {
return (props: any) => {
if (props.location) {
if (queryParamsAdjuster) {
const query = parse(props.location.search, {
depth: 0,
ignoreQueryPrefix: true,
});
const adjustedQuery = queryParamsAdjuster(query);
if (adjustedQuery) {
// redirect to adjusted query if there's a change
const RedirectingBlankPage = getBlankPage(() => {
redirectTo(adjustedQuery, props.location.pathname);
});
return <RedirectingBlankPage />;
}
}
if (
!(
validator(props.match.params) ||
customTabParamValidator(props.location)
)
) {
return <ErrorPage {...props} />;
}
}
return <Component {...props} />;
};
}
function ResultsViewQueryParamsAdjuster(oldParams: ResultsViewURLQuery) {
let changeMade = false;
const newParams = _.cloneDeep(oldParams);
if (
newParams.comparison_subtab ===
LegacyResultsViewComparisonSubTab.MUTATIONS
) {
newParams.comparison_subtab = ResultsViewComparisonSubTab.ALTERATIONS;
newParams.comparison_selectedEnrichmentEventTypes = JSON.stringify([
...mutationGroup,
]);
changeMade = true;
} else if (
newParams.comparison_subtab === LegacyResultsViewComparisonSubTab.CNA
) {
newParams.comparison_subtab = ResultsViewComparisonSubTab.ALTERATIONS;
newParams.comparison_selectedEnrichmentEventTypes = JSON.stringify([
...cnaGroup,
]);
changeMade = true;
}
// we used to call the structural variant alteration class "fusions"
// we have generalized it to structural variants
const profileRegex = /fusion/;
if (profileRegex.test(oldParams.profileFilter)) {
newParams.profileFilter = oldParams.profileFilter.replace(
profileRegex,
'structural_variants'
);
changeMade = true;
}
if (changeMade) {
return newParams;
} else {
return undefined;
}
}
function ScrollToTop(Component: any, onLoad = () => {}) {
return (props: any) => {
useEffect(() => {
$(document).scrollTop(0);
onLoad();
}, []);
return <Component {...props} />;
};
}
function GoToHashLink(Component: any) {
return (props: any) => {
useEffect(handleEnter, []);
return <Component {...props} />;
};
}
/**
* Validates that the parameters either do not have
* a tab parameter, or have a parameter that matches a
* value in `tabEnum`
* @param tabEnum a TypeScript string enum
*/
function tabParamValidator(tabEnum: any) {
return function(params: any) {
return !params.tab || Object.values(tabEnum).indexOf(params.tab) > -1;
};
}
function comparisonTabParamValidator() {
// comparison tab includes generic assay tabs which is not predictable
// validate tabs by checking it's degined in GroupComparisonTab
// or validate generic assay tabs by checking if it starts with GroupComparisonTab.GENERIC_ASSAY_PREFIX
return function(params: any) {
return (
!params.tab ||
Object.values(GroupComparisonTab).indexOf(params.tab) > -1 ||
params.tab.startsWith(GroupComparisonTab.GENERIC_ASSAY_PREFIX)
);
};
}
/**
* Validates results page and patient page custom tabs
* @param location
*/
function customTabParamValidator(location: Location) {
const patientViewResourceTabRegex = new RegExp(
`patient\/${PatientViewResourceTabPrefix}.+`
);
const studyViewResourceTabRegex = new RegExp(
`study\/${StudyViewResourceTabPrefix}.+`
);
const customTabRegex = /.+\/customTab\d/;
return (
patientViewResourceTabRegex.test(location.pathname) ||
studyViewResourceTabRegex.test(location.pathname) ||
customTabRegex.test(location.pathname)
);
}
var restoreRoute = inject('routing')(restoreRouteAfterRedirect);
let getBlankPage = function(onLoad: any) {
return (props: any) => {
if (onLoad) {
useEffect(() => {
onLoad();
// make sure that useEffect argument doesn't return anything
}, []);
}
return <div />;
};
};
let redirectToNews: FunctionComponent<any> = function() {
getBrowserWindow().location = 'https://docs.cbioportal.org/news';
return null;
};
const externalRedirect = function(url: string) {
let redirectComp: FunctionComponent<{}> = function() {
getBrowserWindow().location = url;
return null;
};
return redirectComp;
};
/* when route changes, we want to:
1. in spa, deep links from url (#) don't work because content is loading and thus doesn't exist to link to
at time url changes. seekHash is a somewhat dirty way of solving this issue
2, when there's no hash, we want to make sure we scroll to top because user considers herself on a "new page"
*/
function handleEnter() {
const hash = getBrowserWindow().location.hash;
if (hash.length > 0) {
seekUrlHash(hash.replace('#', ''));
} else {
$(document).scrollTop(0);
}
}
// we want to preload ResultsViewPage to prevent delay due to lazy loading bundle
// note: because we bundle, and bundles are loaded async, this does NOT affect time to render of default route
// results will load in background while user plays with query interface
function preloadImportantComponents() {
setTimeout(() => {
//@ts-ignore
import('./pages/resultsView/ResultsViewPage');
//@ts-ignore
import('./pages/studyView/StudyViewPage');
}, 2000);
}
export const makeRoutes = () => {
return (
<React.Suspense fallback={null}>
<Switch>
<Route
exact
path={'/'}
component={ScrollToTop(
Homepage,
preloadImportantComponents
)}
/>
<Route path="/restore" component={ScrollToTop(restoreRoute)} />
<Route
path="/loading/comparison"
component={ScrollToTop(GroupComparisonLoading)}
/>
{/* Redirect legacy survival route directly to survival tab in comparison */}
<Route
path={`/results/${ResultsViewTab.SURVIVAL_REDIRECT}`}
component={getBlankPage(() => {
redirectTo(
{ comparison_subtab: 'survival' },
'/results/comparison'
);
})}
/>
{/* Redirect legacy expression route directly to plots tab with mrna vs study */}
<Route
path={`/results/${ResultsViewTab.EXPRESSION_REDIRECT}`}
component={getBlankPage(() => {
redirectTo(
{
plots_horz_selection: JSON.stringify({
dataType: CLIN_ATTR_DATA_TYPE,
selectedDataSourceOption:
SpecialAttribute.StudyOfOrigin,
}),
plots_vert_selection: JSON.stringify({
dataType:
AlterationTypeConstants.MRNA_EXPRESSION,
logScale: 'true',
}),
},
`/results/${ResultsViewTab.PLOTS}`
);
})}
/>
{/* Redirect legacy enrichments route directly to mutations tab in comparison */}
<Route
path="/results/enrichments"
component={getBlankPage(() => {
redirectTo(
{ comparison_subtab: 'mutations' },
'/results/comparison'
);
})}
/>
<Route
path="/results/:tab?"
component={LocationValidationWrapper(
ResultsViewPage,
tabParamValidator(ResultsViewTab),
ResultsViewQueryParamsAdjuster
)}
/>
<Route
path={'/' + PagePath.Patient + '/:tab?'}
component={ScrollToTop(
LocationValidationWrapper(
PatientViewPage,
tabParamValidator(PatientViewPageTabs)
)
)}
/>
<Route
path={'/' + PagePath.Study + '/:tab?'}
component={ScrollToTop(
LocationValidationWrapper(
StudyViewPage,
tabParamValidator(StudyViewPageTabKeyEnum)
)
)}
/>
<Route
path="/comparison/:tab?"
component={ScrollToTop(
LocationValidationWrapper(
GroupComparisonPage,
comparisonTabParamValidator()
)
)}
/>
<Route path="/webAPI" component={GoToHashLink(WebAPIPage)} />
<Route path="/mutation_mapper" component={MutationMapperTool} />
<Route path="/oncoprinter" component={OncoprinterTool} />
<Route path="/datasets" component={ScrollToTop(DatasetPage)} />
<Route path="/installations" component={InstallationMap} />
<Route path="/visualize" component={ScrollToTop(Visualize)} />
<Route path="/software" component={ScrollToTop(Software)} />
// legacy pages redirect to docs site
<Route
path="/tutorials"
component={externalRedirect(
'https://docs.cbioportal.org/user-guide/overview/#tutorial-slides'
)}
/>
<Route
path="/rmatlab"
component={externalRedirect(
'https://docs.cbioportal.org/web-api-and-clients/#r-client'
)}
/>
<Route
path="/about"
component={externalRedirect(
'https://docs.cbioportal.org/about-us/'
)}
/>
<Route
path="/news"
component={externalRedirect(
'https://docs.cbioportal.org/news'
)}
/>
<Route
path="/faq"
component={externalRedirect(
'https://docs.cbioportal.org/user-guide/faq/'
)}
/>
<Route
path="/oql"
component={externalRedirect(
'https://docs.cbioportal.org/user-guide/by-page/#oql'
)}
/>
<Route
path="/testimonials"
component={ScrollToTop(TestimonialsPage)}
/>
<Route path="/case.do" component={getBlankPage(handleCaseDO)} />
<Route
path="/index.do"
component={getBlankPage(handleIndexDO)}
/>
<Route
path="/study.do"
component={getBlankPage(handleStudyDO)}
/>
<Route path="/ln" component={getBlankPage(handleLinkOut)} />
<Route
path="/link.do"
component={getBlankPage(handleLinkOut)}
/>
<Route
path="/encodedRedirect"
component={getBlankPage(handleEncodedRedirect)}
/>
<Redirect
path={'/mutation_mapper.jsp'}
to={'/mutation_mapper'}
/>
<Redirect path={'/data_sets.jsp'} to={'/datasets'} />
<Redirect path={'/oncoprinter.jsp'} to={'/oncoprinter'} />
<Redirect path={'/onco_query_lang_desc.jsp'} to={'/oql'} />
<Redirect path={'/tools.jsp'} to={'/visualize'} />
<Redirect path={'/tutorials.jsp'} to={'/tutorials'} />
<Redirect path={'/tutorial.jsp'} to={'/tutorials'} />
<Redirect path={'/cgds_r.jsp'} to={'/rmatlab'} />
<Route
path="*"
component={ScrollToTop(() => (
<PageNotFound />
))}
/>
</Switch>
</React.Suspense>
);
};
export default makeRoutes;