This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/characteristics/show/measurements-table/component.js
2015-11-05 14:05:50 -07:00

36 lines
1.1 KiB
JavaScript

import Ember from 'ember';
const { Component, computed } = Ember;
const { sort } = computed;
export default Component.extend({
characteristic: null,
measurementsPresent: computed('characteristic', function() {
return this.get('characteristic.measurements.length') > 0;
}),
sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'],
sortAsc: true,
paramsChanged: false,
sortedMeasurements: sort('characteristic.measurements', 'sortParams'),
actions: {
changeSortParam: function(col) {
const sort = this.get('sortAsc') ? 'asc' : 'desc';
const sortCol = `${col}:${sort}`;
this.set('sortParams', [sortCol]);
this.set('paramsChanged', true);
this.toggleProperty('sortAsc');
return false;
},
resetSortParam: function() {
this.set('sortParams', ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName']);
this.set('paramsChanged', false);
this.set('sortAsc', true);
return false;
},
},
});