43b320be44
* ui: Add ability to sort service based on health * ui: Move custom sorting to sort/comparator Service/Helper (like search) This moves custom sorting to use the same pattern as custom searching. * Remove old Controller based comparator
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
import Helper from '@ember/component/helper';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
export default Helper.extend({
|
|
sort: service('sort'),
|
|
compute([type, key], hash) {
|
|
return this.sort.comparator(type)(key);
|
|
},
|
|
});
|