2017-01-07 15:49:13 +01:00
|
|
|
/*
|
2016-05-08 00:29:33 +02:00
|
|
|
* @brief The file contains functions for text editing and commenting
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-05-21 19:40:51 +02:00
|
|
|
function insertFormatting(BBcode, id) {
|
2017-01-07 16:16:03 +01:00
|
|
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
|
|
|
if (tmpStr == '') {
|
|
|
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
|
|
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
|
|
|
openMenu("comment-edit-submit-wrapper-" + id);
|
|
|
|
}
|
2016-05-08 00:29:33 +02:00
|
|
|
|
2017-05-21 19:40:51 +02:00
|
|
|
textarea = document.getElementById("comment-edit-text-" + id);
|
2016-05-08 00:29:33 +02:00
|
|
|
if (document.selection) {
|
|
|
|
textarea.focus();
|
|
|
|
selected = document.selection.createRange();
|
2017-05-21 19:41:28 +02:00
|
|
|
selected.text = "[" + BBcode + "]" + selected.text + "[/" + BBcode + "]";
|
2016-05-08 00:29:33 +02:00
|
|
|
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
|
|
|
|
var start = textarea.selectionStart;
|
|
|
|
var end = textarea.selectionEnd;
|
2017-05-21 19:41:28 +02:00
|
|
|
textarea.value = textarea.value.substring(0, start) + "[" + BBcode + "]" + textarea.value.substring(start, end) + "[/" + BBcode + "]" + textarea.value.substring(end, textarea.value.length);
|
2016-05-08 00:29:33 +02:00
|
|
|
}
|
2017-01-07 16:16:03 +01:00
|
|
|
|
2017-04-19 04:04:23 +02:00
|
|
|
$(textarea).trigger('change');
|
|
|
|
|
2016-05-08 00:29:33 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function showThread(id) {
|
|
|
|
$("#collapsed-comments-" + id).show()
|
|
|
|
$("#collapsed-comments-" + id + " .collapsed-comments").show()
|
|
|
|
}
|
|
|
|
function hideThread(id) {
|
|
|
|
$("#collapsed-comments-" + id).hide()
|
|
|
|
$("#collapsed-comments-" + id + " .collapsed-comments").hide()
|
|
|
|
}
|
|
|
|
|
|
|
|
function cmtBbOpen(id) {
|
|
|
|
$("#comment-edit-bb-" + id).show();
|
|
|
|
}
|
|
|
|
function cmtBbClose(id) {
|
|
|
|
$("#comment-edit-bb-" + id).hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
function commentExpand(id) {
|
|
|
|
$("#comment-edit-text-" + id).value = '';
|
|
|
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
|
|
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
|
|
|
$("#comment-edit-text-" + id).focus();
|
|
|
|
$("#mod-cmnt-wrap-" + id).show();
|
|
|
|
openMenu("comment-edit-submit-wrapper-" + id);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-21 19:40:51 +02:00
|
|
|
function commentClose(obj, id) {
|
2017-01-07 16:13:55 +01:00
|
|
|
if (obj.value == '') {
|
2016-05-08 00:29:33 +02:00
|
|
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
|
|
|
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
|
|
|
|
$("#mod-cmnt-wrap-" + id).hide();
|
|
|
|
closeMenu("comment-edit-submit-wrapper-" + id);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function showHideCommentBox(id) {
|
2017-05-21 19:40:51 +02:00
|
|
|
if ($('#comment-edit-form-' + id).is(':visible')) {
|
2016-05-08 00:29:33 +02:00
|
|
|
$('#comment-edit-form-' + id).hide();
|
2017-05-21 19:40:51 +02:00
|
|
|
} else {
|
2016-05-08 00:29:33 +02:00
|
|
|
$('#comment-edit-form-' + id).show();
|
|
|
|
}
|
|
|
|
}
|
2016-05-08 01:31:30 +02:00
|
|
|
|
|
|
|
function commentOpenUI(obj, id) {
|
2017-02-16 13:06:11 +01:00
|
|
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full").removeClass("comment-edit-text-empty");
|
|
|
|
// Choose an arbitrary tab index that's greater than what we're using in jot (3 of them)
|
|
|
|
// The submit button gets tabindex + 1
|
2017-05-21 19:40:51 +02:00
|
|
|
$("#comment-edit-text-" + id).attr('tabindex', '9');
|
|
|
|
$("#comment-edit-submit-" + id).attr('tabindex', '10');
|
2017-02-16 13:06:11 +01:00
|
|
|
$("#comment-edit-submit-wrapper-" + id).show();
|
|
|
|
// initialize autosize for this comment
|
|
|
|
autosize($("#comment-edit-text-" + id + ".text-autosize"));
|
2016-05-08 01:31:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function commentCloseUI(obj, id) {
|
2017-02-16 13:06:11 +01:00
|
|
|
if (obj.value === '') {
|
|
|
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full").addClass("comment-edit-text-empty");
|
|
|
|
$("#comment-edit-text-" + id).removeAttr('tabindex');
|
|
|
|
$("#comment-edit-submit-" + id).removeAttr('tabindex');
|
|
|
|
$("#comment-edit-submit-wrapper-" + id).hide();
|
|
|
|
// destroy the automatic textarea resizing
|
|
|
|
autosize.destroy($("#comment-edit-text-" + id + ".text-autosize"));
|
|
|
|
}
|
2016-05-08 01:31:30 +02:00
|
|
|
}
|
2016-05-09 21:08:11 +02:00
|
|
|
|
|
|
|
function jotTextOpenUI(obj) {
|
2017-01-07 16:06:03 +01:00
|
|
|
if (obj.value == '') {
|
2016-05-09 21:08:11 +02:00
|
|
|
$(".modal-body #profile-jot-text").addClass("profile-jot-text-full").removeClass("profile-jot-text-empty");
|
2016-08-23 16:48:13 +02:00
|
|
|
// initiale autosize for the jot
|
|
|
|
autosize($(".modal-body #profile-jot-text"));
|
2016-05-09 21:08:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function jotTextCloseUI(obj) {
|
2017-01-07 16:06:03 +01:00
|
|
|
if (obj.value === '') {
|
2016-05-09 21:08:11 +02:00
|
|
|
$(".modal-body #profile-jot-text").removeClass("profile-jot-text-full").addClass("profile-jot-text-empty");
|
2016-08-23 16:48:13 +02:00
|
|
|
// destroy the automatic textarea resizing
|
|
|
|
autosize.destroy($(".modal-body #profile-jot-text"));
|
2016-05-09 21:08:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-21 19:40:51 +02:00
|
|
|
function commentOpen(obj, id) {
|
2017-01-07 16:13:55 +01:00
|
|
|
if (obj.value == '') {
|
2016-05-08 01:31:30 +02:00
|
|
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
|
|
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
|
|
|
$("#mod-cmnt-wrap-" + id).show();
|
|
|
|
openMenu("comment-edit-submit-wrapper-" + id);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-21 19:40:51 +02:00
|
|
|
function commentInsert(obj, id) {
|
2016-05-08 01:31:30 +02:00
|
|
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
2017-01-07 16:13:55 +01:00
|
|
|
if (tmpStr == '') {
|
2016-05-08 01:31:30 +02:00
|
|
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
|
|
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
|
|
|
openMenu("comment-edit-submit-wrapper-" + id);
|
|
|
|
}
|
|
|
|
var ins = $(obj).html();
|
2017-05-21 19:40:51 +02:00
|
|
|
ins = ins.replace('<', '<');
|
|
|
|
ins = ins.replace('>', '>');
|
|
|
|
ins = ins.replace('&', '&');
|
|
|
|
ins = ins.replace('"', '"');
|
2016-05-08 01:31:30 +02:00
|
|
|
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
|
|
|
}
|
|
|
|
|
2017-05-21 19:40:51 +02:00
|
|
|
function qCommentInsert(obj, id) {
|
2016-05-08 01:31:30 +02:00
|
|
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
2017-01-07 16:13:55 +01:00
|
|
|
if (tmpStr == '') {
|
2016-05-08 01:31:30 +02:00
|
|
|
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
|
|
|
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
|
|
|
openMenu("comment-edit-submit-wrapper-" + id);
|
|
|
|
}
|
|
|
|
var ins = $(obj).val();
|
2017-05-21 19:40:51 +02:00
|
|
|
ins = ins.replace('<', '<');
|
|
|
|
ins = ins.replace('>', '>');
|
|
|
|
ins = ins.replace('&', '&');
|
|
|
|
ins = ins.replace('"', '"');
|
2016-05-08 01:31:30 +02:00
|
|
|
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
|
|
|
$(obj).val('');
|
|
|
|
}
|
|
|
|
|
2017-05-21 19:40:51 +02:00
|
|
|
function confirmDelete() {
|
|
|
|
return confirm(aStr.delitem);
|
|
|
|
}
|
2016-05-11 16:04:11 +02:00
|
|
|
|
2017-03-13 17:12:13 +01:00
|
|
|
/**
|
|
|
|
* Hide and removes an item element from the DOM after the deletion url is
|
|
|
|
* successful, restore it else.
|
|
|
|
*
|
|
|
|
* @param {string} url The item removal URL
|
|
|
|
* @param {string} elementId The DOM id of the item element
|
|
|
|
* @returns {undefined}
|
|
|
|
*/
|
|
|
|
function dropItem(url, elementId) {
|
2016-05-11 16:04:11 +02:00
|
|
|
var confirm = confirmDelete();
|
2016-09-07 03:22:02 +02:00
|
|
|
|
2017-03-13 17:12:13 +01:00
|
|
|
if (confirm) {
|
2016-05-11 16:04:11 +02:00
|
|
|
$('body').css('cursor', 'wait');
|
2017-03-13 17:12:13 +01:00
|
|
|
|
|
|
|
var $el = $(document.getElementById(elementId));
|
|
|
|
|
|
|
|
$el.fadeTo('fast', 0.33, function () {
|
|
|
|
$.get(url).then(function() {
|
|
|
|
$el.remove();
|
2017-03-15 19:42:34 +01:00
|
|
|
}).fail(function() {
|
2017-03-13 17:12:13 +01:00
|
|
|
// @todo Show related error message
|
|
|
|
$el.show();
|
|
|
|
}).always(function() {
|
2016-05-11 16:04:11 +02:00
|
|
|
$('body').css('cursor', 'auto');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|