open-consul/ui-v2/app/components/sort-control.js

16 lines
443 B
JavaScript

import Component from '@ember/component';
import { set } from '@ember/object';
export default Component.extend({
classNames: ['sort-control'],
direction: 'asc',
onchange: function() {},
actions: {
change: function(e) {
if (e.target.type === 'checkbox') {
set(this, 'direction', e.target.checked ? 'desc' : 'asc');
}
this.onchange({ target: { value: `${this.value}:${this.direction}` } });
},
},
});