mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Can reload a single comment
This commit is contained in:
parent
1b94a1b1c2
commit
5a62f6206f
@ -717,6 +717,13 @@ var ComunicWeb = {
|
||||
//TODO : implement
|
||||
},
|
||||
|
||||
/**
|
||||
* Comment actions
|
||||
*/
|
||||
actions: {
|
||||
//TODO : implement
|
||||
},
|
||||
|
||||
/**
|
||||
* Comments interface
|
||||
*/
|
||||
|
40
assets/js/components/comments/actions.js
Normal file
40
assets/js/components/comments/actions.js
Normal 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);
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
};
|
@ -31,7 +31,8 @@ ComunicWeb.components.comments.editor = {
|
||||
}
|
||||
|
||||
//Else perform next actions
|
||||
|
||||
//Reload the comment
|
||||
ComunicWeb.components.comments.actions.reload(infos.ID, root);
|
||||
});
|
||||
|
||||
}
|
||||
|
@ -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({
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user