Stop loading chars in measurements-table
This commit is contained in:
parent
fbfbdf19d1
commit
ba15af411e
8 changed files with 9 additions and 10 deletions
|
@ -12,6 +12,7 @@ export default Route.extend(ElevatedAccess, {
|
|||
return Ember.RSVP.hash({
|
||||
strain: this.store.findRecord('strain', params.strain_id),
|
||||
species: this.store.findAll('species'), // Need for dropdown
|
||||
characteristics: this.store.findAll('characteristic'), // Need for dropdown
|
||||
});
|
||||
},
|
||||
|
||||
|
@ -26,6 +27,7 @@ export default Route.extend(ElevatedAccess, {
|
|||
setupController: function(controller, models) {
|
||||
controller.set('model', models.strain);
|
||||
controller.set('speciesList', models.species);
|
||||
controller.set('allCharacteristics', models.characteristics);
|
||||
},
|
||||
|
||||
actions: {
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
strain=model
|
||||
speciesList=speciesList
|
||||
add-characteristic=(action "addCharacteristic")
|
||||
allCharacteristics=allCharacteristics
|
||||
on-save=(action "save")
|
||||
on-cancel=(action "cancel")
|
||||
}}
|
||||
|
|
|
@ -20,8 +20,6 @@ export default Component.extend({
|
|||
|
||||
actions: {
|
||||
edit: function() {
|
||||
// The parent table fetches all of the characteristics ahead of time
|
||||
this.set('characteristics', this.store.peekAll('characteristic'));
|
||||
this.toggleProperty('isEditing');
|
||||
},
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{{
|
||||
select-2
|
||||
multiple=false
|
||||
content=characteristics
|
||||
content=allCharacteristics
|
||||
value=row.characteristic
|
||||
optionLabelPath="characteristicName"
|
||||
}}
|
||||
|
|
|
@ -9,6 +9,8 @@ export default Component.extend({
|
|||
allCharacteristics: null,
|
||||
canEdit: false,
|
||||
canAdd: false,
|
||||
|
||||
// Actions
|
||||
"add-characteristic": null,
|
||||
|
||||
// Properties
|
||||
|
@ -20,13 +22,6 @@ export default Component.extend({
|
|||
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 newChar = this.attrs['add-characteristic']();
|
||||
|
|
|
@ -43,6 +43,7 @@
|
|||
{{
|
||||
protected/strains/measurements-table-row
|
||||
row=measurement
|
||||
allCharacteristics=allCharacteristics
|
||||
canEdit=canEdit
|
||||
}}
|
||||
{{/each}}
|
||||
|
|
|
@ -9,6 +9,7 @@ export default Component.extend(SetupMetaData, {
|
|||
isNew: null,
|
||||
isDirty: false,
|
||||
speciesList: null,
|
||||
allCharacteristics: null,
|
||||
|
||||
// Actions
|
||||
"on-save": null,
|
||||
|
|
|
@ -54,6 +54,7 @@
|
|||
protected/strains/measurements-table
|
||||
strain=strain
|
||||
add-characteristic=(action "addCharacteristic")
|
||||
allCharacteristics=allCharacteristics
|
||||
canEdit=strain.canEdit
|
||||
canAdd=metaData.canAdd
|
||||
}}
|
||||
|
|
Reference in a new issue