discourse/app/assets/javascripts/admin/models/flagged_post.js

121 lines
3.1 KiB
JavaScript
Raw Normal View History

/**
Our data model for interacting with flagged posts.
@class FlaggedPost
@extends Discourse.Post
@namespace Discourse
@module Discourse
**/
Discourse.FlaggedPost = Discourse.Post.extend({
2013-06-17 03:15:56 -04:00
summary: function(){
return _(this.post_actions)
2013-06-26 02:00:17 -04:00
.groupBy(function(a){ return a.post_action_type_id; })
2013-06-17 03:15:56 -04:00
.map(function(v,k){
return Em.String.i18n('admin.flags.summary.action_type_' + k, {count: v.length});
2013-06-17 03:15:56 -04:00
})
.join(',');
2013-06-17 03:15:56 -04:00
}.property(),
flaggers: function() {
var r,
_this = this;
r = [];
_.each(this.post_actions, function(action) {
var user = _this.userLookup[action.user_id];
var flagType = Em.String.i18n('admin.flags.summary.action_type_' + action.post_action_type_id, {count: 1});
r.push({user: user, flagType: flagType, flaggedAt: action.created_at});
});
return r;
}.property(),
messages: function() {
var r,
_this = this;
r = [];
_.each(this.post_actions,function(action) {
if (action.message) {
r.push({
user: _this.userLookup[action.user_id],
message: action.message,
permalink: action.permalink
});
}
});
return r;
}.property(),
lastFlagged: function() {
return this.post_actions[0].created_at;
}.property(),
user: function() {
return this.userLookup[this.user_id];
}.property(),
topicHidden: function() {
2013-06-26 02:00:17 -04:00
return !this.get('topic_visible');
}.property('topic_hidden'),
deletePost: function() {
if (this.get('post_number') === '1') {
return Discourse.ajax('/t/' + this.topic_id, { type: 'DELETE', cache: false });
} else {
return Discourse.ajax('/posts/' + this.id, { type: 'DELETE', cache: false });
}
},
disagreeFlags: function() {
return Discourse.ajax('/admin/flags/disagree/' + this.id, { type: 'POST', cache: false });
},
deferFlags: function() {
return Discourse.ajax('/admin/flags/defer/' + this.id, { type: 'POST', cache: false });
},
agreeFlags: function() {
return Discourse.ajax('/admin/flags/agree/' + this.id, { type: 'POST', cache: false });
},
postHidden: function() {
2013-06-26 02:00:17 -04:00
return (this.get('hidden'));
}.property(),
extraClasses: function() {
var classes = [];
if (this.get('hidden')) {
classes.push('hidden-post');
}
if (this.get('deleted')){
classes.push('deleted');
}
return classes.join(' ');
}.property(),
deleted: function() {
return (this.get('deleted_at') || this.get('topic_deleted_at'));
}.property()
});
Discourse.FlaggedPost.reopenClass({
findAll: function(filter) {
var result = Em.A();
result.set('loading', true);
Discourse.ajax('/admin/flags/' + filter + '.json').then(function(data) {
var userLookup = {};
_.each(data.users,function(user) {
userLookup[user.id] = Discourse.AdminUser.create(user);
});
_.each(data.posts,function(post) {
var f = Discourse.FlaggedPost.create(post);
f.userLookup = userLookup;
result.pushObject(f);
});
result.set('loading', false);
});
return result;
}
});