Clean up no measurements on record

This commit is contained in:
Matthew Dillon 2015-12-02 10:42:59 -07:00
parent 50cc073d2f
commit 658304f728
3 changed files with 12 additions and 15 deletions

View file

@ -20,14 +20,10 @@ export default Component.extend({
sortAsc: true,
paramsChanged: false,
sortedMeasurements: sort('measurements', 'sortParams'),
measurementsPresent: computed('measurements', function() {
return this.get('measurements.length') > 0;
}),
actions: {
addCharacteristic: function() {
const measurement = this.attrs['add-characteristic']();
this.get('measurements').addObject(measurement);
return this.attrs['add-characteristic']();
},
changeSortParam: function(col) {

View file

@ -6,12 +6,11 @@
<br><br>
{{/if}}
{{#if measurementsPresent}}
{{#if paramsChanged}}
<button class="button-gray smaller" {{action 'resetSortParam'}}>
Reset sort
</button>
{{/if}}
{{#if paramsChanged}}
<button class="button-gray smaller" {{action 'resetSortParam'}}>
Reset sort
</button>
{{/if}}
<table class="flakes-table">
<colgroup>
{{#if canEdit}}
@ -48,9 +47,10 @@
allCharacteristics=allCharacteristics
canEdit=canEdit
}}
{{else}}
<tr>
<td colspan="5">No Measurements on Record</td>
</tr>
{{/each}}
</tbody>
</table>
{{else}}
No measurements on record.
{{/if}}

View file

@ -104,7 +104,8 @@ export default Component.extend(SetupMetaData, {
},
addCharacteristic: function() {
return this.attrs['add-characteristic']();
const measurement = this.attrs['add-characteristic']();
this.get('measurements').pushObject(measurement);
},
saveMeasurement: function(measurement, properties) {