WIP
This commit is contained in:
parent
2d5e2c4be7
commit
73461d4048
4 changed files with 15 additions and 14 deletions
|
@ -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(() => {
|
||||
|
|
|
@ -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'));
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -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"}}
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
{{#x-application invalidateSession="invalidateSession"}}
|
||||
{{login/login-form}}
|
||||
{{
|
||||
login/login-form
|
||||
on-submit=(action "authenticate")
|
||||
}}
|
||||
{{/x-application}}
|
||||
|
|
Reference in a new issue