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.
		
		
		
		
		
			
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
| import { compact } from 'lodash';
 | |
| import { createSelector } from 'reselect';
 | |
| 
 | |
| import { StateType } from '../reducer';
 | |
| 
 | |
| import { SearchStateType } from '../ducks/search';
 | |
| import { getConversationLookup, getSelectedConversationKey } from './conversations';
 | |
| import { ConversationLookupType } from '../ducks/conversations';
 | |
| 
 | |
| export const getSearch = (state: StateType): SearchStateType => state.search;
 | |
| 
 | |
| export const getQuery = createSelector(getSearch, (state: SearchStateType): string => state.query);
 | |
| 
 | |
| export const getSelectedMessage = createSelector(
 | |
|   getSearch,
 | |
|   (state: SearchStateType): string | undefined => state.selectedMessage
 | |
| );
 | |
| 
 | |
| export const isSearching = createSelector(getSearch, (state: SearchStateType) => {
 | |
|   const { query } = state;
 | |
| 
 | |
|   return Boolean(query && query.trim().length > 1);
 | |
| });
 | |
| 
 | |
| export const getSearchResults = createSelector(
 | |
|   [getSearch, getConversationLookup, getSelectedConversationKey],
 | |
|   (state: SearchStateType, lookup: ConversationLookupType, selectedConversation?: string) => {
 | |
|     return {
 | |
|       contacts: compact(
 | |
|         state.contacts.map(id => {
 | |
|           const value = lookup[id];
 | |
| 
 | |
|           if (value && id === selectedConversation) {
 | |
|             return {
 | |
|               ...value,
 | |
|               isSelected: true,
 | |
|             };
 | |
|           }
 | |
| 
 | |
|           return value;
 | |
|         })
 | |
|       ),
 | |
|       conversations: compact(
 | |
|         state.conversations.map(id => {
 | |
|           const value = lookup[id];
 | |
| 
 | |
|           // Don't return anything when activeAt is undefined (i.e. no current conversations with this user)
 | |
|           if (value.activeAt === undefined) {
 | |
|             return null;
 | |
|           }
 | |
| 
 | |
|           if (value && id === selectedConversation) {
 | |
|             return {
 | |
|               ...value,
 | |
|               isSelected: true,
 | |
|             };
 | |
|           }
 | |
| 
 | |
|           return value;
 | |
|         })
 | |
|       ),
 | |
|       hideMessagesHeader: false,
 | |
| 
 | |
|       searchTerm: state.query,
 | |
|     };
 | |
|   }
 | |
| );
 |