ComunicWeb/assets/js/components/posts/ui.js

800 lines
19 KiB
JavaScript
Raw Normal View History

2017-12-31 17:51:46 +00:00
/**
* Posts UI
*
* @author Pierre HUBERT
*/
ComunicWeb.components.posts.ui = {
/**
* Show a single post
*
* @param {Object} infos Informations about the post
* @param {HTMLElement} target The target for the post
*/
display_post: function(infos, target){
2018-01-16 17:51:35 +00:00
//Check if it is required to create a post root element or not
if(target.className.includes("post"))
postRoot = target;
else
//Create post root element
var postRoot = createElem2({
appendTo: target,
type: "div",
class: "post"
});
2017-12-31 17:51:46 +00:00
//Display user block
var userBlock = createElem2({
appendTo: postRoot,
type: "div",
class: "user-block"
});
//Display user account image
var userAccountImage = createElem2({
appendTo: userBlock,
type: "img",
class: "img-circle img-bordered-sm",
src: ComunicWeb.__config.assetsURL + "img/defaultAvatar.png"
});
//Add user name
var userNameBlock = createElem2({
appendTo: userBlock,
type: "span",
class: "username",
});
var userName = createElem2({
appendTo: userNameBlock,
type: "a",
innerHTML: "Loading"
});
//Add post description
var postDescription = createElem2({
appendTo: userBlock,
type: "span",
class: "description"
});
//Show the age of the post
postDescription.innerHTML = ComunicWeb.common.date.timeDiffToStr(infos.post_time) + " ago";
//Load user informations
ComunicWeb.user.userInfos.getUserInfos(infos.userID, function(result){
if(result.firstName){
userAccountImage.src = result.accountImage;
userName.innerHTML = result.firstName + " " + result.lastName;
2018-01-04 10:29:52 +00:00
userName.onclick = function(){
openUserPage(userIDorPath(result));
}
2017-12-31 17:51:46 +00:00
}
});
2018-01-10 18:16:28 +00:00
//Create top right area
var topRightArea = createElem2({
insertAsFirstChild: userBlock,
type: "div",
2018-01-10 19:29:34 +00:00
class: "pull-right top-right-buttons",
});
2018-01-10 18:16:28 +00:00
//Load informations about visibility
var visibilityTarget = createElem2({
appendTo: topRightArea,
type: "div",
class: "visibility"
});
//Get informations about the current visibility level
var visibilityInfos = ComunicWeb.components.posts.visibilityLevels[infos.visibility_level];
//Check user level access
if(infos.user_access != "full"){
//The user can't change the visibility level of the post
//Display visibility level as a simple icon
createElem2({
appendTo: visibilityTarget,
type: "i",
class: "read-only fa "+visibilityInfos.icon
});
}
else {
//The user can change the visibility level of the post
//Create button gropu
var visibilityButtonGroup = createElem2({
appendTo: visibilityTarget,
type: "div",
class: "btn-group"
});
//Visibility choose button
var visibilityChooseButton = createElem2({
appendTo: visibilityButtonGroup,
type: "button",
class: "btn btn-default dropdown-toggle",
elemType: "button",
});
visibilityChooseButton.setAttribute("data-toggle", "dropdown");
//Set the current value of the button
visibilityChooseButton.innerHTML = "<i class='fa " + visibilityInfos.icon + "'></i>";
//Add dropdown menu
var visibilityDropdown = createElem2({
appendTo: visibilityButtonGroup,
type: "ul",
class: "dropdown-menu"
});
//Process all visibility levels
var privateChoice = this._add_visibility_menu_item(visibilityDropdown, "private");
var friendsChoice = this._add_visibility_menu_item(visibilityDropdown, "friends");
var publicChoice = this._add_visibility_menu_item(visibilityDropdown, "public");
var onVisibilityLevelChoice = function(){
//Get the new visibility level
var new_level = this.getAttribute("data-level");
//Lock button
visibilityChooseButton.disabled = true;
//Make a request on the server to update the level
ComunicWeb.components.posts.interface.set_visibility_level(infos.ID, new_level, function(response){
//Unlock button
visibilityChooseButton.disabled = false;
//Check for errors
if(response.error){
ComunicWeb.common.notificationSystem.showNotification("Couldn't change post visibility level !", "danger");
return;
}
//Change the level on the button
visibilityChooseButton.innerHTML = "<i class='fa " + ComunicWeb.components.posts.visibilityLevels[new_level].icon + "'></i>";
});
}
//Set the items lives
privateChoice.onclick = onVisibilityLevelChoice;
friendsChoice.onclick = onVisibilityLevelChoice;
publicChoice.onclick = onVisibilityLevelChoice;
}
2017-12-31 17:51:46 +00:00
2018-01-14 07:09:04 +00:00
//Add a button to edit the post if the user is allowed
if(infos.user_access == "full"){
var editButtonDiv = createElem2({
appendTo: topRightArea,
type: "div",
class: "edit-post-div"
});
var editButtonLink = createElem2({
appendTo: editButtonDiv,
type: "a",
innerHTML: "<i class='fa fa-pencil'></i>"
});
2018-01-14 07:11:36 +00:00
//Make buttons lives
editButtonLink.onclick = function(){
//Open post editor
ComunicWeb.components.posts.edit.open(infos, postRoot);
2018-01-14 07:11:36 +00:00
};
2018-01-14 07:09:04 +00:00
}
2018-01-10 19:29:34 +00:00
//Add a button to delete the post if the user is allowed
if(infos.user_access == "full" || infos.user_access == "intermediate"){
var deleteButtonDiv = createElem2({
appendTo: topRightArea,
type: "div",
class: "del-post-div"
});
var deleteButtonLink = createElem2({
appendTo: deleteButtonDiv,
type: "a",
innerHTML: "<i class='fa fa-trash'></i>"
});
//Make delete button lives
deleteButtonLink.onclick = function(){
//Create a confirmation dialog
ComunicWeb.common.messages.confirm("Are you sure do you want to delete this post? The operation can not be reverted !", function(accept){
//Check if the user cancelled the operation
if(!accept)
return;
postRoot.style.visibility = "hidden";
//Delete the post
ComunicWeb.components.posts.interface.delete(infos.ID, function(response){
2018-01-12 05:39:58 +00:00
//Check for error
if(response.error){
//Display an error
ComunicWeb.common.notificationSystem.showNotification("An error occured while trying to delete post !", "danger");
//Make the post visible
postRoot.style.visibility = "visible";
return;
}
//Delete the post
emptyElem(postRoot);
postRoot.remove();
});
});
}
2018-01-10 19:29:34 +00:00
}
2017-12-31 17:51:46 +00:00
//Add post attachement (if any)
if(infos.kind == "text"){
//Do nothing
}
//In case of image
else if(infos.kind == "image"){
//Image link
var imageLink = createElem2({
appendTo: postRoot,
type:"a",
href: infos.file_path_url,
});
//Image element
createElem2({
appendTo: imageLink,
type: "img",
src: infos.file_path_url,
class: "post-image"
});
//Enable lightbox
imageLink.onclick = function(){
$(this).ekkoLightbox({
alwaysShowClose: true,
});
return false;
}
}
2018-01-03 09:37:46 +00:00
//In case of video
else if(infos.kind == "movie"){
2018-03-25 07:43:39 +00:00
var videoContainer = createElem2({
2018-01-04 16:16:27 +00:00
appendTo: postRoot,
type: "div",
class: "post-video"
});
2018-01-03 09:37:46 +00:00
//Create video element
var video = createElem2({
2018-03-25 07:43:39 +00:00
appendTo: videoContainer,
2018-01-03 09:37:46 +00:00
type: "video",
2018-01-04 16:16:27 +00:00
class: "video-js vjs-default-skin"
2018-01-03 09:37:46 +00:00
});
video.setAttribute("controls", "");
//Add source
var video_src = createElem2({
appendTo: video,
type: "source",
src: infos.video_infos.url
});
video_src.type = infos.video_infos.file_type;
//Enable videoJS
//videojs(video);
2018-01-03 09:37:46 +00:00
}
2018-01-03 10:11:24 +00:00
//In case of YouTube video
else if(infos.kind == "youtube"){
//Create iframe
var youtube_iframe = createElem2({
appendTo: postRoot,
type: "iframe",
class: "post-youtube",
src: "https://www.youtube-nocookie.com/embed/"+infos.file_path+"?rel=0"
});
youtube_iframe.setAttribute("frameborder", 0);
youtube_iframe.setAttribute("gesture", "media");
youtube_iframe.setAttribute("allow", "encrypted-media");
youtube_iframe.setAttribute("allowfullscreen", "");
}
2018-01-03 09:53:33 +00:00
//In case of PDF
else if(infos.kind == "pdf"){
//Create PDF button
var buttonContainer = createElem2({
appendTo: postRoot,
type: "div",
class: "post-pdf",
});
var button = createElem2({
appendTo: buttonContainer,
type: "a",
class: "btn btn-app",
href: infos.file_path_url,
});
button.target = "_blank";
createElem2({
appendTo: button,
type: "i",
class: "fa fa-file-pdf-o"
});
createElem2({
appendTo: button,
type: "span",
innerHTML: "PDF"
});
}
2018-01-03 10:33:50 +00:00
//In case of weblink
else if(infos.kind == "weblink"){
var linkContainer = createElem2({
appendTo: postRoot,
type: "div",
class: "attachment-block clearfix"
});
//Link image
var link_img = createElem2({
appendTo: linkContainer,
type: "img",
src: (infos.link_image != "default" ? infos.link_image : ComunicWeb.__config.assetsURL + "img/world.png"),
class: "attachment-img",
});
//Link heading
var link_heading = createElem2({
appendTo: linkContainer,
type: "h4",
2018-01-03 10:34:18 +00:00
class: "attachment-heading",
2018-01-03 10:33:50 +00:00
innerHTML: (infos.link_title != "default" ? infos.link_title : "Web page")
});
2018-01-03 10:34:18 +00:00
2018-01-03 10:33:50 +00:00
//Add attachement text
var link_attachment_text = createElem2({
appendTo: linkContainer,
type: "div",
class: "attachment_text",
});
var link_a_url = createElem2({
appendTo: link_attachment_text,
type: "a",
href: infos.link_url,
innerHTML: infos.link_url
});
link_a_url.target = "_blank";
//Add description (if any)
if(infos.link_description != "default"){
var link_description = createElem2({
appendTo: link_attachment_text,
type: "p",
innerHTML: infos.link_description
});
}
}
2018-01-03 11:28:46 +00:00
//In case of countdown timer
else if (infos.kind == "countdown"){
//Create countdown target
var target = createElem2({
appendTo: postRoot,
type: "div",
class: "post-countdown"
});
//Initialize countdown timer
2018-01-03 12:38:06 +00:00
ComunicWeb.components.countdown.init(infos.time_end, target);
2018-01-03 11:28:46 +00:00
}
2018-01-04 10:22:41 +00:00
//In case of survey
else if(infos.kind == "survey"){
//Add survey question
var surveyQuestion = createElem2({
appendTo: postRoot,
type: "h4",
innerHTML: infos.data_survey.infos.question,
class: "post-survey-question"
});
2018-03-25 07:43:39 +00:00
//Answer container
var surveyResponse = createElem2({
appendTo: postRoot,
type: "div",
});
2018-01-04 10:22:41 +00:00
//Create row
var row = createElem2({
appendTo: postRoot,
type: "div",
2018-03-25 07:43:39 +00:00
class: "row post-survey-chart-container"
2018-01-04 10:22:41 +00:00
});
//Create canvas column
var leftColumn = createElem2({
appendTo: row,
type: "div",
class: "col-md-8"
});
2018-03-25 07:43:39 +00:00
//Chart container
var chartContainer = createElem2({
2018-01-04 10:22:41 +00:00
appendTo: leftColumn,
type: "div",
class: "chart-responsive"
});
//Create canvas
var canvas = createElem2({
2018-03-25 07:43:39 +00:00
appendTo: chartContainer,
2018-01-04 10:22:41 +00:00
type: "canvas",
});
canvas.style.height = "150px";
//Create data column
var rightColumn = createElem2({
appendTo: row,
type: "div",
class: "col-md-4"
});
//Initialize legend
var charLegend = createElem2({
appendTo: rightColumn,
type: "ul",
class: "chart-legend clearfix"
});
//Define chart options
var pieOptions = {
//Boolean - Whether we should show a stroke on each segment
segmentShowStroke: true,
//String - The colour of each segment stroke
segmentStrokeColor: "#fff",
//Number - The width of each segment stroke
segmentStrokeWidth: 1,
//Number - The percentage of the chart that we cut out of the middle
percentageInnerCutout: 50, // This is 0 for Pie charts
//Number - Amount of animation steps
animationSteps: 100,
//String - Animation easing effect
animationEasing: "easeOutBounce",
//Boolean - Whether we animate the rotation of the Doughnut
animateRotate: true,
//Boolean - Whether we animate scaling the Doughnut from the centre
animateScale: false,
//Boolean - whether to make the chart responsive to window resizing
responsive: true,
// Boolean - whether to maintain the starting aspect ratio or not when responsive, if set to false, will take up entire container
maintainAspectRatio: false,
//String - A legend template
legendTemplate: "<ul class=\"<%=name.toLowerCase()%>-legend\"><% for (var i=0; i<segments.length; i++){%><li><span style=\"background-color:<%=segments[i].fillColor%>\"></span><%if(segments[i].label){%><%=segments[i].label%><%}%></li><%}%></ul>",
//String - A tooltip template
tooltipTemplate: "<%=value %> <%=label%>"
};
//Generate survey data
var colors = [
{fg: "#f56954", bg: "#f56954"},
{fg: "#00a65a", bg: "#00a65a"},
{fg: "#f39c12", bg: "#f39c12"},
{fg: "#00c0ef", bg: "#00c0ef"},
{fg: "#3c8dbc", bg: "#3c8dbc"},
{fg: "#d2d6de", bg: "#d2d6de"}
];
var surveyData = [];
var survey_choices = infos.data_survey.choices;
var color_id = 0;
var i;
for (i in survey_choices){
//Get the color
if(!colors[color_id])
color_id = 0;
var curr_color = colors[color_id];
//Generate choice informations
var choiceInfos = {
value: survey_choices[i].responses,
label: survey_choices[i].name,
color: curr_color.fg,
highlight: curr_color.bg,
}
//Add the choice to the list
surveyData.push(choiceInfos);
//Increment color
color_id++;
}
//Initialie chart
var pieChart = new Chart(canvas.getContext("2d"));
pieChart.Doughnut(surveyData, pieOptions);
//Fill legend
var i;
for(i in surveyData){
//Legend list elem
var lengendLi = createElem2({
appendTo: charLegend,
type: "li"
});
createElem2({
appendTo: lengendLi,
type: "i",
class: "fa fa-circle-o"
}).style.color = surveyData[i].color;
createElem2({
appendTo: lengendLi,
type: "span",
innerHTML: " "+surveyData[i].label
});
}
//Display survey response options if the user is signed in
if(signed_in()){
//Check if the user gave a response to the survey
if(infos.data_survey.user_choice != 0){
//Create a text to display user choice
var choosedResponseElem = createElem2({
appendTo: surveyResponse,
class: "survey-given-response",
type: "p",
innerHTML: "Your response: " + infos.data_survey.choices[infos.data_survey.user_choice].name + " "
});
//Offer the user to cancel his choice
var cancelReponseLink = createElem2({
appendTo: choosedResponseElem,
type: "a",
innerHTML: "Cancel"
});
//Make cancel button lives
cancelReponseLink.onclick = function(){
ComunicWeb.common.messages.confirm("Do you really want to cancel your response to the survey ?", function(confirm){
//Check if the user cancelled
if(!confirm)
return;
//Make a request on the server
ComunicWeb.components.posts.interface.cancel_survey_response(infos.ID, function(response){
//Check for errors
if(response.error){
ComunicWeb.common.notificationSystem.showNotification("Could not cancel response to survey !", "danger");
return;
}
//Reload post
ComunicWeb.components.posts.actions.reload_post(infos.ID, postRoot);
});
});
}
}
2018-01-17 05:48:03 +00:00
else {
//Offer the user the possibility to respond the survey
var surveyResponseForm = createElem2({
appendTo: surveyResponse,
type: "div",
class: "input-group"
});
//Create response chooser
var surveyResponseChooser = createElem2({
appendTo: surveyResponseForm,
type: "select",
class: "form-control"
});
//Display options
for(j in survey_choices){
//Create an element for the choice
option = createElem2({
appendTo: surveyResponseChooser,
type: "option",
innerHTML: survey_choices[j].name,
value: survey_choices[j].choiceID,
});
}
//Add confirm button
var chooseButtonSpan = createElem2({
appendTo: surveyResponseForm,
type: "span",
class: "input-group-btn"
});
var chooseButton = createElem2({
appendTo: chooseButtonSpan,
type: "button",
class: "btn btn-default",
innerHTML: "Send"
});
//Make confirm button lives
chooseButton.onclick = function(){
//Get selected answer ID
2018-01-17 05:55:26 +00:00
var choice_id = surveyResponseChooser.value;
2018-01-17 05:48:03 +00:00
//Lock send button
chooseButton.disabled = true;
//Perform a request on the server
2018-01-17 05:55:26 +00:00
ComunicWeb.components.posts.interface.survey_send_response(infos.ID, choice_id, function(response){
2018-01-17 05:48:03 +00:00
//Unlock button
chooseButton.disabled = false;
//Check for errors
if(response.error){
2018-03-03 13:42:06 +00:00
ComunicWeb.common.notificationSystem.showNotification("Could not send response to survey !", "danger");
2018-01-17 05:48:03 +00:00
return;
}
//Reload post
ComunicWeb.components.posts.actions.reload_post(infos.ID, postRoot);
});
}
}
}
2018-01-04 10:22:41 +00:00
}
2018-01-03 10:33:50 +00:00
//If the kind of post was not implemented
2017-12-31 17:51:46 +00:00
else {
//Log error
ComunicWeb.debug.logMessage("Not implemented kind of post: " + infos.kind);
2018-01-04 08:50:56 +00:00
ComunicWeb.common.error.submitError("notice", "Unimplemented kind of post: " + infos.kind, 0, {});
2017-12-31 17:51:46 +00:00
}
//Add post content
var postContent = createElem2({
appendTo: postRoot,
type: "div",
class: "post_content",
innerHTML: infos.content
});
2018-03-03 13:52:52 +00:00
//Parse emojies
ComunicWeb.components.emoji.parser.parse({
element: postContent
});
2017-12-31 17:51:46 +00:00
//Add bottom elements container
var bottomArea = createElem2({
appendTo: postRoot,
type: "ul",
class: "list-inline post-buttons"
});
//Load likes
var likesTarget = createElem2({
appendTo: bottomArea,
type: "li",
});
var userLiking = null;
if(signed_in()){
userLiking = infos.userlike;
}
//Call component
ComunicWeb.components.like.button.display(
"post",
infos.ID,
infos.likes,
userLiking,
likesTarget
);
2018-01-18 05:53:00 +00:00
//Load comments (if possible)
if(infos.comments != null)
ComunicWeb.components.comments.ui.display(infos.comments, infos.ID, postRoot);
2018-01-10 18:16:28 +00:00
},
/**
* Add a visibility level choice to a dropodown menu
*
* @param {HTMLElement} target The target menu
* @param {Object} name The name of the visibility level
* @return {HTMLElement} The created element container
*/
2018-01-14 07:11:36 +00:00
_add_visibility_menu_item: function(target, name){
2018-01-10 18:16:28 +00:00
//Create container
var itemContainer = createElem2({
appendTo: target,
type: "li",
});
//Create link container
var itemLink = createElem2({
appendTo: itemContainer,
type: "a"
});
itemLink.setAttribute("data-level", name);
//Add visibility icon
createElem2({
appendTo: itemLink,
type: "i",
class: "fa " + ComunicWeb.components.posts.visibilityLevels[name].icon
});
//Add visibility label
createElem2({
appendTo: itemLink,
type: "span",
innerHTML: ComunicWeb.components.posts.visibilityLevels[name].name
});
return itemLink;
},
2017-12-31 17:51:46 +00:00
}