This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/species/species-form/component.js
2015-11-03 15:48:35 -07:00

51 lines
1.2 KiB
JavaScript

import Ember from 'ember';
const { Component, inject: { service } } = Ember;
export default Component.extend({
currentUser: service('session-account'),
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) => {
this.set('metaData', user.get('metaData'));
});
}),
actions: {
save: function() {
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'));
},
},
});