mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-10-31 02:04:53 +00:00 
			
		
		
		
	Can enter in conversation with users from their pages
This commit is contained in:
		| @@ -60,6 +60,33 @@ ComunicWeb.pages.userPage.profileInfos = { | |||||||
| 			innerHTML: infos.firstName + " " + infos.lastName | 			innerHTML: infos.firstName + " " + infos.lastName | ||||||
| 		}); | 		}); | ||||||
|  |  | ||||||
|  | 		//Create button area | ||||||
|  | 		var buttonsArea = createElem2({ | ||||||
|  | 			appendTo: boxBody, | ||||||
|  | 			type: "div", | ||||||
|  | 		}); | ||||||
|  | 		buttonsArea.style.textAlign = "center"; | ||||||
|  | 		buttonsArea.style.marginTop = "2px"; | ||||||
|  | 		buttonsArea.style.marginBottom = "2px"; | ||||||
|  |  | ||||||
|  | 		if(signed_in()) { | ||||||
|  |  | ||||||
|  | 			if(userID() != infos.userID){ | ||||||
|  |  | ||||||
|  | 				//Add a button to help user create a conversation with the user | ||||||
|  | 				var conversationButton = createElem2({ | ||||||
|  | 					appendTo: buttonsArea, | ||||||
|  | 					type: "button", | ||||||
|  | 					class: "btn btn-default", | ||||||
|  | 					innerHTML: "<i class='fa fa-comments'></i>" | ||||||
|  | 				}); | ||||||
|  | 				 | ||||||
|  | 				conversationButton.onclick = function(){ | ||||||
|  | 					ComunicWeb.components.conversations.manager.openPrivate(infos.userID); | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  |  | ||||||
| 		//Add list of informations about user | 		//Add list of informations about user | ||||||
| 		var listInfos = createElem2({ | 		var listInfos = createElem2({ | ||||||
| 			appendTo: boxBody, | 			appendTo: boxBody, | ||||||
| @@ -94,7 +121,7 @@ ComunicWeb.pages.userPage.profileInfos = { | |||||||
| 		createElem2({ | 		createElem2({ | ||||||
| 			appendTo: accountCreationLi, | 			appendTo: accountCreationLi, | ||||||
| 			type: "b", | 			type: "b", | ||||||
| 			innerHTML: "Member since" | 			innerHTML: "Member for" | ||||||
| 		}); | 		}); | ||||||
| 		createElem2({ | 		createElem2({ | ||||||
| 			appendTo: accountCreationLi, | 			appendTo: accountCreationLi, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Pierre
					Pierre