-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathapplication.js
72 lines (62 loc) · 2.1 KB
/
application.js
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
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import { service } from '@ember/service';
import Route from '@ember/routing/route';
import ControlGroupError from 'vault/lib/control-group-error';
import { action } from '@ember/object';
export default class ApplicationRoute extends Route {
@service controlGroup;
@service('router') routing;
@service('namespace') namespaceService;
@service('flags') flagsService;
@action
willTransition() {
window.scrollTo(0, 0);
}
@action
error(error, transition) {
const controlGroup = this.controlGroup;
if (error instanceof ControlGroupError) {
return controlGroup.handleError(error);
}
if (error.path === '/v1/sys/wrapping/unwrap') {
controlGroup.unmarkTokenForUnwrap();
}
const router = this.routing;
//FIXME transition.intent likely needs to be replaced
let errorURL = transition.intent.url;
const { name, contexts, queryParams } = transition.intent;
// If the transition is internal to Ember, we need to generate the URL
// from the route parameters ourselves
if (!errorURL) {
try {
errorURL = router.urlFor(name, ...(contexts || []), { queryParams });
} catch (e) {
// If this fails, something weird is happening with URL transitions
errorURL = null;
}
}
// because we're using rootURL, we need to trim this from the front to get
// the ember-routeable url
if (errorURL) {
errorURL = errorURL.replace('/ui', '');
}
error.errorURL = errorURL;
// if we have queryParams, update the namespace so that the observer can fire on the controller
if (queryParams) {
/* eslint-disable-next-line ember/no-controller-access-in-routes */
this.controllerFor('vault.cluster').set('namespaceQueryParam', queryParams.namespace || '');
}
// Assuming we have a URL, push it into browser history and update the
// location bar for the user
if (errorURL) {
router.location.setURL(errorURL);
}
return true;
}
beforeModel() {
return this.flagsService.fetchFeatureFlags();
}
}