mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-04 12:14:12 +00:00 
			
		
		
		
	Send a request to the server to cancel membership request.
This commit is contained in:
		@@ -130,4 +130,19 @@ ComunicWeb.components.groups.interface = {
 | 
				
			|||||||
		ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
 | 
							ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						/**
 | 
				
			||||||
 | 
						 * Cancel a membership request
 | 
				
			||||||
 | 
						 * 
 | 
				
			||||||
 | 
						 * @param {Number} id The ID of the target group
 | 
				
			||||||
 | 
						 * @param {Function} callback
 | 
				
			||||||
 | 
						 */
 | 
				
			||||||
 | 
						cancelRequest: function(id, callback){
 | 
				
			||||||
 | 
							//Perform the request over the API
 | 
				
			||||||
 | 
							var apiURI = "groups/cancel_request";
 | 
				
			||||||
 | 
							var params = {
 | 
				
			||||||
 | 
								id: id
 | 
				
			||||||
 | 
							};
 | 
				
			||||||
 | 
							ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
@@ -20,6 +20,24 @@ ComunicWeb.pages.groups.sections.membershipBlock = {
 | 
				
			|||||||
			type: "div"
 | 
								type: "div"
 | 
				
			||||||
		});
 | 
							});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							/**
 | 
				
			||||||
 | 
							 * Refresh current component information
 | 
				
			||||||
 | 
							 */
 | 
				
			||||||
 | 
							refresh_component = function(){
 | 
				
			||||||
 | 
								emptyElem(container);
 | 
				
			||||||
 | 
								ComunicWeb.components.groups.interface.getInfo(info.id, function(result){
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									//Check for errors
 | 
				
			||||||
 | 
									if(result.error)
 | 
				
			||||||
 | 
										return notify("Could not refresh membership information!", "danger");
 | 
				
			||||||
 | 
									
 | 
				
			||||||
 | 
									//Display the component again
 | 
				
			||||||
 | 
									ComunicWeb.pages.groups.sections.membershipBlock.display(result, container);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		//Check if the user is an administrator / moderator / member
 | 
							//Check if the user is an administrator / moderator / member
 | 
				
			||||||
		if(info.membership == "administrator")
 | 
							if(info.membership == "administrator")
 | 
				
			||||||
			return createElem2({
 | 
								return createElem2({
 | 
				
			||||||
@@ -75,6 +93,10 @@ ComunicWeb.pages.groups.sections.membershipBlock = {
 | 
				
			|||||||
			 */
 | 
								 */
 | 
				
			||||||
			var respondInvitation = function(accept){
 | 
								var respondInvitation = function(accept){
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									//Hide the buttons
 | 
				
			||||||
 | 
									acceptInvitation.style.visibility = "hidden";
 | 
				
			||||||
 | 
									rejectInvitation.style.visibility = "hidden";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				//Perform the request over the server
 | 
									//Perform the request over the server
 | 
				
			||||||
				ComunicWeb.components.groups.interface.respondInvitation(info.id, accept, function(result){
 | 
									ComunicWeb.components.groups.interface.respondInvitation(info.id, accept, function(result){
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -83,18 +105,7 @@ ComunicWeb.pages.groups.sections.membershipBlock = {
 | 
				
			|||||||
						notify("An error occurred while trying to respond to the invitation!", "danger");
 | 
											notify("An error occurred while trying to respond to the invitation!", "danger");
 | 
				
			||||||
					
 | 
										
 | 
				
			||||||
					//Refresh the component
 | 
										//Refresh the component
 | 
				
			||||||
					emptyElem(container);
 | 
										refresh_component();
 | 
				
			||||||
					ComunicWeb.components.groups.interface.getInfo(info.id, function(result){
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
						//Check for errors
 | 
					 | 
				
			||||||
						if(result.error)
 | 
					 | 
				
			||||||
							return notify("Could not refresh membership information!", "danger");
 | 
					 | 
				
			||||||
						
 | 
					 | 
				
			||||||
						//Display the component again
 | 
					 | 
				
			||||||
						ComunicWeb.pages.groups.sections.membershipBlock.display(result, container);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
					});
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				});
 | 
									});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
@@ -118,6 +129,40 @@ ComunicWeb.pages.groups.sections.membershipBlock = {
 | 
				
			|||||||
			});
 | 
								});
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							//Check if the user send a membership request
 | 
				
			||||||
 | 
							if(info.membership == "pending"){
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								var requestedContainer = createElem2({
 | 
				
			||||||
 | 
									appendTo: container,
 | 
				
			||||||
 | 
									type: "span",
 | 
				
			||||||
 | 
									innerHTML: "<i class='fa fa-clock-o'></i> Requested "
 | 
				
			||||||
 | 
								});
 | 
				
			||||||
 | 
								add_space(container);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								//Add a link to cancel the request
 | 
				
			||||||
 | 
								var cancelLink = createElem2({
 | 
				
			||||||
 | 
									appendTo: requestedContainer,
 | 
				
			||||||
 | 
									type: "span",
 | 
				
			||||||
 | 
									class: "a",
 | 
				
			||||||
 | 
									innerHTML: "Cancel"
 | 
				
			||||||
 | 
								});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								cancelLink.addEventListener("click", function(e){
 | 
				
			||||||
 | 
									cancelLink.style.visibility = "hidden";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									//Cancel the request
 | 
				
			||||||
 | 
									ComunicWeb.components.groups.interface.cancelRequest(info.id, function(result){
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
										if(result.error)
 | 
				
			||||||
 | 
											notify("An error occurred while trying to cancel membership request!", "danger");
 | 
				
			||||||
 | 
										
 | 
				
			||||||
 | 
										refresh_component();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									});
 | 
				
			||||||
 | 
									
 | 
				
			||||||
 | 
								})
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
		Reference in New Issue
	
	Block a user