Detailed characteristics view
This commit is contained in:
parent
e33852120a
commit
8b4a26a932
6 changed files with 13 additions and 14 deletions
|
@ -1,7 +1,7 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
const { Component, computed } = Ember;
|
||||
const { sort } = computed;
|
||||
const { alias, sort } = computed;
|
||||
|
||||
export default Component.extend({
|
||||
characteristic: null,
|
||||
|
@ -10,10 +10,9 @@ export default Component.extend({
|
|||
return this.get('characteristic.measurements.length') > 0;
|
||||
}),
|
||||
|
||||
sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'],
|
||||
sortAsc: true,
|
||||
paramsChanged: false,
|
||||
sortedMeasurements: sort('characteristic.measurements', 'sortParams'),
|
||||
measurements: alias('characteristic.measurements'),
|
||||
sortParams: ['strain.sortOrder'],
|
||||
sortedMeasurements: sort('measurements', 'sortParams'),
|
||||
|
||||
actions: {
|
||||
changeSortParam: function(col) {
|
||||
|
|
|
@ -13,18 +13,18 @@
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each sortedMeasurements as |row|}}
|
||||
{{#each sortedMeasurements as |measurement|}}
|
||||
<tr>
|
||||
<td>
|
||||
{{#link-to 'protected.strains.show' row.strain.id}}
|
||||
{{strain-name strain=row.strain}}
|
||||
{{#link-to 'protected.strains.show' measurement.strain.id classBinding="measurement.strain.typeStrain:type-strain"}}
|
||||
{{measurement.strain.fullNameMU}}
|
||||
{{/link-to}}
|
||||
</td>
|
||||
<td>
|
||||
{{row.value}}
|
||||
{{measurement.value}}
|
||||
</td>
|
||||
<td>
|
||||
{{row.notes}}
|
||||
{{measurement.notes}}
|
||||
</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
|
|
|
@ -4,7 +4,7 @@ const { Route } = Ember;
|
|||
|
||||
export default Route.extend({
|
||||
model: function(params) {
|
||||
return this.store.findRecord('characteristic', params.characteristic_id);
|
||||
return this.store.findRecord('characteristic', params.characteristic_id, { reload: true });
|
||||
},
|
||||
|
||||
});
|
||||
|
|
|
@ -4,7 +4,7 @@ const { Route } = Ember;
|
|||
|
||||
export default Route.extend({
|
||||
model: function(params) {
|
||||
return this.store.findRecord('species', params.species_id);
|
||||
return this.store.findRecord('species', params.species_id, { reload: true });
|
||||
},
|
||||
|
||||
});
|
||||
|
|
|
@ -4,7 +4,7 @@ const { Route } = Ember;
|
|||
|
||||
export default Route.extend({
|
||||
model: function(params) {
|
||||
return this.store.findRecord('strain', params.strain_id);
|
||||
return this.store.findRecord('strain', params.strain_id, { reload: true });
|
||||
},
|
||||
|
||||
});
|
||||
|
|
|
@ -21,7 +21,7 @@ export default Route.extend({
|
|||
},
|
||||
|
||||
model: function(params) {
|
||||
return this.store.findRecord('user', params.user_id);
|
||||
return this.store.findRecord('user', params.user_id, { reload: true });
|
||||
},
|
||||
|
||||
});
|
||||
|
|
Reference in a new issue