You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
| import { ConversationModel } from '../../js/models/conversations';
 | |
| 
 | |
| // tslint:disable: no-unnecessary-class
 | |
| export class FindMember {
 | |
|   public static async findMember(
 | |
|     pubkey: String,
 | |
|     convoId: string,
 | |
|     clearOurInterval?: any
 | |
|   ): Promise<ConversationModel | null> {
 | |
|     let groupMembers;
 | |
| 
 | |
|     const groupConvos = window.getConversations().models.filter((d: any) => {
 | |
|       return !d.isPrivate();
 | |
|     });
 | |
|     const thisConvo = groupConvos.find((d: any) => {
 | |
|       return d.id === convoId;
 | |
|     });
 | |
| 
 | |
|     if (!thisConvo) {
 | |
|       // If this gets triggered, is is likely because we deleted the conversation
 | |
|       if (clearOurInterval) {
 | |
|         clearOurInterval();
 | |
|       }
 | |
| 
 | |
|       return null;
 | |
|     }
 | |
| 
 | |
|     if (thisConvo.isPublic()) {
 | |
|       const publicMembers = await window.lokiPublicChatAPI.getListOfMembers();
 | |
|       const memberConversations = publicMembers
 | |
|         .map(publicMember =>
 | |
|           window.ConversationController.get(publicMember.authorPhoneNumber)
 | |
|         )
 | |
|         .filter((c: any) => !!c);
 | |
|       groupMembers = memberConversations;
 | |
|     } else {
 | |
|       const privateConvos = window
 | |
|         .getConversations()
 | |
|         .models.filter((d: any) => d.isPrivate());
 | |
|       const members = thisConvo.attributes.members;
 | |
|       if (!members) {
 | |
|         return null;
 | |
|       }
 | |
|       const memberConversations = members
 | |
|         .map((m: any) => privateConvos.find((c: any) => c.id === m))
 | |
|         .filter((c: any) => !!c);
 | |
|       groupMembers = memberConversations;
 | |
|     }
 | |
| 
 | |
|     return groupMembers.find(({ id: pn }: any) => pn && pn === pubkey);
 | |
|   }
 | |
| }
 |