parent
f7f04fd25c
commit
0676058276
3 changed files with 34 additions and 19 deletions
|
@ -5,17 +5,27 @@ export default Ember.Component.extend({
|
||||||
return this.get('model.measurements.length') > 0;
|
return this.get('model.measurements.length') > 0;
|
||||||
}.property('model.measurements'),
|
}.property('model.measurements'),
|
||||||
|
|
||||||
// TODO: this is way more complicated than it should be
|
sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'],
|
||||||
measurementsTable: function() {
|
sortAsc: true,
|
||||||
let measurements = this.get('model.measurements');
|
paramsChanged: false,
|
||||||
let table = [];
|
sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'),
|
||||||
measurements.forEach((measurement) => {
|
|
||||||
let row = {};
|
actions: {
|
||||||
row['measurement'] = measurement;
|
changeSortParam: function(col) {
|
||||||
row['strain'] = this.store.peekRecord('strain', measurement.get('strain.id'));
|
let sort = this.get('sortAsc') ? 'asc' : 'desc';
|
||||||
table.push(row);
|
let sortCol = `${col}:${sort}`;
|
||||||
});
|
this.set('sortParams', [sortCol]);
|
||||||
return table;
|
this.set('paramsChanged', true);
|
||||||
}.property(),
|
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;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,14 +1,19 @@
|
||||||
{{#if measurementsPresent}}
|
{{#if measurementsPresent}}
|
||||||
|
{{#if paramsChanged}}
|
||||||
|
<button class="button-gray smaller" {{action 'resetSortParam'}}>
|
||||||
|
Reset sort
|
||||||
|
</button>
|
||||||
|
{{/if}}
|
||||||
<table class="flakes-table">
|
<table class="flakes-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Strain</th>
|
<th {{action "changeSortParam" "strain.strainName"}} class="click">Strain</th>
|
||||||
<th>Value</th>
|
<th {{action "changeSortParam" "value"}} class="click">Value</th>
|
||||||
<th>Notes</th>
|
<th {{action "changeSortParam" "notes"}} class="click">Notes</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{{#each measurementsTable as |row|}}
|
{{#each sortedMeasurements as |row|}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{{#link-to 'protected.strains.show' row.strain.id}}
|
{{#link-to 'protected.strains.show' row.strain.id}}
|
||||||
|
@ -16,10 +21,10 @@
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{row.measurement.value}}
|
{{row.value}}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{row.measurement.notes}}
|
{{row.notes}}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
|
@ -18,7 +18,7 @@ input[type="text"] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flakes-table thead tr th span {
|
.click {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue