diff --git a/app/components/species/species-details.js b/app/components/species/species-details.js
index 3fd4f8e..58afb31 100644
--- a/app/components/species/species-details.js
+++ b/app/components/species/species-details.js
@@ -3,18 +3,12 @@ import Ember from 'ember';
export default Ember.Component.extend({
classNames: ['grid-1'],
isEditing: false,
- isNew: false,
actions: {
- editSpecies: function() {
- this.get('species').get('errors').clear();
- if (this.get('isNew')) {
- this.get('species').destroyRecord().then(this.sendAction());
- }
- this.toggleProperty('isEditing');
- this.get('species').rollback();
+ save: function() {
+ this.sendAction('save');
+ },
+ cancel: function() {
+ this.sendAction('cancel');
},
- saveSpecies: function() {
- this.get('species').save().then(this.toggleProperty('isEditing'));
- }
}
});
diff --git a/app/controllers/species/index.js b/app/controllers/species/index.js
new file mode 100644
index 0000000..b5b8af0
--- /dev/null
+++ b/app/controllers/species/index.js
@@ -0,0 +1,5 @@
+import SortableController from '../sortable';
+
+export default SortableController.extend({
+ sortBy: 'speciesName',
+});
diff --git a/app/controllers/species/new.js b/app/controllers/species/new.js
new file mode 100644
index 0000000..a289976
--- /dev/null
+++ b/app/controllers/species/new.js
@@ -0,0 +1,21 @@
+import Ember from 'ember';
+
+export default Ember.Controller.extend({
+ isEditing: true,
+ actions: {
+ save: function() {
+ var species = this.get('model');
+ if (species.get('isDirty')) {
+ species.save();
+ }
+ this.transitionToRoute('species.index');
+ },
+ cancel: function() {
+ var species = this.get('model');
+ if (species.get('isNew')) {
+ species.deleteRecord();
+ }
+ this.transitionToRoute('species.index');
+ }
+ }
+});
diff --git a/app/controllers/species/show.js b/app/controllers/species/show.js
new file mode 100644
index 0000000..2d5a523
--- /dev/null
+++ b/app/controllers/species/show.js
@@ -0,0 +1,22 @@
+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/templates/components/species/species-details.hbs b/app/templates/components/species/species-details.hbs
index 9772228..ee6d571 100644
--- a/app/templates/components/species/species-details.hbs
+++ b/app/templates/components/species/species-details.hbs
@@ -22,10 +22,14 @@
{{/link-to}}
{{/each}}
{{#if (can "edit species" species)}}
-
- {{#link-to 'strains.new' class="button-gray smaller"}}
- Add Strain
- {{/link-to}}
+ {{#if species.isNew}}
+ PENDING SAVE
+ {{else}}
+
+ {{#link-to 'strains.new' class="button-gray smaller"}}
+ Add Strain
+ {{/link-to}}
+ {{/if}}
{{/if}}
@@ -78,11 +82,11 @@