diff --git a/app/components/strains/strain-details.js b/app/components/strains/strain-details.js index a25aead..cd48959 100644 --- a/app/components/strains/strain-details.js +++ b/app/components/strains/strain-details.js @@ -3,10 +3,15 @@ import Ember from 'ember'; export default Ember.Component.extend({ classNames: ['grid-1'], isEditing: false, + isNew: false, actions: { editStrain: function() { this.get('strain').get('errors').clear(); + if (this.get('isNew')) { + this.get('strain').destroyRecord().then(this.sendAction()); + } this.toggleProperty('isEditing'); + this.get('strain').rollback(); }, saveStrain: function() { this.get('strain').save().then(this.toggleProperty('isEditing')); diff --git a/app/router.js b/app/router.js index 6616959..2c793b1 100644 --- a/app/router.js +++ b/app/router.js @@ -9,6 +9,7 @@ Router.map(function() { this.route('login'); this.route('about'); this.resource('strains', function() { + this.route('new'); this.route('show', { path: ':strain_id' }, function() { this.resource('measurements', function() {}); }); diff --git a/app/routes/strains/new.js b/app/routes/strains/new.js new file mode 100644 index 0000000..3fa1c56 --- /dev/null +++ b/app/routes/strains/new.js @@ -0,0 +1,12 @@ +import Ember from 'ember'; + +export default Ember.Route.extend({ + model: function() { + return this.store.createRecord('strain'); + }, + actions: { + cancelStrain: function() { + this.transitionTo('strains.index'); + } + } +}); diff --git a/app/templates/strains/index.hbs b/app/templates/strains/index.hbs index 9cda5c3..9d57ac1 100644 --- a/app/templates/strains/index.hbs +++ b/app/templates/strains/index.hbs @@ -3,7 +3,9 @@ {{#if (can "add strain")}} {{! Does nothing ATM }} - Add Strain + {{#link-to 'strains.new' class="button-gray smaller"}} + Add Strain + {{/link-to}} {{/if}} diff --git a/app/templates/strains/new.hbs b/app/templates/strains/new.hbs new file mode 100644 index 0000000..bca2106 --- /dev/null +++ b/app/templates/strains/new.hbs @@ -0,0 +1 @@ +{{strains/strain-details strain=model isEditing=true isNew=true action="cancelStrain"}} diff --git a/tests/unit/routes/strains/new-test.js b/tests/unit/routes/strains/new-test.js new file mode 100644 index 0000000..d865650 --- /dev/null +++ b/tests/unit/routes/strains/new-test.js @@ -0,0 +1,14 @@ +import { + moduleFor, + test +} from 'ember-qunit'; + +moduleFor('route:strains/new', { + // Specify the other units that are required for this test. + // needs: ['controller:foo'] +}); + +test('it exists', function(assert) { + var route = this.subject(); + assert.ok(route); +});