Cleaning up measurement edit

This commit is contained in:
Matthew Dillon 2015-09-16 12:45:06 -07:00
parent 40f2b789e4
commit 4b6a776b63
6 changed files with 29 additions and 42 deletions

View file

@ -3,9 +3,7 @@ import DS from 'ember-data';
export default DS.Model.extend({ export default DS.Model.extend({
strain : DS.belongsTo('strain', { async: false }), strain : DS.belongsTo('strain', { async: false }),
characteristic : DS.belongsTo('characteristic', { async: false }), characteristic : DS.belongsTo('characteristic', { async: false }),
textMeasurementType: DS.attr('string'), value : DS.attr('string'),
txtValue : DS.attr('string'),
numValue : DS.attr('number'),
confidenceInterval : DS.attr('number'), confidenceInterval : DS.attr('number'),
unitType : DS.attr('string'), unitType : DS.attr('string'),
notes : DS.attr('string'), notes : DS.attr('string'),
@ -14,17 +12,4 @@ export default DS.Model.extend({
updatedAt : DS.attr('date'), updatedAt : DS.attr('date'),
createdBy : DS.attr('number'), createdBy : DS.attr('number'),
updatedBy : DS.attr('number'), updatedBy : DS.attr('number'),
value: function() {
if (this.get('textMeasurementType')) {
return this.get('textMeasurementType');
}
if (this.get('txtValue')) {
return this.get('txtValue');
}
if (this.get('numValue')) {
return this.get('numValue');
}
return "error";
}.property('textMeasurementType', 'txtValue', 'numValue'),
}); });

View file

@ -6,12 +6,15 @@ export default Ember.Component.extend({
actions: { actions: {
edit: function() { edit: function() {
// The parent table fetches all of the characteristics ahead of time
this.set('characteristics', this.store.peekAll('characteristic'));
this.toggleProperty('isEditing'); this.toggleProperty('isEditing');
}, },
save: function() { save: function() {
this.toggleProperty('isEditing'); this.toggleProperty('isEditing');
console.log('saved'); this.get('row').save();
} },
}, },
}); });

View file

@ -1,16 +1,22 @@
{{#if isEditing}} {{#if isEditing}}
<td> <td>
{{input value='Foo'}} {{
select-2
multiple=false
content=characteristics
value=row.characteristic
optionLabelPath="characteristicName"
}}
</td> </td>
<td> <td>
{{input value='Bar'}} {{input value=row.value}}
</td> </td>
<td> <td>
{{input value='Baz'}} {{input value=row.notes}}
</td> </td>
{{#if canEdit}} {{#if canEdit}}
<td> <td>
<button class="button-gray smaller" {{action 'save'}}> <button class="button-red smaller" {{action 'save'}}>
Save Save
</button> </button>
</td> </td>
@ -22,10 +28,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>
{{#if canEdit}} {{#if canEdit}}
<td> <td>

View file

@ -5,21 +5,13 @@ 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'),
measurementsTable: function() { fetchCharacteristics: function() {
let measurements = this.get('model.measurements'); if (this.get('canEdit')) {
let table = []; this.store.findAll('characteristic');
measurements.forEach((measurement) => { }
let row = {}; }.on('didInsertElement'),
row['measurement'] = measurement;
row['characteristic'] = this.store.peekRecord('characteristic', measurement.get('characteristic.id')); sortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
table.push(row); sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'),
});
table.sort((a, b) => {
let a_sort = a['characteristic'] && a['characteristic'].get('sortOrder');
let b_sort = b['characteristic'] && b['characteristic'].get('sortOrder');
return a_sort - b_sort;
});
return table;
}.property(),
}); });

View file

@ -23,10 +23,10 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{{#each measurementsTable as |row|}} {{#each sortedMeasurements as |measurement|}}
{{ {{
protected/strains/show/measurements-table-row protected/strains/show/measurements-table-row
row=row row=measurement
canEdit=canEdit canEdit=canEdit
}} }}
{{/each}} {{/each}}

View file

@ -4,6 +4,7 @@ export default Ember.Component.extend({
actions: { actions: {
save: function() { save: function() {
// Need to override the string id for some reason // Need to override the string id for some reason
// TODO: check this
let strain = this.get('strain'); let strain = this.get('strain');
let id = strain.get('species.id'); let id = strain.get('species.id');
strain.set('species.id', +id); strain.set('species.id', +id);