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';
export default Ember.Controller.extend({
session: Ember.inject.service('session'),
const { Controller, inject: { service } } = Ember;
export default Controller.extend({
session: service(),
actions: {
authenticate: function() {
authenticate: function(identification, password) {
// Manually clean up because there might not be a transition
this.get('flashMessages').clearMessages();
let { identification, password } = this.getProperties('identification', 'password');
this.transitionToRoute('loading').then(() => {
this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => {
this.transitionToRoute('login').then(() => {

View file

@ -4,19 +4,16 @@ const { Component } = Ember;
export default Component.extend({
// Actions
"on-save": null,
"on-cancel": null,
"on-update": null,
"add-characteristic": null,
"save-measurement": null,
"delete-measurement": null,
"on-submit": null,
// Property mapping
propertiesList: ['identification', 'password'],
identification: null,
password: null,
updateField: function(property, value) {
this.set(property, value);
actions: {
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>
{{input value=identification type="text" placeholder="Email"}}
{{input value=password type="password" placeholder="Password"}}

View file

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