diff --git a/app/pods/protected/characteristics/show/measurements-table/component.js b/app/pods/protected/characteristics/show/measurements-table/component.js index 00d5dd4..1ca9d17 100644 --- a/app/pods/protected/characteristics/show/measurements-table/component.js +++ b/app/pods/protected/characteristics/show/measurements-table/component.js @@ -5,17 +5,27 @@ export default Ember.Component.extend({ return this.get('model.measurements.length') > 0; }.property('model.measurements'), - // TODO: this is way more complicated than it should be - measurementsTable: function() { - let measurements = this.get('model.measurements'); - let table = []; - measurements.forEach((measurement) => { - let row = {}; - row['measurement'] = measurement; - row['strain'] = this.store.peekRecord('strain', measurement.get('strain.id')); - table.push(row); - }); - return table; - }.property(), + sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'], + sortAsc: true, + paramsChanged: false, + sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'), + + actions: { + changeSortParam: function(col) { + let sort = this.get('sortAsc') ? 'asc' : 'desc'; + let 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; + }, + }, }); diff --git a/app/pods/protected/characteristics/show/measurements-table/template.hbs b/app/pods/protected/characteristics/show/measurements-table/template.hbs index 1813ed8..8ee1a86 100644 --- a/app/pods/protected/characteristics/show/measurements-table/template.hbs +++ b/app/pods/protected/characteristics/show/measurements-table/template.hbs @@ -1,14 +1,19 @@ {{#if measurementsPresent}} +{{#if paramsChanged}} + +{{/if}}
Strain | -Value | -Notes | +Strain | +Value | +Notes |
---|---|---|---|---|---|
{{#link-to 'protected.strains.show' row.strain.id}} @@ -16,10 +21,10 @@ {{/link-to}} | - {{row.measurement.value}} + {{row.value}} | - {{row.measurement.notes}} + {{row.notes}} |