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.
99 lines
2.8 KiB
TypeScript
99 lines
2.8 KiB
TypeScript
import React from 'react';
|
|
import {
|
|
ConversationListItem,
|
|
PropsData as ConversationListItemPropsType,
|
|
} from './ConversationListItem';
|
|
import {
|
|
MessageSearchResult,
|
|
PropsData as MessageSearchResultPropsType,
|
|
} from './MessageSearchResult';
|
|
|
|
import { LocalizerType } from '../types/Util';
|
|
|
|
export type PropsData = {
|
|
contacts: Array<ConversationListItemPropsType>;
|
|
friends: Array<ConversationListItemPropsType>;
|
|
conversations: Array<ConversationListItemPropsType>;
|
|
hideMessagesHeader: boolean;
|
|
messages: Array<MessageSearchResultPropsType>;
|
|
regionCode: string;
|
|
searchTerm: string;
|
|
showStartNewConversation: boolean;
|
|
};
|
|
|
|
type PropsHousekeeping = {
|
|
i18n: LocalizerType;
|
|
openConversation: (id: string, messageId?: string) => void;
|
|
};
|
|
|
|
type Props = PropsData & PropsHousekeeping;
|
|
|
|
export class SearchResults extends React.Component<Props> {
|
|
public render() {
|
|
const {
|
|
conversations,
|
|
contacts,
|
|
hideMessagesHeader,
|
|
i18n,
|
|
messages,
|
|
openConversation,
|
|
searchTerm,
|
|
showStartNewConversation,
|
|
friends,
|
|
} = this.props;
|
|
|
|
const haveConversations = conversations && conversations.length;
|
|
const haveContacts = contacts && contacts.length;
|
|
const haveFriends = friends && friends.length;
|
|
const haveMessages = messages && messages.length;
|
|
const noResults =
|
|
!showStartNewConversation &&
|
|
!haveConversations &&
|
|
!haveContacts &&
|
|
!haveMessages &&
|
|
!haveFriends;
|
|
|
|
return (
|
|
<div className="module-search-results">
|
|
{noResults ? (
|
|
<div className="module-search-results__no-results">
|
|
{i18n('noSearchResults', [searchTerm])}
|
|
</div>
|
|
) : null}
|
|
{haveConversations ? (
|
|
<div className="module-search-results__conversations">
|
|
<div className="module-search-results__conversations-header">
|
|
{i18n('conversationsHeader')}
|
|
</div>
|
|
{conversations.map(conversation => (
|
|
<ConversationListItem
|
|
key={conversation.phoneNumber}
|
|
{...conversation}
|
|
onClick={openConversation}
|
|
i18n={i18n}
|
|
/>
|
|
))}
|
|
</div>
|
|
) : null}
|
|
{haveMessages ? (
|
|
<div className="module-search-results__messages">
|
|
{hideMessagesHeader ? null : (
|
|
<div className="module-search-results__messages-header">
|
|
{i18n('messages')}
|
|
</div>
|
|
)}
|
|
{messages.map(message => (
|
|
<MessageSearchResult
|
|
key={message.id}
|
|
{...message}
|
|
onClick={openConversation}
|
|
i18n={i18n}
|
|
/>
|
|
))}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
);
|
|
}
|
|
}
|