|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
x2.ActivityFeed = (function () { |
|
function ActivityFeed (argsDict) { |
|
var that = this; |
|
argsDict = typeof argsDict === 'undefined' ? {} : argsDict; |
|
|
|
var defaultArgs = { |
|
DEBUG: false && x2.DEBUG, |
|
usersGroups: null, |
|
minimizeFeed: null, |
|
commentFlag: null, |
|
lastEventId: null, |
|
lastTimestamp: null, |
|
profileId: null, |
|
myProfileId: null, |
|
deletePostUrl: null, |
|
translations: {} |
|
}; |
|
|
|
auxlib.applyArgs (this, defaultArgs, argsDict); |
|
|
|
|
|
this.timeout = null; |
|
|
|
|
|
this.editorManualResize = false; |
|
|
|
|
|
that.editorIsExpanded = false; |
|
|
|
this._init (); |
|
|
|
this.setUpOpacityScreen (); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype.destroyErrorBox = function (parentElem) { |
|
var that = this; |
|
var $errorBox = $(parentElem).find ('.error-summary-container'); |
|
if ($errorBox.length !== 0) { |
|
$errorBox.remove (); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype.createErrorBox = function (errorHeader, errorMessages) { |
|
var that = this; |
|
var errorBox = $('<div>', {'class': 'error-summary-container'}).append ( |
|
$("<div>", { 'class': "error-summary"}).append ( |
|
$("<p>", { text: errorHeader }), |
|
$("<ul>") |
|
)); |
|
for (var i in errorMessages) { |
|
var msg = errorMessages[i]; |
|
$(errorBox).find ('.error-summary'). |
|
find ('ul').append ($("<li> " + msg + " </li>")); |
|
} |
|
return errorBox; |
|
} |
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype.publishPostAndroid = function () { |
|
var that = this; |
|
$.ajax({ |
|
url:"publishPost", |
|
type:"POST", |
|
data:{ |
|
"text":$("#Events_text").val(), |
|
"associationId":$("#Events_associationId").val(), |
|
"visibility":$("#Events_visibility").val(), |
|
"subtype":$("#Events_subtype").val() |
|
}, |
|
success:function(){ |
|
$("#save-button").removeClass("highlight"); |
|
$("#Events_text").val(""); |
|
var textarea=document.getElementById("Events_text"); |
|
x2.forms.toggleText(textarea); |
|
$(textarea).css("height","25px"); |
|
$(textarea).next().slideUp(400); |
|
$('#feed-form textarea').blur (); |
|
} |
|
}); |
|
|
|
return false; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype.publishPost = function () { |
|
var that = this; |
|
if (typeof x2.attachments !== 'undefined' && x2.attachments.fileIsUploaded ()) { |
|
|
|
return; |
|
} |
|
|
|
var editorText = window.newPostEditor.getData(); |
|
|
|
if (!editorText.match (/<br \/>\\n $/)) { |
|
editorText += "<br />\n "; |
|
} |
|
|
|
|
|
var editorOverlay = $("<div>", {"id": "editor-overlay"}).css ({ |
|
"width": $("#post-form").css ("width"), |
|
"height": $("#post-form").css ("height"), |
|
"position": "absolute" |
|
}); |
|
$("#post-form").after ($(editorOverlay)); |
|
$(editorOverlay).position ({ |
|
my: "left top", |
|
at: "left+10 top", |
|
of: $("#post-form") |
|
}); |
|
|
|
that.initMinimizeEditor (); |
|
|
|
$.ajax({ |
|
url:"publishPost", |
|
type:"POST", |
|
data:{ |
|
|
|
"text":editorText, |
|
"associationId":$("#Events_associationId").val(), |
|
"visibility":$("#Events_visibility").val(), |
|
"subtype":$("#Events_subtype").val() |
|
}, |
|
success:function(){ |
|
that.finishMinimizeEditor (); |
|
}, |
|
failure:function(){ |
|
window.newPostEditor.focusManager.unlock (); |
|
}, |
|
complete:function(){ |
|
$(editorOverlay).remove (); |
|
} |
|
}); |
|
return false; |
|
} |
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype.animateEditorVerticalResize = function (initialHeight, newHeight, |
|
animationTime ) { |
|
var that = this; |
|
if (that.editorManualResize) { |
|
return; |
|
} |
|
|
|
|
|
var heightDifference = Math.abs (newHeight - initialHeight); |
|
var delay = 50; |
|
var steps = Math.ceil (animationTime / delay); |
|
var delta = Math.ceil (heightDifference / steps); |
|
|
|
var lastStepSize = delta; |
|
|
|
|
|
if (steps * delta > heightDifference) { |
|
lastStepSize = heightDifference - (steps - 1) * delta; |
|
} |
|
|
|
|
|
var increaseHeight = newHeight - initialHeight > 0 ? true : false; |
|
if (!increaseHeight) delta *= -1; |
|
var currentHeight = initialHeight; |
|
|
|
if (that.timeout !== null) { |
|
window.clearTimeout (that.timeout); |
|
} |
|
that.timeout = window.setTimeout (function resizeTimeout () { |
|
if (--steps === 0) { |
|
delta = lastStepSize; |
|
if (!increaseHeight) delta *= -1; |
|
} |
|
window.newPostEditor.resize ("100%", currentHeight + delta, true); |
|
currentHeight += delta; |
|
if (increaseHeight && currentHeight < newHeight) { |
|
that.timeout = setTimeout (resizeTimeout, delay); |
|
} else if (!increaseHeight && currentHeight > newHeight) { |
|
that.timeout = setTimeout (resizeTimeout, delay); |
|
} |
|
}, delay); |
|
} |
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype.removeCursorFromEditor = function () { |
|
var that = this; |
|
$("#post-form").append ($("<input>", {"id": "dummy-input"})); |
|
var x = window.scrollX; |
|
var y = window.scrollY; |
|
$("#dummy-input").focus (); |
|
window.scrollTo (x, y); |
|
$("#dummy-input").remove (); |
|
} |
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype.finishMinimizeEditor = function () { |
|
var that = this; |
|
|
|
if ($("[title='Collapse Toolbar']").length !== 0) { |
|
window.newPostEditor.execCommand ("toolbarCollapse"); |
|
} |
|
var editorCurrentHeight = parseInt ( |
|
window.newPostEditor.ui.space ( |
|
"contents").getStyle("height").replace (/px/, ""), 10); |
|
var editorMinHeight = window.newPostEditor.config.height; |
|
that.animateEditorVerticalResize (editorCurrentHeight, editorMinHeight, 300); |
|
if (window.newPostEditor.getData () !== "") { |
|
window.newPostEditor.setData ("", function () { |
|
window.newPostEditor.fire ("blur"); |
|
}); |
|
} |
|
$("#save-button").removeClass("highlight"); |
|
$("#post-buttons").slideUp (400); |
|
that.editorIsExpanded = false; |
|
|
|
|
|
that.removeCursorFromEditor (); |
|
|
|
window.newPostEditor.focusManager.unlock (); |
|
|
|
$("#attachments").hide (); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype.initMinimizeEditor = function () { |
|
var that = this; |
|
window.newPostEditor.focusManager.blur (true); |
|
window.newPostEditor.focusManager.lock (); |
|
} |
|
|
|
|
|
|
|
ActivityFeed.prototype.attachmentMenuBehavior = function () { |
|
var that = this; |
|
|
|
$("#submitAttach").hide (); |
|
|
|
function submitAttachment (evt) { |
|
evt.preventDefault (); |
|
if (x2.attachments.fileIsUploaded ()) { |
|
$("#submitAttach").click (); |
|
} |
|
return false; |
|
} |
|
|
|
$("#toggle-attachment-menu-button").click (function () { |
|
if ($("#attachments").is (":visible")) { |
|
$("#save-button").bind ("click", submitAttachment); |
|
} else { |
|
$("#save-button").unbind ("click", submitAttachment); |
|
} |
|
}); |
|
} |
|
|
|
ActivityFeed.prototype.setupAndroidPublisher = function () { |
|
var that = this; |
|
$(document).on('focus','#feed-form textarea',function(){ |
|
$(this).animate({"height":"50px"}); |
|
$(this).next().slideDown(400); |
|
}); |
|
$('#submit-button').click (function () { that.publishPostAndroid (); }); |
|
$('#save-button').click (function () { that.publishPostAndroid (); }); |
|
} |
|
|
|
ActivityFeed.prototype.minimizePosts = function (){ |
|
var that = this; |
|
$('.items').find ('.event-text').each (function (index, element) { |
|
if($(element).html().length>200){ |
|
var text=element; |
|
var oldText=$(element).html(); |
|
$.ajax({ |
|
url:"minimizePosts", |
|
type:"GET", |
|
data:{"minimize":"minimize"}, |
|
success:function(){ |
|
if ($(text).find ('.expandable-details').is (':visible')) { |
|
$(text).find ('.read-less').find ('a').click (); |
|
} |
|
} |
|
}); |
|
}else{ |
|
|
|
} |
|
}); |
|
} |
|
|
|
|
|
ActivityFeed.prototype.restorePosts = function (){ |
|
var that = this; |
|
$('.items').find ('.event-text').each (function (index, element) { |
|
var text = element; |
|
$.ajax({ |
|
url:"minimizePosts", |
|
type:"GET", |
|
data:{"minimize":"restore"}, |
|
success:function(){ |
|
if (!$(text).find ('.expandable-details').is (':visible')) { |
|
$(text).find ('.read-more').find ('a').click (); |
|
} |
|
} |
|
}); |
|
}); |
|
} |
|
|
|
|
|
|
|
ActivityFeed.prototype.setupEditorBehavior = function () { |
|
var that = this; |
|
|
|
|
|
|
|
if (x2.isAndroid) { |
|
that.setupAndroidPublisher (); |
|
return; |
|
} |
|
|
|
window.newPostEditor = createCKEditor ( |
|
"Events_text", { height:70, toolbarStartupExpanded: false, placeholder: that.translations['Enter text here...']}, editorCallback); |
|
|
|
function editorCallback () { |
|
|
|
|
|
CKEDITOR.instances.Events_text.on ("resize", function () { |
|
if (that.editorManualResize && !that.editorIsExpanded) { |
|
CKEDITOR.instances.Events_text.focus (); |
|
} |
|
}); |
|
|
|
|
|
$(".cke_resizer_ltr").mousedown (function () { |
|
$(document).one ("mouseup", function () { |
|
that.editorManualResize = false; |
|
}); |
|
that.editorManualResize = true; |
|
}); |
|
|
|
} |
|
|
|
|
|
$(document).on ("myFocus", function () { |
|
if (!that.editorIsExpanded) { |
|
that.editorIsExpanded = true; |
|
$("#save-button").addClass ("highlight"); |
|
var editorMinHeight = window.newPostEditor.config.height; |
|
var newHeight = 140; |
|
that.animateEditorVerticalResize (editorMinHeight, newHeight, 300); |
|
$("#post-buttons").slideDown (400); |
|
$('#feed-form').css({opacity: 1.0}); |
|
|
|
} |
|
}); |
|
|
|
|
|
|
|
auxlib.onClickOutside ($('#post-form'), function () { |
|
var editorText = window.newPostEditor.getData(); |
|
|
|
if (that.editorIsExpanded && editorText === "" && |
|
$('#upload').val () === "") { |
|
|
|
$('#feed-form').css({opacity: 0.5}); |
|
that.initMinimizeEditor (); |
|
that.finishMinimizeEditor (); |
|
} |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
$('#submit-button').click (function () { return that.publishPost (); }); |
|
$('#save-button').click (function () { return that.publishPost (); }); |
|
|
|
} |
|
|
|
|
|
ActivityFeed.prototype.setupActivityFeed = function () { |
|
var that = this; |
|
that.DEBUG && console.log ('that.setupActivityFeed'); |
|
|
|
function updateComments(id){ |
|
$.ajax({ |
|
url:"loadComments", |
|
data:{ |
|
id:id, |
|
profileId: x2.activityFeed.profileId |
|
}, |
|
success:function(data){ |
|
$("#"+id+"-comments").html(data); |
|
} |
|
}); |
|
} |
|
|
|
function commentSubmit(id){ |
|
var text=$("#"+id+"-comment").val(); |
|
$("#"+id+"-comment").val(""); |
|
$.ajax({ |
|
url:"addComment", |
|
type:"POST", |
|
data:{text:text,id:id}, |
|
success:function(data){ |
|
var commentCount=data; |
|
$("#"+id+"-comment-count").html("<b>"+commentCount+"</b>"); |
|
updateComments(id); |
|
} |
|
}); |
|
} |
|
|
|
$(document).on("click","#min-posts",function(e){ |
|
e.preventDefault(); |
|
that.minimizePosts(); |
|
x2.activityFeed.minimizeFeed = true; |
|
$(this).toggle(); |
|
$(this).prev().show(); |
|
}); |
|
|
|
$(document).on("click","#restore-posts",function(e){ |
|
e.preventDefault(); |
|
that.restorePosts(); |
|
x2.activityFeed.minimizeFeed = false; |
|
$(this).toggle(); |
|
$(this).next().show(); |
|
}); |
|
|
|
$(document).on("click","#clear-filters-link",function(e){ |
|
e.preventDefault(); |
|
var str=window.location+""; |
|
pieces = str.split("?"); |
|
var str2 = pieces[0]; |
|
pieces2 = str2.split("#"); |
|
window.location = pieces2[0]+"?filters=true&visibility=&users=&types=&subtypes=&default=false"; |
|
}); |
|
|
|
if(x2.activityFeed.minimizeFeed === true){ |
|
$("#min-posts").click(); |
|
} |
|
$(".date-break.first").after("<div class='list-view'><div id='new-events' class='items' style='display:none;border-bottom:solid #BABABA;'></div></div>"); |
|
|
|
$(document).on("click","#toggle-all-comments",function(e){ |
|
e.preventDefault(); |
|
x2.activityFeed.commentFlag = !x2.activityFeed.commentFlag; |
|
if(x2.activityFeed.commentFlag){ |
|
$(".comment-link").click(); |
|
}else{ |
|
$(".comment-hide-link").click(); |
|
} |
|
}); |
|
|
|
$(document).on("click",".comment-link",function(e){ |
|
e.preventDefault(); |
|
var link = this; |
|
var pieces = $(this).attr("id").split("-"); |
|
var id = pieces[0]; |
|
$.ajax({ |
|
url:"loadComments", |
|
data:{ |
|
id:id, |
|
profileId: x2.activityFeed.profileId |
|
}, |
|
success:function(data){ |
|
$("#"+id+"-comments").html(data); |
|
|
|
$("#"+id+"-comment-box").slideDown(400); |
|
$(link).hide(); |
|
$(link).next().show(); |
|
} |
|
}); |
|
}); |
|
|
|
$(document).on("click",".comment-hide-link",function(e){ |
|
e.preventDefault(); |
|
$(this).hide(); |
|
$(this).prev().show(); |
|
var pieces = $(this).prev().attr("id").split("-"); |
|
var id = pieces[0]; |
|
$("#"+id+"-comment-box").slideUp(400); |
|
}); |
|
|
|
|
|
$('#submit-button').click (function () { that.publishPost (); }); |
|
|
|
if ($("#sticky-feed .empty").length !== 0) { |
|
$("#sticky-feed").hide (); |
|
} |
|
|
|
$('#activity-feed, #sticky-feed').on('submit','.comment-box form',function() { |
|
commentSubmit($(this).attr('id').slice(9)); |
|
return false; |
|
}); |
|
|
|
|
|
$(".comment-count").each (function(){ |
|
if($(this).attr("val")>0){ |
|
$(this).closest ('.comment-link').click(); |
|
} |
|
}); |
|
|
|
|
|
$.each($(".like-count"),function(){ |
|
var likeCount = parseInt ($(this).text ().replace (/[()]/g, ""), 10); |
|
if (likeCount > 0) { |
|
$(this).click(); |
|
} |
|
}); |
|
|
|
that.makePostsExpandable (); |
|
|
|
} |
|
|
|
ActivityFeed.prototype.makePostExpandable = function (element) { |
|
var that = this; |
|
if ($(element).hasClass ('is-expandable')) return; |
|
that.DEBUG && console.log ('that.makePostExpandable'); |
|
$(element).addClass ('is-expandable'); |
|
that.DEBUG && console.log (element); |
|
$(element).expander ({ |
|
slicePoint: 80, |
|
expandPrefix: '', |
|
expandText: ' [' + that.translations['Read more'] + ']', |
|
userCollapseText: '[' + that.translations['Read less'] + ']', |
|
expandEffect: 'show', |
|
collapseEffect: 'slideUp', |
|
summaryClass: 'jquery-expandable-summary', |
|
detailClass: 'jquery-expandable-details', |
|
collapseSpeed: 0, |
|
expandSpeed: 0, |
|
detailClass: 'expandable-details', |
|
beforeExpand: function () { |
|
$(element).find ('.expandable-details').addClass ('expandable-details-override'); |
|
}, |
|
onCollapse: function () { |
|
$(element).find ('.expandable-details'). |
|
removeClass ('expandable-details-override'); |
|
} |
|
}); |
|
if (x2.activityFeed.minimizeFeed === false) { |
|
that.DEBUG && console.log ('clicking read more'); |
|
$(element).find ('.read-more').find ('a').click (); |
|
} |
|
} |
|
|
|
|
|
ActivityFeed.prototype.makePostsExpandable = function () { |
|
var that = this; |
|
$('.items').find ('.event-text').each (function (index, element) { |
|
that.makePostExpandable (element); |
|
}); |
|
} |
|
|
|
ActivityFeed.prototype.setupBroadcastDialog = function () { |
|
var that = this; |
|
var link, pieces, id; |
|
|
|
$('#broadcast-dialog-user-select').multiselect (); |
|
$('#broadcast-dialog').hide(); |
|
|
|
function clickBroadcastButton () { |
|
|
|
|
|
that.destroyErrorBox ($('#broadcast-dialog')); |
|
|
|
var userIdList = $('#broadcast-dialog-user-select').val (); |
|
var errorMsgs = []; |
|
if (userIdList === null) { |
|
that.DEBUG && console.log ('clickBroadcastButton if'); |
|
errorMsgs.push (that.translations['broadcast error message 1']); |
|
} |
|
if ($('#email-users').attr ('checked') === undefined && |
|
$('#notify-users').attr ('checked') === undefined) { |
|
errorMsgs.push (that.translations['broadcast error message 2']); |
|
} |
|
if (errorMsgs.length !== 0) { |
|
var errorBox = that.createErrorBox ( |
|
'', errorMsgs); |
|
$('#notify-users-checkbox-container').after ($(errorBox)); |
|
return; |
|
} |
|
|
|
$.ajax({ |
|
url:"broadcastEvent", |
|
data:{ |
|
id: id, |
|
email: |
|
$("#email-users").attr("checked") === undefined ? false : true, |
|
notify: |
|
$("#notify-users").attr("checked") === undefined ? false : true, |
|
users: JSON.stringify (userIdList) |
|
}, |
|
success:function(data){ |
|
$('#broadcast-dialog').dialog("close"); |
|
} |
|
}); |
|
} |
|
|
|
$(document).on("click",".broadcast-button",function(e){ |
|
|
|
link = this; |
|
e.preventDefault(); |
|
pieces = $(this).attr("id").split("-"); |
|
id = pieces[0]; |
|
$("#broadcast-dialog").dialog({ |
|
title: that.translations['Broadcast Event'], |
|
autoOpen: true, |
|
height: "auto", |
|
width: 657, |
|
resizable: false, |
|
show: 'fade', |
|
hide: 'fade', |
|
buttons: [ |
|
{ |
|
text: that.translations['Broadcast'], |
|
click: clickBroadcastButton |
|
}, |
|
{ |
|
text: that.translations['Nevermind'], |
|
click: function () { |
|
$('#broadcast-dialog').dialog("close"); |
|
that.destroyErrorBox ($('#broadcast-dialog')); |
|
} |
|
} |
|
], |
|
}); |
|
|
|
}); |
|
|
|
auxlib.makeDialogClosableWithOutsideClick ($("#broadcast-dialog")); |
|
} |
|
|
|
|
|
ActivityFeed.prototype.setupMakeImportantDialog = function () { |
|
var that = this; |
|
var link, pieces, id; |
|
|
|
function clickMakeImportantButton (e) { |
|
e.preventDefault(); |
|
|
|
link = this; |
|
|
|
var post$ = $(link).parents(".view.top-level"); |
|
var important = post$.hasClass('important-action'); |
|
var attr = important ? 'unimportant' : 'important'; |
|
pieces = $(link).attr("id").split("-"); |
|
id = pieces[0]; |
|
|
|
$.ajax({ |
|
url:"flagPost", |
|
data:{ |
|
id:id, |
|
attr: attr, |
|
}, |
|
success:function(data){ |
|
post$.toggleClass('important-action', !important); |
|
$(link).siblings('.important-link, .unimportant-link').show(); |
|
$(link).hide(); |
|
} |
|
}); |
|
} |
|
|
|
$(document).on('click', '.important-link, .unimportant-link', clickMakeImportantButton ); |
|
|
|
|
|
} |
|
|
|
|
|
ActivityFeed.prototype.updateEventList = function () { |
|
var that = this; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function incrementLikeCount (likeCountElem) { |
|
likeCount = parseInt ($(likeCountElem).html ().replace (/[() ]/g, ""), 10) + 1; |
|
$(likeCountElem).html (" " + likeCount + ""); |
|
} |
|
|
|
function decrementLikeCount (likeCountElem) { |
|
likeCount = parseInt ($(likeCountElem).html ().replace (/[() ]/g, ""), 10) - 1; |
|
$(likeCountElem).html (" " + likeCount + ""); |
|
} |
|
|
|
var disableLikeButton = false; |
|
$(document).on("click",".like-button",function(e){ |
|
if (disableLikeButton) return; |
|
e.preventDefault(); |
|
var link = this; |
|
var pieces = $(this).attr("id").split("-"); |
|
var id = pieces[0]; |
|
var tmpElem = $("<span>", { "text": ($(link).text ()) }); |
|
$(link).toggle(); |
|
$(link).next().toggle(); |
|
$(link).after (tmpElem); |
|
disableLikeButton = true; |
|
$.ajax({ |
|
url:"likePost", |
|
data:{id:id}, |
|
success:function(data){ |
|
disableLikeButton = false; |
|
$(tmpElem).remove (); |
|
if (data === "liked post") { |
|
incrementLikeCount ($(link).next().next()); |
|
} |
|
reloadLikeHistory (id); |
|
} |
|
}); |
|
}); |
|
|
|
$(document).on("click",".unlike-button",function(e){ |
|
if (disableLikeButton) return; |
|
e.preventDefault(); |
|
var link = this; |
|
var pieces = $(this).attr("id").split("-"); |
|
var id = pieces[0]; |
|
var tmpElem = $("<span>", { "text": ($(link).text ()) }); |
|
$(link).after (tmpElem); |
|
$(link).toggle(); |
|
$(link).prev().toggle(); |
|
disableLikeButton = true; |
|
$.ajax({ |
|
url:"likePost", |
|
data:{id:id}, |
|
success:function(data){ |
|
disableLikeButton = false; |
|
$(tmpElem).remove (); |
|
if (data === "unliked post") { |
|
decrementLikeCount ($(link).next()); |
|
} |
|
reloadLikeHistory (id); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
function reloadLikeHistory (id) { |
|
var likeHistoryBox = $("#" + id + "-like-history-box"); |
|
if (!likeHistoryBox.is(":visible")) { |
|
return; |
|
} |
|
var likes = $("#" + id + "-likes"); |
|
$.ajax({ |
|
url:"loadLikeHistory", |
|
data:{id:id}, |
|
success:function(data){ |
|
likes.html (""); |
|
var likeHistory = JSON.parse (data); |
|
|
|
|
|
if (likeHistory.length === 0) { |
|
likeHistoryBox.slideUp (); |
|
likes.html (""); |
|
return; |
|
} |
|
for (var name in likeHistory) { |
|
likes.append (likeHistory[name] + " liked this post. </br>"); |
|
} |
|
} |
|
}); |
|
} |
|
|
|
|
|
|
|
|
|
$(document).on("click",".like-count",function(e){ |
|
e.preventDefault(); |
|
var pieces = $(this).attr("id").split("-"); |
|
var id = pieces[0]; |
|
var likeHistoryBox = $("#" + id + "-like-history-box"); |
|
var likes = $("#" + id + "-likes"); |
|
if (likeHistoryBox.is(":visible")) { |
|
likeHistoryBox.slideUp (); |
|
likes.html (""); |
|
return; |
|
} |
|
$.ajax({ |
|
url:"loadLikeHistory", |
|
data:{id:id}, |
|
success:function(data){ |
|
var likeHistory = JSON.parse (data); |
|
for (var name in likeHistory) { |
|
likes.append (likeHistory[name] + " liked this post. </br>"); |
|
likeHistoryBox.slideDown (400); |
|
} |
|
} |
|
}); |
|
}); |
|
|
|
|
|
|
|
|
|
function insertSticky (stickyElement) { |
|
var id = $(stickyElement).children ().find (".comment-age").attr ("id").split ("-"); |
|
|
|
|
|
if ($("#sticky-feed .empty").length !== 0) { |
|
$("#sticky-feed .items").append ($("<div>", { |
|
"class": "view top-level date-break sticky-section-header", |
|
"text": "- Sticky -" |
|
})); |
|
$("#sticky-feed .empty").remove (); |
|
} |
|
$("#sticky-feed").show (); |
|
$("#sticky-feed .items").show (); |
|
|
|
var stickyId = id[0]; |
|
var stickyTimeStamp = id[1]; |
|
|
|
|
|
var hasInserted = false; |
|
$("#sticky-feed > .items > div.view.top-level.activity-feed").each ( |
|
function (index, element) { |
|
|
|
var id = $(element).children ().find (".comment-age").attr ("id").split ("-"); |
|
var eventId = id[0]; |
|
var eventTimeStamp = id[1]; |
|
if (stickyTimeStamp === eventTimeStamp) { |
|
if (stickyId > eventId) { |
|
$(stickyElement).insertBefore ($(element)); |
|
hasInserted = true; |
|
return false; |
|
} |
|
} else if (stickyTimeStamp > eventTimeStamp) { |
|
$(stickyElement).insertBefore ($(element)); |
|
hasInserted = true; |
|
return false; |
|
} |
|
}); |
|
if (!hasInserted) { |
|
$("#sticky-feed .items").append ($(stickyElement)); |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function detachActivity (activityElement, timeStamp) { |
|
var foundMatch = false; |
|
var eventCount = 0; |
|
var match = null; |
|
var re = new RegExp (timeStamp, "g"); |
|
|
|
|
|
|
|
$("#activity-feed > .items").children ().each (function (index, element) { |
|
if ($(element).hasClass ("date-break")) { |
|
if ($(element).text ().match (re)) { |
|
foundMatch = true; |
|
match = element; |
|
} else if (foundMatch) { |
|
return false; |
|
} |
|
} else if ($(element).hasClass ("view top-level activity-feed")) { |
|
if (foundMatch) { |
|
eventCount++; |
|
} |
|
} else if ($(element).hasClass ("list-view")) { |
|
$(element).find ("div.view.top-level.activity-feed").each (function (index, element) { |
|
if ($(element).hasClass ("view top-level activity-feed")) { |
|
if (foundMatch) { |
|
eventCount++; |
|
} |
|
} |
|
}); |
|
} |
|
}); |
|
|
|
if (eventCount === 1) { |
|
$(match).remove (); |
|
} else { |
|
} |
|
|
|
$(activityElement).children ().find (".sticky-link").mouseleave (); |
|
|
|
|
|
if ($(activityElement).parent ("#new-events").length === 1 && |
|
$(activityElement).siblings ().length === 0) { |
|
$("#new-events").toggle (); |
|
} |
|
|
|
return $(activityElement).detach (); |
|
} |
|
|
|
function getDateHeader (timeStamp, timeStampFormatted) { |
|
return $("<div>", { |
|
"class": "view top-level date-break", |
|
"id": ("date-break-" + timeStamp), |
|
"text": ("- " + timeStampFormatted + " -") |
|
}); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
function insertActivity (activityElement, timeStampFormatted) { |
|
var id = $(activityElement).children ().find (".comment-age").attr ("id").split ("-"); |
|
|
|
if ($("#sticky-feed div.view.top-level.activity-feed").length === 0) { |
|
$("#sticky-feed").hide (); |
|
} |
|
|
|
var stickyId = id[0]; |
|
var stickyTimeStamp = id[1]; |
|
var re = new RegExp (timeStampFormatted, "g"); |
|
|
|
var hasInserted = false; |
|
var foundMyHeader = false; |
|
var prevElement = null; |
|
$("#activity-feed > .items").children ().each (function (index, element) { |
|
if ($(element).hasClass ("date-break")) { |
|
if (!$(element).text ().match (re)) { |
|
var eventTimeStamp = $(element).attr ("id").split ("-")[2]; |
|
if (foundMyHeader) { |
|
if (stickyTimeStamp > eventTimeStamp || timeStampFormatted.match (/Today/)) { |
|
$(activityElement).insertBefore ($(element)); |
|
hasInserted = true; |
|
return false; |
|
} |
|
} else { |
|
if (stickyTimeStamp > eventTimeStamp || |
|
timeStampFormatted.match (/Today/)) { |
|
|
|
var header = getDateHeader (stickyTimeStamp, timeStampFormatted); |
|
$(header).insertBefore ($(element)); |
|
$(activityElement).insertAfter ($(header)); |
|
if (timeStampFormatted.match (/Today/)) { |
|
var newPostContainer = |
|
$("#activity-feed > .items > div.list-view").detach (); |
|
$(newPostContainer).insertAfter ($(header)); |
|
} |
|
hasInserted = true; |
|
return false; |
|
} |
|
} |
|
} else { |
|
foundMyHeader = true; |
|
} |
|
} else if ($(element).hasClass ("view top-level activity-feed")) { |
|
var id = $(element).children ().find (".comment-age").attr ("id").split ("-"); |
|
var eventId = id[0]; |
|
var eventTimeStamp = id[1]; |
|
if (stickyTimeStamp === eventTimeStamp) { |
|
if (stickyId > eventId) { |
|
$(activityElement).insertBefore ($(element)); |
|
hasInserted = true; |
|
return false; |
|
} |
|
} else if (stickyTimeStamp > eventTimeStamp) { |
|
$(activityElement).insertBefore ($(element)); |
|
hasInserted = true; |
|
return false; |
|
} |
|
prevElement = element; |
|
} else if ($(element).hasClass ("list-view")) { |
|
var brokeLoop = false; |
|
$(element).find ("div.view.top-level.activity-feed").each ( |
|
function (index, element) { |
|
|
|
var id = $(element).children ().find (".comment-age").attr ("id").split ("-"); |
|
var eventId = id[0]; |
|
var eventTimeStamp = id[1]; |
|
if (stickyTimeStamp === eventTimeStamp) { |
|
if (stickyId > eventId) { |
|
$(activityElement).insertBefore ($(element)); |
|
hasInserted = true; |
|
brokeLoop = true; |
|
return false; |
|
} |
|
} else if (stickyTimeStamp > eventTimeStamp) { |
|
$(activityElement).insertBefore ($(element)); |
|
hasInserted = true; |
|
brokeLoop = true; |
|
return false; |
|
} |
|
prevElement = element; |
|
}); |
|
if (brokeLoop) { |
|
return false; |
|
} |
|
} |
|
}); |
|
|
|
if (!hasInserted) { |
|
if (prevElement) { |
|
if (foundMyHeader) { |
|
$(activityElement).insertAfter ($(prevElement)); |
|
} else { |
|
var header = getDateHeader (stickyTimeStamp, timeStampFormatted); |
|
$(header).insertAfter ($(prevElement)); |
|
$(activityElement).insertAfter ($(header)); |
|
} |
|
} else { |
|
var header = getDateHeader (stickyTimeStamp, timeStampFormatted); |
|
$("#activity-feed .list-view").before ($(header)); |
|
$("#activity-feed > .items").append ($(activityElement)); |
|
} |
|
} |
|
} |
|
|
|
$(document).on("click",".sticky-link",function(e){ |
|
e.preventDefault(); |
|
var link = this; |
|
var pieces = $(this).attr("id").split("-"); |
|
var id = pieces[0]; |
|
var tmpElem = $("<span>", { "text": ($(link).text ()) }); |
|
$(link).after (tmpElem); |
|
$(link).toggle(); |
|
$.ajax({ |
|
url:"stickyPost", |
|
data:{id:id}, |
|
success:function (data) { |
|
var elem = detachActivity ( |
|
$(link).parents ("div.view.top-level.activity-feed"), data); |
|
$(tmpElem).remove (); |
|
$(link).next().toggle(); |
|
insertSticky (elem); |
|
} |
|
}); |
|
}); |
|
|
|
$(document).on("click",".unsticky-link",function(e){ |
|
e.preventDefault(); |
|
var link = this; |
|
var pieces = $(this).attr("id").split("-"); |
|
var id = pieces[0]; |
|
var tmpElem = $("<span>", { "text": ($(link).text ()) }); |
|
$(link).after (tmpElem); |
|
$(link).toggle(); |
|
$.ajax({ |
|
url:"stickyPost", |
|
data:{id:id}, |
|
success:function (data) { |
|
var elem = $(link).parents ("div.view.top-level.activity-feed").detach (); |
|
$(tmpElem).remove (); |
|
$(link).prev().toggle(); |
|
insertActivity (elem, data); |
|
} |
|
}); |
|
}); |
|
|
|
var lastEventId=that.lastEventId; |
|
var lastTimestamp=that.lastTimestamp; |
|
function updateFeed(){ |
|
$.ajax({ |
|
url:"getEvents", |
|
type:"GET", |
|
dataType: "json", |
|
data:{ |
|
'lastEventId':lastEventId, |
|
'lastTimestamp':lastTimestamp, |
|
'profileId':x2.activityFeed.profileId, |
|
'myProfileId':x2.activityFeed.myProfileId |
|
}, |
|
success:function(data){ |
|
|
|
|
|
|
|
if (data === 'failure') return; |
|
lastEventId=data[0]; |
|
if(data[1]){ |
|
var text=data[1]; |
|
if($("#activity-feed .items .empty").html()){ |
|
$("#activity-feed .items").html( |
|
"<div class='list-view'><div id='new-events' style='display:none;'>" + |
|
"</div></div>"); |
|
} |
|
if($("#new-events").is(":hidden")){ |
|
$("#new-events").show(); |
|
} |
|
$.each($(".list-view"), function(){ |
|
if(typeof $.fn.yiiListView.settings["'"+$(this).attr("id")+"'"] === |
|
"undefined") |
|
$(this).yiiListView(); |
|
}); |
|
that.DEBUG && console.log ('hiding ' + text); |
|
$newElem = $(text).hide().prependTo("#new-events"); |
|
that.makePostExpandable ($newElem.find ('.event-text-box').children ('.event-text')); |
|
$newElem.fadeIn(1000); |
|
} |
|
if(data[2]){ |
|
var comments=data[2]; |
|
$.each(comments,function(key,value){ |
|
$("#"+key+"-comment-count").html("<b>"+value+"</b>"); |
|
}); |
|
if(data[3]>lastEventId) |
|
lastEventId=data[3]; |
|
if(data[4]>lastTimestamp) |
|
lastTimestamp=data[4]; |
|
} |
|
var t=setTimeout(function(){updateFeed();},5000); |
|
} |
|
}); |
|
} |
|
updateFeed(); |
|
|
|
$(document).on("click",".delete-link",function(e){ |
|
var link = this; |
|
pieces = $(link).attr("id").split("-"); |
|
id = pieces[0]; |
|
if(confirm("Are you sure you want to delete this post?")){ |
|
window.location=x2.activityFeed.deletePostUrl + '?id=' + id + '&profileId=' + |
|
x2.activityFeed.profileId; |
|
}else{ |
|
e.preventDefault(); |
|
} |
|
}); |
|
|
|
$(document).on("submit","#attachment-form-form",function(){ |
|
if(window.newPostEditor.getData()!="" && |
|
window.newPostEditor.getData()!=that.translations['Enter text here...']){ |
|
|
|
$("#attachmentText").val(window.newPostEditor.getData ()); |
|
} |
|
}); |
|
|
|
} |
|
|
|
ActivityFeed.prototype.setupFeedColorPickers = function () { |
|
var that = this; |
|
|
|
|
|
|
|
|
|
x2.colorPicker.setUp ($('#broadcastColor')); |
|
x2.colorPicker.setUp ($('#fontColor')); |
|
x2.colorPicker.setUp ($('#linkColor')); |
|
x2.colorPicker.setUp ($('#broadcastColor')); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype.setUpImageAttachmentBehavior = function () { |
|
var that = this; |
|
$('.attachment-img').each (function () { |
|
new x2.EnlargeableImage ({ |
|
elem: $(this) |
|
}); |
|
}); |
|
|
|
$('#feed-filters-button').click (function () { |
|
$('#feed-filters').slideToggle (); |
|
return false; |
|
}); |
|
} |
|
|
|
ActivityFeed.prototype._setUpTitleBar = function () { |
|
var that = this; |
|
|
|
this.popupDropdownMenu = new PopupDropdownMenu ({ |
|
containerElemSelector: '#menu-links', |
|
openButtonSelector: '#activity-feed-settings-button', |
|
defaultOrientation: 'left', |
|
css: { |
|
height: '30px', |
|
'padding-left': '3px' |
|
} |
|
}); |
|
|
|
}; |
|
|
|
ActivityFeed.prototype._setUpFilters = function () { |
|
var that = this; |
|
$("#apply-feed-filters").click(function(e){ |
|
e.preventDefault(); |
|
var visibility=auxlib.getUnselected ($("#visibilityFilters")); |
|
var users=auxlib.getUnselected($("#relevantUsers")); |
|
var eventTypes=auxlib.getUnselected($("#eventTypes")); |
|
var subtypes=auxlib.getUnselected($("#socialSubtypes")); |
|
var defaultFilters=$("#filter-default").is (":checked"); |
|
|
|
var str=window.location+""; |
|
var pieces=str.split("?"); |
|
var str2=pieces[0]; |
|
var pieces2=str2.split("#"); |
|
window.location= pieces2[0] + "?filters=true&visibility=" + visibility + |
|
"&users=" + users+"&types=" + eventTypes +"&subtypes=" + subtypes + |
|
"&default=" + defaultFilters; |
|
return false; |
|
}); |
|
|
|
$(".full-filters").click(function(e){ |
|
e.preventDefault(); |
|
$("#simple-controls").hide(); |
|
$("#full-controls").show(); |
|
$("#sidebar-simple-controls").hide(); |
|
$("#sidebar-full-controls").show(); |
|
$.ajax({ |
|
url:"toggleFeedControls" |
|
}); |
|
$('.full-filters').addClass("disabled-link"); |
|
$('.full-filters').prev().removeClass("disabled-link"); |
|
}); |
|
$(".simple-filters").click(function(e){ |
|
e.preventDefault(); |
|
$("#full-controls").hide(); |
|
$("#simple-controls").show(); |
|
$("#sidebar-full-controls").hide(); |
|
$("#sidebar-simple-controls").show(); |
|
$.ajax({ |
|
url:"toggleFeedControls" |
|
}); |
|
$('.simple-filters').addClass("disabled-link"); |
|
$('.simple-filters').next().removeClass("disabled-link"); |
|
}); |
|
$("#execute-feed-filters-button").click (function (evt) { |
|
var link=this; |
|
var visibility=[]; |
|
var users=[]; |
|
|
|
var userOption = $('#simpleUserFilter').val (); |
|
|
|
if (userOption === 'justMe') { |
|
$.each($(".users.filter-checkbox"),function(){ |
|
if($(this).attr("name") !== yii.profile.username){ |
|
users.push($(this).attr("name")); |
|
} |
|
}); |
|
} else if (userOption === 'myGroups') { |
|
users = that.usersGroups; |
|
} |
|
|
|
var eventTypes=auxlib.filter (function (a) { |
|
return a !== ''; |
|
}, auxlib.getUnselected ($('#simpleEventTypes'))); |
|
var subtypes=[]; |
|
var defaultFilters=[]; |
|
var linkId=$(link).attr("id"); |
|
var str=window.location+""; |
|
pieces=str.split("?"); |
|
var str2=pieces[0]; |
|
pieces2=str2.split("#"); |
|
window.location = pieces2[0] + "?filters=true&visibility=" + visibility + |
|
"&users=" + users + "&types=" + eventTypes + "&subtypes=" + subtypes + |
|
"&default=" + defaultFilters; |
|
return false; |
|
}); |
|
(function () { |
|
var checkedFlag; |
|
if($(":checkbox:checked").length > ($(":checkbox").length)/2){ |
|
checkedFlag = true; |
|
} else { |
|
checkedFlag = false; |
|
$("#toggle-filters-link").html(that.translations["Select All"]); |
|
$("#sidebar-toggle-filters-link").html(that.translations["Uncheck All"]); |
|
} |
|
|
|
$(document).on("click",".toggle-filters-link",function(e){ |
|
e.preventDefault(); |
|
checkedFlag =! checkedFlag; |
|
if(checkedFlag){ |
|
$('#full-controls-button-container .toggle-filters-link'). |
|
html(that.translations['Unselect All']); |
|
$('#full-controls .x2-multiselect-dropdown').multiselect2 ('checkAll'); |
|
$('#sidebar-full-controls-button-container .toggle-filters-link'). |
|
html(that.translations['Uncheck Filters']); |
|
$(".filter-checkbox").attr("checked","checked"); |
|
}else{ |
|
$('#full-controls-button-container .toggle-filters-link'). |
|
html(that.translations['Select All']); |
|
$('#full-controls .x2-multiselect-dropdown').val ('').multiselect2 ('refresh'); |
|
$('#sidebar-full-controls-button-container .toggle-filters-link'). |
|
html(that.translations['Check Filters']); |
|
$(".filter-checkbox").attr("checked",null); |
|
} |
|
}); |
|
}) (); |
|
|
|
}; |
|
|
|
ActivityFeed.prototype.setUpOpacityScreen = function () { |
|
var that = this; |
|
|
|
$('#feed-form'). |
|
css({ |
|
opacity: 0.5, |
|
transition: 'opacity 0.2s' |
|
}). |
|
hover (function (){ |
|
if (!that.editorIsExpanded) { |
|
$(this).css ({opacity: 1.0}); |
|
} |
|
}, function() { |
|
if (!that.editorIsExpanded) { |
|
$(this).css ({opacity: 0.5}); |
|
} |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
ActivityFeed.prototype._setUpRelativeTimeStamps = function () { |
|
|
|
|
|
var loop = function () { |
|
var commentAges = $('#activity-feed .comment-age').each(function(d){ |
|
var timestamp = $(this).attr('id').split('-')[1]*1000; |
|
$(this).html(moment(timestamp).fromNow()); |
|
}); |
|
setTimeout(loop, 10000); |
|
} |
|
|
|
loop(); |
|
|
|
} |
|
|
|
|
|
ActivityFeed.prototype._init = function () { |
|
|
|
var that = this; |
|
$(document).on ('ready', function profileMain () { |
|
that.setupEditorBehavior (); |
|
that.setupActivityFeed (); |
|
that.setupMakeImportantDialog (); |
|
that.setupBroadcastDialog (); |
|
that.updateEventList (); |
|
that.setupFeedColorPickers (); |
|
that.attachmentMenuBehavior (); |
|
that.setUpImageAttachmentBehavior (); |
|
that._setUpTitleBar (); |
|
that._setUpFilters (); |
|
that._setUpRelativeTimeStamps (); |
|
}); |
|
|
|
}; |
|
|
|
|
|
return ActivityFeed; |
|
|
|
}) (); |
|
|
|
|