This commit is contained in:
Matthew Dillon 2015-11-10 15:42:20 -07:00
parent 48cd1f4f39
commit fbfbdf19d1
8 changed files with 54 additions and 37 deletions

View file

@ -7,4 +7,12 @@ export default Controller.extend(SaveModel, {
// Required for SaveModel mixin // Required for SaveModel mixin
fallbackRouteSave: 'protected.strains.show', fallbackRouteSave: 'protected.strains.show',
fallbackRouteCancel: 'protected.strains.show', fallbackRouteCancel: 'protected.strains.show',
actions: {
addCharacteristic: function() {
return this.store.createRecord('measurement', {
characteristic: this.store.createRecord('characteristic', { sortOrder: -999 }),
});
},
},
}); });

View file

@ -2,6 +2,7 @@
protected/strains/strain-form protected/strains/strain-form
strain=model strain=model
speciesList=speciesList speciesList=speciesList
add-characteristic=(action "addCharacteristic")
on-save=(action "save") on-save=(action "save")
on-cancel=(action "cancel") on-cancel=(action "cancel")
}} }}

View file

@ -1,11 +1,12 @@
import Ember from 'ember'; import Ember from 'ember';
import ajaxError from '../../../../../utils/ajax-error'; import ajaxError from '../../../../utils/ajax-error';
const { Component } = Ember; const { Component } = Ember;
export default Component.extend({ export default Component.extend({
tagName: 'tr', tagName: 'tr',
isEditing: false, isEditing: false,
allCharacteristics: null,
oldCharacteristicId: function() { oldCharacteristicId: function() {
let json = this.get('row').toJSON(); let json = this.get('row').toJSON();

View file

@ -1,48 +1,49 @@
import Ember from 'ember'; import Ember from 'ember';
const { Component } = Ember; const { Component, computed } = Ember;
const { sort } = computed;
export default Component.extend({ export default Component.extend({
measurementsPresent: function() { // Passed in
return this.get('model.measurements.length') > 0; strain: null,
}.property('model.measurements'), allCharacteristics: null,
canEdit: false,
fetchCharacteristics: function() { canAdd: false,
if (this.get('canEdit')) { "add-characteristic": null,
this.store.findAll('characteristic');
}
}.on('didInsertElement'),
// Properties
sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'], sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'],
sortAsc: true, sortAsc: true,
paramsChanged: false, paramsChanged: false,
sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'), sortedMeasurements: sort('strain.measurements', 'sortParams'),
measurementsPresent: computed('strain.measurements', function() {
return this.get('strain.measurements.length') > 0;
}),
// TODO: remove this
// fetchCharacteristics: function() {
// if (this.get('canEdit')) {
// this.store.findAll('characteristic');
// }
// }.on('didInsertElement'),
actions: { actions: {
addCharacteristic: function() { addCharacteristic: function() {
const c = this.store.createRecord('characteristic', { const newChar = this.attrs['add-characteristic']();
sortOrder: -999 this.get('strain.measurements').addObject(newChar);
});
const m = this.store.createRecord('measurement', {
characteristic: c
});
this.get('model.measurements').addObject(m);
}, },
changeSortParam: function(col) { changeSortParam: function(col) {
let sort = this.get('sortAsc') ? 'asc' : 'desc'; const sort = this.get('sortAsc') ? 'asc' : 'desc';
let sortCol = `${col}:${sort}`; this.set('sortParams', [`${col}:${sort}`]);
this.set('sortParams', [sortCol]);
this.set('paramsChanged', true); this.set('paramsChanged', true);
this.toggleProperty('sortAsc'); this.toggleProperty('sortAsc');
return false;
}, },
resetSortParam: function() { resetSortParam: function() {
this.set('sortParams', ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName']); this.set('sortParams', ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName']);
this.set('paramsChanged', false); this.set('paramsChanged', false);
this.set('sortAsc', true); this.set('sortAsc', true);
return false;
}, },
}, },

View file

@ -1,17 +1,17 @@
{{#if canAdd}} {{#if canAdd}}
<br> <br>
<button class="button-green smaller" {{action "addCharacteristic"}}> <button class="button-green smaller" {{action "addCharacteristic"}}>
Add characteristic Add characteristic
</button> </button>
<br><br> <br><br>
{{/if}} {{/if}}
{{#if measurementsPresent}} {{#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}}

View file

@ -75,7 +75,7 @@
<dd> <dd>
{{ {{
protected/strains/measurements-table protected/strains/measurements-table
model=strain strain=strain
canEdit=false canEdit=false
canAdd=false canAdd=false
}} }}

View file

@ -14,6 +14,7 @@ export default Component.extend(SetupMetaData, {
"on-save": null, "on-save": null,
"on-cancel": null, "on-cancel": null,
"on-update": null, "on-update": null,
"add-characteristic": null,
// Property mapping // Property mapping
propertiesList: ['strainName', 'typeStrain', 'species', 'isolatedFrom', 'accessionNumbers', 'genbank', 'wholeGenomeSequence', 'notes'], propertiesList: ['strainName', 'typeStrain', 'species', 'isolatedFrom', 'accessionNumbers', 'genbank', 'wholeGenomeSequence', 'notes'],
@ -54,6 +55,10 @@ export default Component.extend(SetupMetaData, {
return this.attrs['on-cancel'](); return this.attrs['on-cancel']();
}, },
addCharacteristic: function() {
return this.attrs['add-characteristic']();
},
strainNameDidChange: function(value) { strainNameDidChange: function(value) {
this.updateField('strainName', value); this.updateField('strainName', value);
}, },

View file

@ -52,9 +52,10 @@
<div> <div>
{{ {{
protected/strains/measurements-table protected/strains/measurements-table
model=strain strain=strain
add-characteristic=(action "addCharacteristic")
canEdit=strain.canEdit canEdit=strain.canEdit
canAdd=canAdd canAdd=metaData.canAdd
}} }}
</div> </div>
<br> <br>