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';
|
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(() => {
|
||||||
|
|
|
@ -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'));
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -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"}}
|
||||||
|
|
|
@ -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}}
|
||||||
|
|
Reference in a new issue