open-nomad/ui/app/components/server-agent-row.js

40 lines
1.5 KiB
JavaScript
Raw Normal View History

import { inject as service } from '@ember/service';
import { alias } from '@ember/object/computed';
import Component from '@ember/component';
import { computed } from '@ember/object';
import { lazyClick } from '../helpers/lazy-click';
2017-09-19 14:47:10 +00:00
export default Component.extend({
// TODO Switch back to the router service once the service behaves more like Route
// https://github.com/emberjs/ember.js/issues/15801
2017-09-19 14:47:10 +00:00
// router: inject.service('router'),
_router: service('-routing'),
router: alias('_router.router'),
2017-09-19 14:47:10 +00:00
tagName: 'tr',
classNames: ['server-agent-row', 'is-interactive'],
classNameBindings: ['isActive:is-active'],
agent: null,
isActive: computed('agent', 'router.currentURL', function() {
// TODO Switch back to the router service once the service behaves more like Route
// https://github.com/emberjs/ember.js/issues/15801
2017-09-19 14:47:10 +00:00
// const targetURL = this.get('router').urlFor('servers.server', this.get('agent'));
// const currentURL = `${this.get('router.rootURL').slice(0, -1)}${this.get('router.currentURL')}`;
const router = this.get('router');
const targetURL = router.generate('servers.server', this.get('agent'));
2018-07-10 02:03:08 +00:00
const currentURL = `${router.get('rootURL').slice(0, -1)}${
router.get('currentURL').split('?')[0]
}`;
2017-09-19 14:47:10 +00:00
2018-07-10 02:03:08 +00:00
// Account for potential URI encoding
return currentURL.replace(/%40/g, '@') === targetURL.replace(/%40/g, '@');
2017-09-19 14:47:10 +00:00
}),
click() {
const transition = () => this.get('router').transitionTo('servers.server', this.get('agent'));
lazyClick([transition, event]);
2017-09-19 14:47:10 +00:00
},
});