diff --git a/app/pods/protected/strains/edit/controller.js b/app/pods/protected/strains/edit/controller.js
index a44ea40..d3640c7 100644
--- a/app/pods/protected/strains/edit/controller.js
+++ b/app/pods/protected/strains/edit/controller.js
@@ -7,4 +7,12 @@ export default Controller.extend(SaveModel, {
// Required for SaveModel mixin
fallbackRouteSave: 'protected.strains.show',
fallbackRouteCancel: 'protected.strains.show',
+
+ actions: {
+ addCharacteristic: function() {
+ return this.store.createRecord('measurement', {
+ characteristic: this.store.createRecord('characteristic', { sortOrder: -999 }),
+ });
+ },
+ },
});
diff --git a/app/pods/protected/strains/edit/template.hbs b/app/pods/protected/strains/edit/template.hbs
index 1ae2d5b..c36aa54 100644
--- a/app/pods/protected/strains/edit/template.hbs
+++ b/app/pods/protected/strains/edit/template.hbs
@@ -2,6 +2,7 @@
protected/strains/strain-form
strain=model
speciesList=speciesList
+ add-characteristic=(action "addCharacteristic")
on-save=(action "save")
on-cancel=(action "cancel")
}}
diff --git a/app/pods/protected/strains/measurements-table-row/component.js b/app/pods/protected/strains/measurements-table-row/component.js
index 8ad1ba7..c6983d7 100644
--- a/app/pods/protected/strains/measurements-table-row/component.js
+++ b/app/pods/protected/strains/measurements-table-row/component.js
@@ -1,11 +1,12 @@
import Ember from 'ember';
-import ajaxError from '../../../../../utils/ajax-error';
+import ajaxError from '../../../../utils/ajax-error';
const { Component } = Ember;
export default Component.extend({
tagName: 'tr',
isEditing: false,
+ allCharacteristics: null,
oldCharacteristicId: function() {
let json = this.get('row').toJSON();
diff --git a/app/pods/protected/strains/measurements-table/component.js b/app/pods/protected/strains/measurements-table/component.js
index 6cbf880..a83e25e 100644
--- a/app/pods/protected/strains/measurements-table/component.js
+++ b/app/pods/protected/strains/measurements-table/component.js
@@ -1,48 +1,49 @@
import Ember from 'ember';
-const { Component } = Ember;
+const { Component, computed } = Ember;
+const { sort } = computed;
export default Component.extend({
- measurementsPresent: function() {
- return this.get('model.measurements.length') > 0;
- }.property('model.measurements'),
-
- fetchCharacteristics: function() {
- if (this.get('canEdit')) {
- this.store.findAll('characteristic');
- }
- }.on('didInsertElement'),
+ // Passed in
+ strain: null,
+ allCharacteristics: null,
+ canEdit: false,
+ canAdd: false,
+ "add-characteristic": null,
+ // Properties
sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'],
sortAsc: true,
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: {
addCharacteristic: function() {
- const c = this.store.createRecord('characteristic', {
- sortOrder: -999
- });
- const m = this.store.createRecord('measurement', {
- characteristic: c
- });
- this.get('model.measurements').addObject(m);
+ const newChar = this.attrs['add-characteristic']();
+ this.get('strain.measurements').addObject(newChar);
},
changeSortParam: function(col) {
- let sort = this.get('sortAsc') ? 'asc' : 'desc';
- let sortCol = `${col}:${sort}`;
- this.set('sortParams', [sortCol]);
+ const sort = this.get('sortAsc') ? 'asc' : 'desc';
+ this.set('sortParams', [`${col}:${sort}`]);
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;
},
},
diff --git a/app/pods/protected/strains/measurements-table/template.hbs b/app/pods/protected/strains/measurements-table/template.hbs
index 25b0c27..3f635f1 100644
--- a/app/pods/protected/strains/measurements-table/template.hbs
+++ b/app/pods/protected/strains/measurements-table/template.hbs
@@ -1,17 +1,17 @@
{{#if canAdd}}
-
-
-
+
+
+
{{/if}}
{{#if measurementsPresent}}
-{{#if paramsChanged}}
-
-{{/if}}
+ {{#if paramsChanged}}
+
+ {{/if}}