2017-01-07 09:49:13 -05:00
|
|
|
/*
|
2016-05-07 18:29:33 -04:00
|
|
|
* @brief The file contains functions for text editing and commenting
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-01-07 10:16:03 -05:00
|
|
|
function insertFormatting(BBcode,id) {
|
|
|
|
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-07 18:29:33 -04:00
|
|
|
|
|
|
|
textarea = document.getElementById("comment-edit-text-" +id);
|
|
|
|
if (document.selection) {
|
|
|
|
textarea.focus();
|
|
|
|
selected = document.selection.createRange();
|
2017-01-07 10:16:03 -05:00
|
|
|
if (BBcode == "url") {
|
2016-05-07 18:29:33 -04:00
|
|
|
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
|
2017-01-07 10:16:03 -05:00
|
|
|
} else {
|
|
|
|
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
|
|
|
|
}
|
2016-05-07 18:29:33 -04:00
|
|
|
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
|
|
|
|
var start = textarea.selectionStart;
|
|
|
|
var end = textarea.selectionEnd;
|
2017-01-07 10:16:03 -05:00
|
|
|
if (BBcode == "url") {
|
2016-05-07 18:29:33 -04:00
|
|
|
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
|
2017-01-07 10:16:03 -05:00
|
|
|
} else {
|
|
|
|
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
|
|
|
|
}
|
2016-05-07 18:29:33 -04:00
|
|
|
}
|
2017-01-07 10:16:03 -05:00
|
|
|
|
2016-05-07 18:29:33 -04: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
function commentClose(obj,id) {
|
2017-01-07 10:13:55 -05:00
|
|
|
if (obj.value == '') {
|
2016-05-07 18:29:33 -04: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) {
|
|
|
|
if( $('#comment-edit-form-' + id).is(':visible')) {
|
|
|
|
$('#comment-edit-form-' + id).hide();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('#comment-edit-form-' + id).show();
|
|
|
|
}
|
|
|
|
}
|
2016-05-07 19:31:30 -04:00
|
|
|
|
|
|
|
function commentOpenUI(obj, id) {
|
2017-02-16 07:06:11 -05: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
|
|
|
|
$("#comment-edit-text-" + id).attr('tabindex','9');
|
|
|
|
$("#comment-edit-submit-" + id).attr('tabindex','10');
|
|
|
|
$("#comment-edit-submit-wrapper-" + id).show();
|
|
|
|
// initialize autosize for this comment
|
|
|
|
autosize($("#comment-edit-text-" + id + ".text-autosize"));
|
2016-05-07 19:31:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function commentCloseUI(obj, id) {
|
2017-02-16 07:06:11 -05: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-07 19:31:30 -04:00
|
|
|
}
|
2016-05-09 15:08:11 -04:00
|
|
|
|
|
|
|
function jotTextOpenUI(obj) {
|
2017-01-07 10:06:03 -05:00
|
|
|
if (obj.value == '') {
|
2016-05-09 15:08:11 -04:00
|
|
|
$(".modal-body #profile-jot-text").addClass("profile-jot-text-full").removeClass("profile-jot-text-empty");
|
2016-08-23 10:48:13 -04:00
|
|
|
// initiale autosize for the jot
|
|
|
|
autosize($(".modal-body #profile-jot-text"));
|
2016-05-09 15:08:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function jotTextCloseUI(obj) {
|
2017-01-07 10:06:03 -05:00
|
|
|
if (obj.value === '') {
|
2016-05-09 15:08:11 -04:00
|
|
|
$(".modal-body #profile-jot-text").removeClass("profile-jot-text-full").addClass("profile-jot-text-empty");
|
2016-08-23 10:48:13 -04:00
|
|
|
// destroy the automatic textarea resizing
|
|
|
|
autosize.destroy($(".modal-body #profile-jot-text"));
|
2016-05-09 15:08:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-07 19:31:30 -04:00
|
|
|
function commentOpen(obj,id) {
|
2017-01-07 10:13:55 -05:00
|
|
|
if (obj.value == '') {
|
2016-05-07 19:31:30 -04: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
function commentInsert(obj,id) {
|
|
|
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
2017-01-07 10:13:55 -05:00
|
|
|
if (tmpStr == '') {
|
2016-05-07 19:31:30 -04: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();
|
|
|
|
ins = ins.replace('<','<');
|
|
|
|
ins = ins.replace('>','>');
|
|
|
|
ins = ins.replace('&','&');
|
|
|
|
ins = ins.replace('"','"');
|
|
|
|
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
|
|
|
}
|
|
|
|
|
|
|
|
function qCommentInsert(obj,id) {
|
|
|
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
2017-01-07 10:13:55 -05:00
|
|
|
if (tmpStr == '') {
|
2016-05-07 19:31:30 -04: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();
|
|
|
|
ins = ins.replace('<','<');
|
|
|
|
ins = ins.replace('>','>');
|
|
|
|
ins = ins.replace('&','&');
|
|
|
|
ins = ins.replace('"','"');
|
|
|
|
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
|
|
|
$(obj).val('');
|
|
|
|
}
|
|
|
|
|
|
|
|
function confirmDelete() { return confirm(aStr.delitem); }
|
2016-05-11 10:04:11 -04:00
|
|
|
|
|
|
|
function dropItem(url, object) {
|
|
|
|
var confirm = confirmDelete();
|
2016-09-06 21:22:02 -04:00
|
|
|
|
|
|
|
//if the first character of the object is #, remove it because
|
|
|
|
// we use getElementById which don't need the #
|
|
|
|
// getElementByID selects elements even if there are special characters
|
|
|
|
// in the ID (like %) which won't work with jQuery
|
|
|
|
/// @todo ceck if we can solve this in the template
|
|
|
|
object = object.indexOf('#') == 0 ? object.substring(1) : object;
|
|
|
|
|
2016-05-11 10:04:11 -04:00
|
|
|
if(confirm) {
|
|
|
|
$('body').css('cursor', 'wait');
|
2016-09-06 21:22:02 -04:00
|
|
|
$(document.getElementById(object)).fadeTo('fast', 0.33, function () {
|
2016-05-11 10:04:11 -04:00
|
|
|
$.get(url).done(function() {
|
2016-09-06 21:22:02 -04:00
|
|
|
$(document.getElementById(object)).remove();
|
2016-05-11 10:04:11 -04:00
|
|
|
$('body').css('cursor', 'auto');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|