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, sortAsc: true,
paramsChanged: false, paramsChanged: false,
sortedMeasurements: sort('measurements', 'sortParams'), sortedMeasurements: sort('measurements', 'sortParams'),
measurementsPresent: computed('measurements', function() {
return this.get('measurements.length') > 0;
}),
actions: { actions: {
addCharacteristic: function() { addCharacteristic: function() {
const measurement = this.attrs['add-characteristic'](); return this.attrs['add-characteristic']();
this.get('measurements').addObject(measurement);
}, },
changeSortParam: function(col) { changeSortParam: function(col) {

View file

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

View file

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