diff --git a/app/mixins/save-model.js b/app/mixins/save-model.js index e7d920e..97cc97b 100644 --- a/app/mixins/save-model.js +++ b/app/mixins/save-model.js @@ -7,10 +7,12 @@ export default Mixin.create({ fallbackRoute: null, actions: { - save: function() { + save: function(properties) { const model = this.get('model'); const fallbackRoute = this.get('fallbackRoute'); + model.setProperties(properties); + if (model.get('hasDirtyAttributes')) { model.save().then((model) => { this.transitionToRoute(fallbackRoute, model); diff --git a/app/pods/protected/species/species-form/component.js b/app/pods/protected/species/species-form/component.js index 0e261d8..5b73342 100644 --- a/app/pods/protected/species/species-form/component.js +++ b/app/pods/protected/species/species-form/component.js @@ -8,6 +8,21 @@ export default Component.extend({ species: null, "on-save": null, "on-cancel": null, + "on-update": null, + + speciesName: null, + typeSpecies: null, + + updateField: function(property, value) { + this.set(property, value); + }, + + resetOnInit: Ember.on('init', function() { + ['speciesName', 'typeSpecies'].forEach((field) => { + const valueInSpecies = this.get('species').get(field); + this.set(field, valueInSpecies); + }); + }), setupMetaDataOnInit: Ember.on('init', function() { this.get('currentUser.account').then((user) => { @@ -17,11 +32,20 @@ export default Component.extend({ actions: { save: function() { - return this.attrs['on-save'](); + return this.attrs['on-save'](this.getProperties(['speciesName', 'typeSpecies'])); }, cancel: function() { return this.attrs['on-cancel'](); }, - } + + nameDidChange: function(value) { + this.updateField('speciesName', value); + }, + + typeSpeciesDidChange: function() { + this.toggleProperty('typeSpecies'); + console.log(this.get('typeSpecies')); + }, + }, }); diff --git a/app/pods/protected/species/species-form/template.hbs b/app/pods/protected/species/species-form/template.hbs index ea1b693..0813123 100644 --- a/app/pods/protected/species/species-form/template.hbs +++ b/app/pods/protected/species/species-form/template.hbs @@ -1,14 +1,14 @@