Files
vault/ui/lib/core/addon/helpers/is-active-route.js
claire bontempo 918642bd9c UI: Ember deprecation prep for 5.0: ember-data:deprecate-array-like (#26170)
* remove .get() from cluster and vault route

* replace .get() use in adapters

* remove .get() from components part 1

* remove .get() from string-list

* remaining components

* controller .get() removal

* remove .get() use in mixins

* routes/cluster/access* .get() replacement

* policy index route

* routes/secrets/backend*

* route/cluster*

* serializers

* is-active-route

* remaining top-level addon gets

* replication get()

* revery change that broke things

* woops, revert other store service change

* revert some controller changes

* revert get on URLSearchParams class

* remove .sortBy ember method

* small cleanup items

* small cleanups from PR review
2024-03-28 12:13:33 -07:00

42 lines
1.2 KiB
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
/* eslint-disable ember/no-observers */
import { service } from '@ember/service';
import { isArray } from '@ember/array';
import Helper from '@ember/component/helper';
import { observer } from '@ember/object';
const exact = (a, b) => a === b;
const startsWith = (a, b) => a.indexOf(b) === 0;
export default Helper.extend({
router: service(),
onRouteChange: observer('router.currentURL', 'router.currentRouteName', function () {
this.recompute();
}),
compute([routeName, model], { isExact }) {
const router = this.router;
const currentRoute = router.currentRouteName;
let currentURL = router.currentURL;
// if we have any query params we want to discard them
currentURL = currentURL?.split('?')[0];
const comparator = isExact ? exact : startsWith;
if (!currentRoute) {
return false;
}
if (isArray(routeName)) {
return routeName.some((name) => comparator(currentRoute, name));
} else if (model) {
// slice off the rootURL from the generated route
return comparator(currentURL, router.urlFor(routeName, model).slice(router.rootURL.length - 1));
} else {
return comparator(currentRoute, routeName);
}
},
});