2014-12-20 14:26:46 +08:00
|
|
|
import Ember from 'ember';
|
2015-01-30 09:51:18 +08:00
|
|
|
import ApplicationRouteMixin from 'simple-auth/mixins/application-route-mixin';
|
|
|
|
|
|
|
|
export default Ember.Route.extend(ApplicationRouteMixin, {
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
login: function() {
|
|
|
|
this.controllerFor('login').set('error', null);
|
2015-02-08 13:29:39 +08:00
|
|
|
this.send('showModal', 'login');
|
|
|
|
},
|
|
|
|
|
|
|
|
signup: function() {
|
|
|
|
this.controllerFor('signup').set('error', null);
|
|
|
|
this.send('showModal', 'signup');
|
|
|
|
},
|
|
|
|
|
|
|
|
showModal: function(name) {
|
|
|
|
this.render(name, {
|
2015-01-30 09:51:18 +08:00
|
|
|
into: 'application',
|
|
|
|
outlet: 'modal'
|
|
|
|
});
|
2015-02-08 13:29:39 +08:00
|
|
|
this.controllerFor('application').set('modalController', this.controllerFor(name));
|
2015-01-30 09:51:18 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
closeModal: function() {
|
2015-02-08 13:29:39 +08:00
|
|
|
this.controllerFor('application').set('modalController', null);
|
|
|
|
},
|
|
|
|
|
|
|
|
destroyModal: function() {
|
2015-01-30 09:51:18 +08:00
|
|
|
this.disconnectOutlet({
|
|
|
|
outlet: 'modal',
|
|
|
|
parentView: 'application'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-02-08 13:29:39 +08:00
|
|
|
sessionChanged: function() {
|
2015-01-30 09:51:18 +08:00
|
|
|
this.refresh();
|
2015-02-08 13:29:39 +08:00
|
|
|
}
|
2015-01-30 09:51:18 +08:00
|
|
|
}
|
2015-02-08 13:29:39 +08:00
|
|
|
});
|