You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.2 KiB
JavaScript

'use strict';
define('flags', function () {
var Flag = {};
var flagModal;
var flagCommit;
var flagReason;
Flag.showFlagModal = function (data) {
app.parseAndTranslate('partials/modals/flag_modal', data, function (html) {
flagModal = $(html);
flagModal.on('hidden.bs.modal', function () {
flagModal.remove();
});
flagCommit = flagModal.find('#flag-post-commit');
flagReason = flagModal.find('#flag-reason-custom');
// Quick-report buttons
flagModal.on('click', '.flag-reason', function () {
var reportText = $(this).text();
if (flagReason.val().length === 0) {
return createFlag(data.type, data.id, reportText);
}
// Custom reason has text, confirm submission
bootbox.confirm({
title: '[[flags:modal-submit-confirm]]',
message: '<p>[[flags:modal-submit-confirm-text]]</p><p class="help-block">[[flags:modal-submit-confirm-text-help]]</p>',
callback: function (result) {
if (result) {
createFlag(data.type, data.id, reportText);
}
},
});
});
// Custom reason report submission
flagCommit.on('click', function () {
createFlag(data.type, data.id, flagModal.find('#flag-reason-custom').val());
});
flagModal.on('click', '.toggle-custom', function () {
flagReason.prop('disabled', false);
flagReason.focus();
});
flagModal.modal('show');
$(window).trigger('action:flag.showModal', {
modalEl: flagModal,
type: data.type,
id: data.id,
});
flagModal.find('#flag-reason-custom').on('keyup blur change', checkFlagButtonEnable);
});
};
function createFlag(type, id, reason) {
if (!type || !id || !reason) {
return;
}
var data = { type: type, id: id, reason: reason };
socket.emit('flags.create', data, function (err, flagId) {
if (err) {
return app.alertError(err.message);
}
flagModal.modal('hide');
app.alertSuccess('[[flags:modal-submit-success]]');
$(window).trigger('action:flag.create', { flagId: flagId, data: data });
});
}
function checkFlagButtonEnable() {
if (flagModal.find('#flag-reason-custom').val()) {
flagCommit.removeAttr('disabled');
} else {
flagCommit.attr('disabled', true);
}
}
return Flag;
});