Can reload a single comment

This commit is contained in:
Pierre 2018-01-27 18:49:05 +01:00
parent 1b94a1b1c2
commit 5a62f6206f
5 changed files with 91 additions and 7 deletions

View File

@ -717,6 +717,13 @@ var ComunicWeb = {
//TODO : implement
},
/**
* Comment actions
*/
actions: {
//TODO : implement
},
/**
* Comments interface
*/

View File

@ -0,0 +1,40 @@
/**
* Comments actions
*
* @author Pierre HUBERT
*/
ComunicWeb.components.comments.actions = {
/**
* Reload a single comment
*
* @param {number} commentID The ID of the comment to reload
* @param {HTMLElement} target The target of the reloaded comment
*/
reload: function(commentID, target){
//Hide the comment to reload
target.style.visibility = "hidden";
//Get informations about the comment on the API server
ComunicWeb.components.comments.interface.get_single(commentID, function(result){
//Display again the comment to update
target.style.visibility = "visible";
//Check for errors
if(result.error){
ComunicWeb.common.notificationSystem.showNotification("Couldn't get informations about a comment !", "danger");
return;
}
//Apply new informations about the comment
//Display new comment informations
ComunicWeb.components.comments.ui.display_comment(result, target);
});
}
};

View File

@ -31,7 +31,8 @@ ComunicWeb.components.comments.editor = {
}
//Else perform next actions
//Reload the comment
ComunicWeb.components.comments.actions.reload(infos.ID, root);
});
}

View File

@ -57,6 +57,30 @@ ComunicWeb.components.comments.ui = {
},
/**
* Display a single comment
*
* @param {Object} infos Informations about the comment to display
* @param {HTMLElement} target The target for the comment
*/
display_comment: function(infos, target){
//Get informations about the user
ComunicWeb.user.userInfos.getUserInfos(infos.userID, function(result){
//Check for errors
if(result.error){
ComunicWeb.common.notificationSystem.showNotification("Couldn't get informations about a user!", "danger");
return;
}
//Display the comment
ComunicWeb.components.comments.ui._show_comment(infos, result, target);
});
},
/**
* Show a comment
*
@ -66,12 +90,23 @@ ComunicWeb.components.comments.ui = {
*/
_show_comment: function(infos, user, target){
//Create comment contener
var commentContener = createElem2({
appendTo: target,
type: "div",
class: "box-comment"
});
//Create comment contener (if required)
if(target.className != "box-comment"){
var commentContener = createElem2({
appendTo: target,
type: "div",
class: "box-comment"
});
}
//Empty comment contener
else {
emptyElem(target);
var commentContener = target;
}
//Add user image
createElem2({

View File

@ -232,6 +232,7 @@ class Dev {
//Comments component
"js/components/comments/ui.js",
"js/components/comments/actions.js",
"js/components/comments/interface.js",
"js/components/comments/editor.js",
"js/components/comments/utils.js",