2015-04-25 20:58:39 +08:00
|
|
|
import Model from 'flarum/model';
|
|
|
|
import computed from 'flarum/utils/computed';
|
|
|
|
import ItemList from 'flarum/utils/item-list';
|
2015-05-02 07:06:59 +08:00
|
|
|
import DiscussionPage from 'flarum/components/discussion-page';
|
|
|
|
import ActionButton from 'flarum/components/action-button';
|
|
|
|
import Separator from 'flarum/components/separator';
|
|
|
|
import ComposerReply from 'flarum/components/composer-reply';
|
2015-04-25 20:58:39 +08:00
|
|
|
|
2015-05-02 07:06:59 +08:00
|
|
|
class Discussion extends Model {
|
|
|
|
unreadCount() {
|
|
|
|
var user = app.session.user();
|
|
|
|
if (user && user.readTime() < this.lastTime()) {
|
|
|
|
return Math.max(0, this.lastPostNumber() - (this.readNumber() || 0))
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
badges() {
|
|
|
|
return new ItemList();
|
|
|
|
}
|
|
|
|
|
|
|
|
controls(context) {
|
|
|
|
var items = new ItemList();
|
|
|
|
|
|
|
|
if (context instanceof DiscussionPage) {
|
|
|
|
items.add('reply', ActionButton.component({ icon: 'reply', label: 'Reply', onclick: this.replyAction.bind(this) }));
|
|
|
|
|
|
|
|
items.add('separator', Separator.component());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.canEdit()) {
|
|
|
|
items.add('rename', ActionButton.component({ icon: 'pencil', label: 'Rename', onclick: this.renameAction.bind(this) }));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.canDelete()) {
|
|
|
|
items.add('delete', ActionButton.component({ icon: 'times', label: 'Delete', onclick: this.deleteAction.bind(this) }));
|
|
|
|
}
|
|
|
|
|
|
|
|
return items;
|
|
|
|
}
|
|
|
|
|
|
|
|
replyAction() {
|
|
|
|
if (app.session.user()) {
|
|
|
|
if (app.current.discussion && app.current.discussion().id() === this.id()) {
|
|
|
|
app.current.streamContent.goToLast();
|
|
|
|
}
|
|
|
|
app.composer.load(new ComposerReply({
|
|
|
|
user: app.session.user(),
|
|
|
|
discussion: this
|
|
|
|
}));
|
|
|
|
app.composer.show();
|
|
|
|
} else {
|
|
|
|
// signup
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteAction() {
|
|
|
|
if (confirm('Are you sure you want to delete this discussion?')) {
|
|
|
|
this.delete();
|
|
|
|
if (app.cache.discussionList) {
|
|
|
|
app.cache.discussionList.removeDiscussion(this);
|
|
|
|
}
|
|
|
|
if (app.current.discussion && app.current.discussion().id() === this.id()) {
|
|
|
|
app.history.back();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
renameAction() {
|
|
|
|
var currentTitle = this.title();
|
|
|
|
var title = prompt('Enter a new title for this discussion:', currentTitle);
|
|
|
|
if (title && title !== currentTitle) {
|
|
|
|
this.save({title}).then(discussion => {
|
|
|
|
if (app.current.discussion && app.current.discussion().id() === discussion.id()) {
|
|
|
|
discussion.addedPosts().forEach(post => app.current.stream().addPostToEnd(post));
|
|
|
|
}
|
|
|
|
m.redraw();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-25 20:58:39 +08:00
|
|
|
|
|
|
|
Discussion.prototype.id = Model.prop('id');
|
|
|
|
Discussion.prototype.title = Model.prop('title');
|
|
|
|
Discussion.prototype.slug = computed('title', title => title.toLowerCase().replace(/[^a-z0-9]/gi, '-').replace(/-+/g, '-').replace(/-$|^-/g, ''));
|
|
|
|
|
|
|
|
Discussion.prototype.startTime = Model.prop('startTime', Model.date);
|
|
|
|
Discussion.prototype.startUser = Model.one('startUser');
|
|
|
|
Discussion.prototype.startPost = Model.one('startPost');
|
|
|
|
|
|
|
|
Discussion.prototype.lastTime = Model.prop('lastTime', Model.date);
|
|
|
|
Discussion.prototype.lastUser = Model.one('lastUser');
|
|
|
|
Discussion.prototype.lastPost = Model.one('lastPost');
|
|
|
|
Discussion.prototype.lastPostNumber = Model.prop('lastPostNumber');
|
|
|
|
|
|
|
|
Discussion.prototype.canReply = Model.prop('canReply');
|
|
|
|
Discussion.prototype.canEdit = Model.prop('canEdit');
|
|
|
|
Discussion.prototype.canDelete = Model.prop('canDelete');
|
|
|
|
|
|
|
|
Discussion.prototype.commentsCount = Model.prop('commentsCount');
|
|
|
|
Discussion.prototype.repliesCount = computed('commentsCount', commentsCount => commentsCount - 1);
|
|
|
|
|
|
|
|
Discussion.prototype.posts = Model.many('posts');
|
|
|
|
Discussion.prototype.relevantPosts = Model.many('relevantPosts');
|
|
|
|
Discussion.prototype.addedPosts = Model.many('addedPosts');
|
2015-05-02 07:06:59 +08:00
|
|
|
Discussion.prototype.removedPosts = Model.prop('removedPosts');
|
2015-04-25 20:58:39 +08:00
|
|
|
|
|
|
|
Discussion.prototype.readTime = Model.prop('readTime', Model.date);
|
|
|
|
Discussion.prototype.readNumber = Model.prop('readNumber');
|
|
|
|
|
|
|
|
Discussion.prototype.isUnread = computed('unreadCount', unreadCount => !!unreadCount);
|
|
|
|
|
|
|
|
export default Discussion;
|