- {{#link-to 'species.show' row}}
- {{row.speciesName}}
+ {{#link-to 'species.show' species}}
+ {{species.speciesName}}
{{/link-to}}
|
- {{#each row.strains as |strain index|}}
+ {{#each species.strains as |strain index|}}
{{if index ","}}
{{#link-to 'strains.show' strain.id}}
{{{strain.strainNameMU}}}
diff --git a/app/pods/species/new/controller.js b/app/pods/species/new/controller.js
index a289976..568648f 100644
--- a/app/pods/species/new/controller.js
+++ b/app/pods/species/new/controller.js
@@ -1,21 +1,30 @@
import Ember from 'ember';
export default Ember.Controller.extend({
- isEditing: true,
actions: {
save: function() {
- var species = this.get('model');
+ let species = this.get('model');
+
if (species.get('isDirty')) {
- species.save();
+ species.save().then((species) => {
+ this.transitionToRoute('species.show', species.get('id'));
+ }, (err) => {
+ this.get('flashMessages').error(err.responseJSON.error);
+ });
+ } else {
+ this.transitionToRoute('species.index');
}
- this.transitionToRoute('species.index');
},
+
cancel: function() {
- var species = this.get('model');
+ let species = this.get('model');
+
if (species.get('isNew')) {
species.deleteRecord();
}
+
this.transitionToRoute('species.index');
- }
- }
+ },
+
+ },
});
diff --git a/app/pods/species/new/route.js b/app/pods/species/new/route.js
index b9f79eb..98741c6 100644
--- a/app/pods/species/new/route.js
+++ b/app/pods/species/new/route.js
@@ -5,9 +5,5 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
model: function() {
return this.store.createRecord('species');
},
- actions: {
- cancelSpecies: function() {
- this.transitionTo('species.index');
- }
- }
+
});
diff --git a/app/pods/species/new/template.hbs b/app/pods/species/new/template.hbs
index f38417f..5c6c82f 100644
--- a/app/pods/species/new/template.hbs
+++ b/app/pods/species/new/template.hbs
@@ -1,7 +1,6 @@
{{
- species-details
+ forms/species-form
species=model
- isEditing=true
save="save"
cancel="cancel"
}}
diff --git a/app/pods/species/show/controller.js b/app/pods/species/show/controller.js
deleted file mode 100644
index 2d5a523..0000000
--- a/app/pods/species/show/controller.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import Ember from 'ember';
-
-export default Ember.Controller.extend({
- isEditing: false,
- actions: {
- save: function() {
- var species = this.get('model');
- if (species.get('isDirty')) {
- species.save();
- }
- this.toggleProperty('isEditing');
- },
- cancel: function() {
- if (this.get('isEditing')) {
- var species = this.get('model');
- species.get('errors').clear();
- species.rollback();
- }
- this.toggleProperty('isEditing');
- }
- }
-});
diff --git a/app/pods/species/show/template.hbs b/app/pods/species/show/template.hbs
index b242fc5..11b72ba 100644
--- a/app/pods/species/show/template.hbs
+++ b/app/pods/species/show/template.hbs
@@ -1,7 +1,57 @@
-{{
- species-details
- species=model
- isEditing=isEditing
- save="save"
- cancel="cancel"
-}}
+
+
+
+
+
diff --git a/app/router.js b/app/router.js
index 27112b6..6f43b21 100644
--- a/app/router.js
+++ b/app/router.js
@@ -15,6 +15,7 @@ Router.map(function() {
this.route('species', function() {
this.route('new');
this.route('show', { path: ':species_id' });
+ this.route('edit', { path: ':species_id/edit' });
});
this.route('strains', function() {
this.route('new');
|