mirror of
https://github.com/status-im/consul.git
synced 2025-02-08 11:54:12 +00:00
* Revert "feat: add alert to link to hcp modal to ask a user refresh a page; up… (#20682)" This reverts commit dd833d9a3649402e23ced070121e0d0c131f610e. * Revert "chor: change cluster name param to have datacenter.name as default value (#20644)" This reverts commit 8425cd0f9017f640cce711dc32e0fa0d136899d8. * Revert "chor: adds informative error message when acls disabled and read-only… (#20600)" This reverts commit 9d712ccfc7a67193423f1a102ac2b9d3c6dc3733. * Revert "Cc 7147 link to hcp modal (#20474)" This reverts commit 8c05e57ac1fdc27ea74040e2dfc35192ac6d067b. * Revert "Add nav bar item to show HCP link status and encourage folks to link (#20370)" This reverts commit 22e6ce0df10091bc66ee7fbf8e5d1c0f158ab5a9. * Revert "Cc 7145 hcp link status api (#20330)" This reverts commit 049ca102c41fbf646b07e34f5f69f652de9fbc6c. * Revert "💜 Cc 7187/purple banner for linking existing clusters (#20275)" This reverts commit 5119667cd16c527af111c339594a08354b7a5cb0.
83 lines
3.0 KiB
JavaScript
83 lines
3.0 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { inject as service } from '@ember/service';
|
|
import Controller from '@ember/controller';
|
|
import { getOwner } from '@ember/application';
|
|
import { get, action } from '@ember/object';
|
|
import transitionable from 'consul-ui/utils/routing/transitionable';
|
|
|
|
export default class ApplicationController extends Controller {
|
|
@service('router') router;
|
|
@service('store') store;
|
|
@service('feedback') feedback;
|
|
|
|
// TODO: We currently do this in the controller instead of the router
|
|
// as the nspace and dc variables aren't available directly on the Route
|
|
// look to see if we can move this up there so we can empty the Controller
|
|
// out again
|
|
@action
|
|
reauthorize(e) {
|
|
// TODO: For the moment e isn't a real event
|
|
// it has data which is potentially the token
|
|
// and type which is the logout/authorize/use action
|
|
// used for the feedback service.
|
|
this.feedback.execute(
|
|
() => {
|
|
// TODO: Currently we clear cache from the ember-data store
|
|
// ideally this would be a static method of the abstract Repository class
|
|
// once we move to proper classes for services take another look at this.
|
|
this.store.invalidate();
|
|
//
|
|
const params = {};
|
|
if (e.data) {
|
|
const token = e.data;
|
|
// TODO: Do I actually need to check to see if nspaces are enabled here?
|
|
if (typeof this.nspace !== 'undefined') {
|
|
const nspace = get(token, 'Namespace') || this.nspace.Name;
|
|
// you potentially have a new namespace
|
|
// if you do redirect to it
|
|
if (nspace !== this.nspace.Name) {
|
|
params.nspace = `${nspace}`;
|
|
}
|
|
}
|
|
}
|
|
const container = getOwner(this);
|
|
const routeName = this.router.currentRoute.name;
|
|
const route = container.lookup(`route:${routeName}`);
|
|
// Refresh the application route as everything including the main nav needs refreshing
|
|
return container
|
|
.lookup('route:application')
|
|
.refresh()
|
|
.promise.catch(function (e) {
|
|
// passthrough
|
|
// if you are on an error page a refresh of the application route will reject
|
|
// thats ok as we then transition to the actual route you were trying
|
|
// to get to originally anyway
|
|
})
|
|
.then((res) => {
|
|
// Use transitionable if we need to change a section of the URL
|
|
// or routeName and currentRouteName aren't equal (i.e. error page)
|
|
if (
|
|
routeName !== this.router.currentRouteName ||
|
|
typeof params.nspace !== 'undefined'
|
|
) {
|
|
return route.transitionTo(
|
|
...transitionable(this.router.currentRoute, params, container)
|
|
);
|
|
} else {
|
|
return res;
|
|
}
|
|
});
|
|
},
|
|
e.type,
|
|
function (type, e) {
|
|
return type;
|
|
},
|
|
{}
|
|
);
|
|
}
|
|
}
|