<\/div>\n <\/div>\n<\/div>";
function popupCommentTextarea(comments_id, html) {
var span = document.createElement("span");
var commentTextArea = $('#comment').clone();
$(commentTextArea).attr('id', 'popupCommentTextarea');
$(commentTextArea).html(html);
span.innerHTML = $('
').append(commentTextArea).html();
swal({
title: "Commento",
content: span,
dangerMode: true,
buttons: {
cancel: "Cancel",
comment: {
text: "Commento",
value: "comment",
className: "btn-success",
},
}
}).then(function (value) {
console.log(value);
switch (value) {
case "comment":
if (!empty(html)) {
saveEditedComment(comments_id);
} else {
replyComment(comments_id);
}
break;
}
});
setupFormElement('#popupCommentTextarea', 5, commentsmaxlen, true, true);
}
function getCommentTemplate(itemsArray) {
var template = commentTemplate;
for (var search in itemsArray) {
var replace = itemsArray[search];
if (typeof replace == 'boolean') {
if (search == 'userCanAdminComment') {
if (replace) {
replace = 'userCanAdminComment';
} else {
replace = 'userCanNotAdminComment';
}
} else if (search == 'userCanEditComment') {
if (replace) {
replace = 'userCanEditComment';
} else {
replace = 'userCanNotEditComment';
}
}
} else if (search == 'myVote') {
if (replace == '1') {
replace = 'myVote1';
} else if (replace == '-1') {
replace = 'myVote-1';
} else {
replace = 'myVote0';
}
}
if (typeof replace !== 'string' && typeof replace !== 'number') {
continue;
}
if (search == 'pin') {
if (!empty(replace)) {
replace = 'isPinned';
} else {
replace = 'isNotPinned';
}
}
template = template.replace(new RegExp('{' + search + '}', 'g'), replace);
}
template = template.replace(new RegExp('{replyText}', 'g'), "Rispondi");
template = template.replace(new RegExp('{viewAllRepliesText}', 'g'), "Visualizza tutte le risposte");
template = template.replace(new RegExp('{hideRepliesText}', 'g'), "Nascondi risposte");
template = template.replace(new RegExp('{likes}', 'g'), 0);
template = template.replace(new RegExp('{dislikes}', 'g'), 0);
template = template.replace(new RegExp('{myVote}', 'g'), 'myVote0');
if (!empty(itemsArray.comments_id_pai)) {
template = template.replace(new RegExp('{isResponse}', 'g'), 'isResponse');
} else {
template = template.replace(new RegExp('{isResponse}', 'g'), 'isNotResponse');
}
return template;
}
function addComment(itemsArray, comments_id, append) {
if (typeof itemsArray === 'function') {
return false;
}
if(!empty(itemsArray.comments_id_pai)){
itemsArray.isAResponse = 'isAResponse';
}else{
itemsArray.isAResponse = 'isNotAResponse';
}
itemsArray.videoLink = itemsArray.video.link;
itemsArray.videoTitle = itemsArray.video.title;
var template = getCommentTemplate(itemsArray);
var selector = '#commentsArea ';
if (!empty(comments_id)) {
selector = '#comment_' + comments_id + ' > div.media-body > div.repliesArea ';
}
var element = '#comment_' + itemsArray.id;
if ($(element).length) {
var object = $('
').html(template);
var html = $(object).find(element).html();
$(element).html(html);
} else {
if(append){
$(selector).append(template);
}else{
$(selector).prepend(template);
}
}
return true;
}
function toogleReplies(comments_id, t) {
var selector = '#comment_' + comments_id + ' > div.media-body > div.repliesArea ';
if ($(selector).is(':empty')) {
getComments(comments_id, 1);
}
if ($(t).hasClass('isOpen')) {
$(t).removeClass('isOpen');
$(t).addClass('isNotOpen');
$(selector).slideUp();
}else{
$(t).removeClass('isNotOpen');
$(t).addClass('isOpen');
$(selector).slideDown();
}
}
var lastLoadedPage;
function getComments(comments_id, page) {
var url = webSiteRootURL + 'objects/comments.json.php';
if(typeof commentVideos_id == 'undefined'){
commentVideos_id = 0;
}
url = addQueryStringParameter(url, 'video_id', commentVideos_id);
url = addQueryStringParameter(url, 'comments_id', comments_id);
url = addQueryStringParameter(url, 'current', page);
lastLoadedPage = page;
$.ajax({
url: url,
success: function (response) {
if (response.error) {
avideoAlertError(response.msg);
} else {
var selector = '#commentsArea ';
if (!empty(comments_id)) {
selector = '#comment_' + comments_id + ' > div.media-body > div.repliesArea ';
}else{
if(empty(response.rows) || response.total < response.rowCount){
if(page>1){
avideoToastInfo('Finished');
}
$('#commentLoadMoreBtn').fadeOut();
}
}
if(page<=1){
$(selector).empty();
}
for (var i in response.rows) {
var row = response.rows[i];
if(typeof row === 'function'){
continue;
}
//console.log('getComments', comments_id, page, typeof row);
addComment(row, comments_id, true);
}
}
}
});
}
function saveComment() {
return _saveComment($('#comment').val(), commentVideos_id, 0, 0);
}
function deleteComment(comments_id) {
swal({
title: "Are you sure?",
text: "Non potrai recuperare questa azione!",
icon: "warning",
buttons: true,
dangerMode: true,
}).then(function (willDelete) {
if (willDelete) {
modal.showPleaseWait();
$.ajax({
url: webSiteRootURL + 'objects/commentDelete.json.php',
method: 'POST',
data: {'id': comments_id},
success: function (response) {
if (!response.error) {
var selector = '#comment_' + comments_id;
$(selector).slideUp('fast', function () {
$(this).remove();
});
}
avideoResponse(response);
modal.hidePleaseWait();
}
});
}
});
}
function editComment(id) {
modal.showPleaseWait();
var url = webSiteRootURL + 'objects/comments.json.php';
url = addQueryStringParameter(url, 'id', id);
$.ajax({
url: url,
success: function (response) {
modal.hidePleaseWait();
if (response.error) {
avideoAlertError(response.msg);
} else {
console.log(response);
if (empty(response.rows)) {
avideoAlertError('No response from comments');
} else {
popupCommentTextarea(id, response.rows[0].commentPlain);
}
}
}
});
}
function saveEditedComment(id) {
return _saveComment($('#popupCommentTextarea').val(), commentVideos_id, 0, id);
}
function replyComment(comments_id) {
return _saveComment($('#popupCommentTextarea').val(), commentVideos_id, comments_id, 0);
}
function _saveComment(comment, video, comments_id, id) {
if (comment.length > 5) {
modal.showPleaseWait();
$.ajax({
url: webSiteRootURL + 'objects/commentAddNew.json.php',
method: 'POST',
data: {'comment': comment, 'video': video, 'comments_id': comments_id, 'id': id, 'comment_users_id': $('#comment_users_id').val()},
success: function (response) {
avideoResponse(response);
if (!response.error) {
if (!empty(response.comment)) {
addComment(response.comment, response.replyed_to, false);
}
}
modal.hidePleaseWait();
$('#comment, #popupCommentTextarea').html('');
$('#comment, #popupCommentTextarea').val('');
}
});
} else {
avideoAlertError("Il tuo commento deve essere più grande di 5 caratteri!");
}
}
function pinComment(comments_id) {
modal.showPleaseWait();
var url = webSiteRootURL + 'objects/commentPinToogle.json.php';
url = addQueryStringParameter(url, 'comments_id', comments_id);
$.ajax({
url: url,
success: function (response) {
avideoResponse(response);
if (!response.error) {
getComments(0, 1);
}
modal.hidePleaseWait();
}
});
}
function saveCommentLikeDislike(comments_id, like) {
$.ajax({
url: webSiteRootURL + 'objects/comments_like.json.php?like=' + like,
method: 'POST',
data: {'comments_id': comments_id},
success: function (response) {
var selector = '#comment_' + comments_id;
$(selector).removeClass("myVote0 myVote1 myVote-1");
$(selector).addClass('myVote' + response.myVote);
$(selector + " .commentLikeBtn > small").attr('class', '');
$(selector + " .commentDislikeBtn > small").attr('class', '');
$(selector + " .commentLikeBtn > small").addClass('totalLikes' + response.likes);
$(selector + " .commentDislikeBtn > small").addClass('totalDislikes' + response.dislikes);
$(selector + " .commentLikeBtn > small").text(response.likes);
$(selector + " .commentDislikeBtn > small").text(response.dislikes);
}
});
}
function addCommentCount(comments_id, total) {
var selector = '.comment_' + comments_id + ' .total_replies';
$(selector).text(parseInt($(selector).text()) + total);
}
$(document).ready(function () {
getComments(0, 1);
});
$(document).ready(function () {
$("#shareDiv").slideUp();
$("#shareBtn").click(function () {
$(".menusDiv").not("#shareDiv").slideUp();
$("#shareDiv").slideToggle();
return false;
});
});
var fading = false;