From 135d7a2c2c01190a4ee74cef8b805b22f8d93c08 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 19 Oct 2015 16:26:25 -0700 Subject: [PATCH 1/2] Don't transition to loading route during login Fixes #22. --- app/pods/login/controller.js | 14 ++++++++------ app/pods/login/template.hbs | 24 ++++++++++++++---------- 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/app/pods/login/controller.js b/app/pods/login/controller.js index 5cf6e07..42e761d 100644 --- a/app/pods/login/controller.js +++ b/app/pods/login/controller.js @@ -1,6 +1,8 @@ import Ember from 'ember'; export default Ember.Controller.extend({ + loading: false, + actions: { authenticate: function() { let credentials = this.getProperties('identification', 'password'); @@ -9,12 +11,12 @@ export default Ember.Controller.extend({ // Manually clean up because there might not be a transition this.get('flashMessages').clearMessages(); - this.transitionToRoute('loading').then(() => { - session.authenticate(authenticator, credentials).then(null, (error)=> { - this.transitionToRoute('login'); - this.get('flashMessages').error(error.error); - }); - }); + this.set('loading', true).then(session.authenticate(authenticator, credentials).catch((error) => { + this.transitionToRoute('login'); + this.set('loading', false); + this.get('flashMessages').error(error.error); + })); + this.set('loading', false); } } }); diff --git a/app/pods/login/template.hbs b/app/pods/login/template.hbs index c56ca42..7d3f5ac 100644 --- a/app/pods/login/template.hbs +++ b/app/pods/login/template.hbs @@ -1,12 +1,16 @@ {{#x-application invalidateSession="invalidateSession"}} -
-

Log In

- {{input value=identification type="text" placeholder="Email"}} - {{input value=password type="password" placeholder="Password"}} - {{input class="button-gray" type="submit" value="Log In"}} -
-
-
- Forget your password? {{link-to 'Request a lockout email.' 'users.requestlockouthelp'}} -
+ {{#if loading}} + {{loading-panel}} + {{else}} +
+

Log In

+ {{input value=identification type="text" placeholder="Email"}} + {{input value=password type="password" placeholder="Password"}} + {{input class="button-gray" type="submit" value="Log In"}} +
+
+
+ Forget your password? {{link-to 'Request a lockout email.' 'users.requestlockouthelp'}} +
+ {{/if}} {{/x-application}} From be81bb9066c10f116e87ebecfefd75fce3d9e14d Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 19 Oct 2015 16:38:45 -0700 Subject: [PATCH 2/2] Fix "New Strain" button under species edit Fixes #23. --- app/pods/protected/species/edit/route.js | 5 +++++ app/pods/protected/species/edit/template.hbs | 1 + .../protected/species/species-form/template.hbs | 13 ++++++++----- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/app/pods/protected/species/edit/route.js b/app/pods/protected/species/edit/route.js index 6d09cb9..e9e9076 100644 --- a/app/pods/protected/species/edit/route.js +++ b/app/pods/protected/species/edit/route.js @@ -16,4 +16,9 @@ export default Ember.Route.extend({ } }, + setupController: function(controller, model) { + controller.set('model', model); + controller.set('metaData', this.store.metadataFor('species')); + }, + }); diff --git a/app/pods/protected/species/edit/template.hbs b/app/pods/protected/species/edit/template.hbs index c3b8a05..aa8272e 100644 --- a/app/pods/protected/species/edit/template.hbs +++ b/app/pods/protected/species/edit/template.hbs @@ -1,6 +1,7 @@ {{ protected/species/species-form species=model + metaData=metaData save="save" cancel="cancel" }} diff --git a/app/pods/protected/species/species-form/template.hbs b/app/pods/protected/species/species-form/template.hbs index 011f62f..2b2ae76 100644 --- a/app/pods/protected/species/species-form/template.hbs +++ b/app/pods/protected/species/species-form/template.hbs @@ -11,8 +11,9 @@ {{input type="checkbox" checked=species.typeSpecies}} {{if species.typeSpecies 'Yes' 'No'}} -
-
+ {{#unless species.isNew}} +
+
{{#each species.strains as |strain index|}} {{if index ","}} @@ -20,11 +21,13 @@ {{{strain.strainNameMU}}} {{/link-to}} {{/each}} - {{add-button label="Add Strain" link="protected.strains.new"}} + {{add-button label="Add Strain" link="protected.strains.new" canAdd=metaData.canAdd}}
-
-
+ {{/unless}} + +
+
{{text-editor value=species.etymology}}