framework/ember/app/controllers/index.js
Toby Zerner 976d97877b Improve global back button. Goes back to previous interface.
It’s not quite like the browser’s back button because it doesn’t
necessarily go back to the last URL; rather, it goes back to the last
interface. So if you go into a discussion, then go to a different
discussion via the side pane, the back button will still take you back
to the index (not the previous discussion).
2015-03-20 10:40:42 +10:30

69 lines
2.0 KiB
JavaScript

import Ember from 'ember';
import DiscussionResult from 'flarum/models/discussion-result';
import PostResult from 'flarum/models/post-result';
import Paneable from 'flarum/mixins/paneable';
import ComposerDiscussion from 'flarum/components/composer/composer-discussion';
import AlertMessage from 'flarum/components/ui/alert-message';
import UseComposer from 'flarum/mixins/use-composer';
export default Ember.Controller.extend(UseComposer, Paneable, {
needs: ['application', 'index/index', 'discussion'],
composer: Ember.inject.controller('composer'),
alerts: Ember.inject.controller('alerts'),
index: Ember.computed.alias('controllers.index/index'),
paneDisabled: Ember.computed.not('index.model.length'),
saveDiscussion: function(data) {
var discussion = this.store.createRecord('discussion', {
title: data.title,
content: data.content
});
var controller = this;
return this.saveAndDismissComposer(discussion).then(function(discussion) {
if (discussion) {
controller.get('index').send('loadResults');
controller.transitionToRoute('discussion', discussion);
}
});
},
actions: {
loadMore: function() {
this.get('index').send('loadMore');
},
markAllAsRead: function() {
var user = this.get('session.user');
user.set('readTime', new Date);
user.save();
},
newDiscussion: function() {
var controller = this;
if (this.get('session.isAuthenticated')) {
this.showComposer(function() {
return ComposerDiscussion.create({
user: controller.get('session.user'),
submit: function(data) {
controller.saveDiscussion(data);
}
});
});
} else {
this.send('signup');
}
},
discussionRemoved: function(discussion) {
if (this.get('controllers.discussion.model') === discussion) {
this.transitionToRoute('index');
}
this.get('index').send('discussionRemoved', discussion);
}
}
});