ComunicWeb/assets/js/components/comments/interface.js
2018-01-30 06:49:50 +01:00

86 lines
1.8 KiB
JavaScript

/**
* Comments interface with the server
*
* @author Pierre HUBERT
*/
ComunicWeb.components.comments.interface = {
/**
* Create a new comment
*
* @param {number} postID The ID of the target post
* @param {FormData} data The data of the new comment
* @param {function} callback
*/
create: function(postID, data, callback){
//Prepare the request
var apiURI = "comments/create";
data.append("postID", postID);
//Make it
ComunicWeb.common.api.makeFormDatarequest(apiURI, data, true, callback);
},
/**
* Get informations about a single comment
*
* @param {number} commentID The ID of the comment to get
* @param {function} callback
*/
get_single: function(commentID, callback) {
//Perform a request on the API
var apiURI = "comments/get_single";
var params = {
commentID: commentID
};
//Make the request
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
},
/**
* Update a comment content
*
* @param {number} commentID The ID of the comment to update
* @param {string} content The new content of the comment
* @param {function} callback
*/
edit: function(commentID, content, callback){
//Perform a request on the API
var apiURI = "comments/edit";
var params = {
commentID: commentID,
content: content
};
//Make the request
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
},
/**
* Delete a comment
*
* @param {number} commentID The ID of the comment to delete
* @param {function} callback What to do once the comment has been delete
*/
delete: function(commentID, callback){
//Perform a request on the API
var apiURI = "comments/delete";
var params = {
commentID: commentID
};
//Make the request
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
}
};