closes #3107
parent
8ef46ebc7d
commit
47e2dd9478
@ -0,0 +1,64 @@
|
||||
'use strict';
|
||||
|
||||
/* globals define, app, socket, templates, translator */
|
||||
|
||||
define('forum/topic/flag', [], function() {
|
||||
|
||||
var Flag = {},
|
||||
flagModal,
|
||||
flagCommit;
|
||||
|
||||
Flag.showFlagModal = function(pid) {
|
||||
parseModal(function(html) {
|
||||
flagModal = $(html);
|
||||
|
||||
flagModal.on('hidden.bs.modal', function() {
|
||||
flagModal.remove();
|
||||
});
|
||||
|
||||
flagCommit = flagModal.find('#flag-post-commit');
|
||||
|
||||
flagModal.on('click', '.flag-reason', function() {
|
||||
flagPost(pid, $(this).text());
|
||||
});
|
||||
|
||||
flagCommit.on('click', function() {
|
||||
flagPost(pid, flagModal.find('#flag-reason-custom').val());
|
||||
});
|
||||
|
||||
flagModal.modal('show');
|
||||
|
||||
flagModal.find('#flag-reason-custom').on('keyup blur change', checkFlagButtonEnable);
|
||||
});
|
||||
};
|
||||
|
||||
function parseModal(callback) {
|
||||
templates.parse('partials/modals/flag_post_modal', {}, function(html) {
|
||||
translator.translate(html, callback);
|
||||
});
|
||||
}
|
||||
|
||||
function flagPost(pid, reason) {
|
||||
if (!pid || !reason) {
|
||||
return;
|
||||
}
|
||||
socket.emit('posts.flag', {pid: pid, reason: reason}, function(err) {
|
||||
if (err) {
|
||||
return app.alertError(err.message);
|
||||
}
|
||||
|
||||
flagModal.modal('hide');
|
||||
app.alertSuccess('[[topic:flag_success]]');
|
||||
});
|
||||
}
|
||||
|
||||
function checkFlagButtonEnable() {
|
||||
if (flagModal.find('#flag-reason-custom').val()) {
|
||||
flagCommit.removeAttr('disabled');
|
||||
} else {
|
||||
flagCommit.attr('disabled', true);
|
||||
}
|
||||
}
|
||||
|
||||
return Flag;
|
||||
});
|
Loading…
Reference in New Issue