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.
87 lines
2.3 KiB
TypeScript
87 lines
2.3 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, getSelectedMessage],
|
|
(
|
|
searchState: SearchStateType,
|
|
lookup: ConversationLookupType,
|
|
selectedConversation?: string,
|
|
selectedMessage?: string
|
|
) => {
|
|
console.warn({ state: searchState });
|
|
return {
|
|
contacts: compact(
|
|
searchState.contacts.map(id => {
|
|
const value = lookup[id];
|
|
|
|
if (value && id === selectedConversation) {
|
|
return {
|
|
...value,
|
|
isSelected: true,
|
|
};
|
|
}
|
|
|
|
return value;
|
|
})
|
|
),
|
|
conversations: compact(
|
|
searchState.conversations.map(id => {
|
|
const value = lookup[id];
|
|
|
|
// Don't return anything when activeAt is unset (i.e. no current conversations with this user)
|
|
if (value.activeAt === undefined || value.activeAt === 0) {
|
|
//activeAt can be 0 when linking device
|
|
return null;
|
|
}
|
|
|
|
if (value && id === selectedConversation) {
|
|
return {
|
|
...value,
|
|
isSelected: true,
|
|
};
|
|
}
|
|
|
|
return value;
|
|
})
|
|
),
|
|
messages: compact(
|
|
searchState.messages?.map(message => {
|
|
if (message.id === selectedMessage) {
|
|
return {
|
|
...message,
|
|
isSelected: true,
|
|
};
|
|
}
|
|
|
|
return message;
|
|
})
|
|
),
|
|
hideMessagesHeader: false,
|
|
|
|
searchTerm: searchState.query,
|
|
};
|
|
}
|
|
);
|