Manually sort strains/chars

Fixes #11.
This commit is contained in:
Matthew Ryan Dillon 2015-10-19 15:22:21 -07:00
parent 744f5be2a4
commit 93bdc594f5
3 changed files with 35 additions and 5 deletions

View file

@ -1,4 +1,5 @@
{{#if isEditing}} {{#if isEditing}}
<td></td>
<td> <td>
{{ {{
select-2 select-2
@ -28,6 +29,9 @@
</td> </td>
{{/if}} {{/if}}
{{else}} {{else}}
<td>
{{{row.characteristic.characteristicTypeName}}}
</td>
<td> <td>
{{#link-to 'protected.characteristics.show' row.characteristic.id}} {{#link-to 'protected.characteristics.show' row.characteristic.id}}
{{{row.characteristic.characteristicName}}} {{{row.characteristic.characteristicName}}}

View file

@ -12,6 +12,8 @@ export default Ember.Component.extend({
}.on('didInsertElement'), }.on('didInsertElement'),
sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'], sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'],
sortAsc: true,
paramsChanged: false,
sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'), sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'),
actions: { actions: {
@ -24,6 +26,22 @@ export default Ember.Component.extend({
}); });
this.get('model.measurements').addObject(m); this.get('model.measurements').addObject(m);
}, },
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;
},
}, },
}); });

View file

@ -7,24 +7,32 @@
{{/if}} {{/if}}
{{#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">
<colgroup> <colgroup>
{{#if canEdit}} {{#if canEdit}}
<col span="1" style="width:40%"> <col span="1" style="width:10%">
<col span="1" style="width:30%">
<col span="1" style="width:20%"> <col span="1" style="width:20%">
<col span="1" style="width:20%"> <col span="1" style="width:20%">
<col span="1" style="width:20%"> <col span="1" style="width:20%">
{{else}} {{else}}
<col span="1" style="width:40%"> <col span="1" style="width:10%">
<col span="1" style="width:30%">
<col span="1" style="width:30%"> <col span="1" style="width:30%">
<col span="1" style="width:30%"> <col span="1" style="width:30%">
{{/if}} {{/if}}
</colgroup> </colgroup>
<thead> <thead>
<tr> <tr>
<th>Characteristic</th> <th {{action "changeSortParam" "characteristic.characteristicTypeName"}}>Type</th>
<th>Value</th> <th {{action "changeSortParam" "characteristic.characteristicName"}}>Characteristic</th>
<th>Notes</th> <th {{action "changeSortParam" "value"}}>Value</th>
<th {{action "changeSortParam" "notes"}}>Notes</th>
{{#if canEdit}} {{#if canEdit}}
<th>Edit</th> <th>Edit</th>
{{/if}} {{/if}}