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-17 16:10:33 -07:00

35 lines
1,017 B
JavaScript

import Ember from 'ember';
const { Component, computed } = Ember;
const { alias, sort } = computed;
export default Component.extend({
characteristic: null,
measurementsPresent: computed('characteristic', function() {
return this.get('characteristic.measurements.length') > 0;
}),
measurements: alias('characteristic.measurements'),
sortParams: ['strain.sortOrder'],
sortedMeasurements: sort('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;
},
},
});