This commit is contained in:
Matthew Ryan Dillon 2015-11-11 13:01:23 -07:00
parent 2d5e2c4be7
commit 73461d4048
4 changed files with 15 additions and 14 deletions

View file

@ -1,14 +1,15 @@
import Ember from 'ember'; import Ember from 'ember';
export default Ember.Controller.extend({ const { Controller, inject: { service } } = Ember;
session: Ember.inject.service('session'),
export default Controller.extend({
session: service(),
actions: { actions: {
authenticate: function() { authenticate: function(identification, password) {
// Manually clean up because there might not be a transition // Manually clean up because there might not be a transition
this.get('flashMessages').clearMessages(); this.get('flashMessages').clearMessages();
let { identification, password } = this.getProperties('identification', 'password');
this.transitionToRoute('loading').then(() => { this.transitionToRoute('loading').then(() => {
this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => { this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => {
this.transitionToRoute('login').then(() => { this.transitionToRoute('login').then(() => {

View file

@ -4,19 +4,16 @@ const { Component } = Ember;
export default Component.extend({ export default Component.extend({
// Actions // Actions
"on-save": null, "on-submit": null,
"on-cancel": null,
"on-update": null,
"add-characteristic": null,
"save-measurement": null,
"delete-measurement": null,
// Property mapping // Property mapping
propertiesList: ['identification', 'password'], propertiesList: ['identification', 'password'],
identification: null, identification: null,
password: null, password: null,
updateField: function(property, value) { actions: {
this.set(property, value); submit: function() {
return this.attrs['on-submit'](this.get('identification'), this.get('password'));
},
}, },
}); });

View file

@ -1,4 +1,4 @@
<form {{action "authenticate" on="submit"}}> <form {{action "submit" on="submit"}}>
<h2>Log In</h2> <h2>Log In</h2>
{{input value=identification type="text" placeholder="Email"}} {{input value=identification type="text" placeholder="Email"}}
{{input value=password type="password" placeholder="Password"}} {{input value=password type="password" placeholder="Password"}}

View file

@ -1,3 +1,6 @@
{{#x-application invalidateSession="invalidateSession"}} {{#x-application invalidateSession="invalidateSession"}}
{{login/login-form}} {{
login/login-form
on-submit=(action "authenticate")
}}
{{/x-application}} {{/x-application}}