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.
153 lines
4.5 KiB
TypeScript
153 lines
4.5 KiB
TypeScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import { MessageDirection } from '../../models/messageType';
|
|
import { getOurPubKeyStrFromCache } from '../../session/utils/User';
|
|
import {
|
|
FindAndFormatContactType,
|
|
openConversationToSpecificMessage,
|
|
} from '../../state/ducks/conversations';
|
|
import { ContactName } from '../conversation/ContactName';
|
|
import { Avatar, AvatarSize } from '../avatar/Avatar';
|
|
import { Timestamp } from '../conversation/Timestamp';
|
|
import { MessageBodyHighlight } from '../basic/MessageBodyHighlight';
|
|
import styled from 'styled-components';
|
|
|
|
type PropsHousekeeping = {
|
|
isSelected?: boolean;
|
|
};
|
|
|
|
export type PropsForSearchResults = {
|
|
from: FindAndFormatContactType;
|
|
to: FindAndFormatContactType;
|
|
id: string;
|
|
conversationId: string;
|
|
destination: string;
|
|
source: string;
|
|
|
|
direction?: string;
|
|
snippet?: string; //not sure about the type of snippet
|
|
receivedAt?: number;
|
|
};
|
|
|
|
export type MessageResultProps = PropsForSearchResults & PropsHousekeeping;
|
|
|
|
const FromName = (props: { source: string; destination: string }) => {
|
|
const { source, destination } = props;
|
|
|
|
const isNoteToSelf = destination === getOurPubKeyStrFromCache() && source === destination;
|
|
|
|
if (isNoteToSelf) {
|
|
return (
|
|
<span className="module-message-search-result__header__name">
|
|
{window.i18n('noteToSelf')}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
if (source === getOurPubKeyStrFromCache()) {
|
|
return <span className="module-message-search-result__header__name">{window.i18n('you')}</span>;
|
|
}
|
|
|
|
return (
|
|
// tslint:disable: use-simple-attributes
|
|
<ContactName
|
|
pubkey={source}
|
|
module="module-message-search-result__header__name"
|
|
shouldShowPubkey={false}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const From = (props: { source: string; destination: string }) => {
|
|
const { source, destination } = props;
|
|
const fromName = <FromName source={source} destination={destination} />;
|
|
|
|
const ourKey = getOurPubKeyStrFromCache();
|
|
|
|
if (destination !== ourKey) {
|
|
return (
|
|
<div className="module-message-search-result__header__from">
|
|
{fromName} {window.i18n('to')}
|
|
<span className="module-mesages-search-result__header__group">
|
|
<ContactName pubkey={destination} shouldShowPubkey={false} />
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return <div className="module-message-search-result__header__from">{fromName}</div>;
|
|
};
|
|
|
|
const AvatarItem = (props: { source: string }) => {
|
|
const { source } = props;
|
|
return <Avatar size={AvatarSize.S} pubkey={source} />;
|
|
};
|
|
|
|
const ResultBody = styled.div`
|
|
margin-top: 1px;
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
|
|
font-size: 13px;
|
|
|
|
color: var(--color-text-subtle);
|
|
|
|
max-height: 3.6em;
|
|
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
`;
|
|
|
|
export const MessageSearchResult = (props: MessageResultProps) => {
|
|
const { id, conversationId, receivedAt, snippet, destination, source, direction } = props;
|
|
|
|
// Some messages miss a source or destination. Doing checks to see if the fields can be derived from other sources.
|
|
// E.g. if the source is missing but the message is outgoing, the source will be our pubkey
|
|
const sourceOrDestinationDerivable =
|
|
(destination && direction === MessageDirection.outgoing) ||
|
|
!destination ||
|
|
!source ||
|
|
(source && direction === MessageDirection.incoming);
|
|
|
|
if (!sourceOrDestinationDerivable) {
|
|
return null;
|
|
}
|
|
|
|
const effectiveSource =
|
|
!source && direction === MessageDirection.outgoing ? getOurPubKeyStrFromCache() : source;
|
|
const effectiveDestination =
|
|
!destination && direction === MessageDirection.incoming
|
|
? getOurPubKeyStrFromCache()
|
|
: destination;
|
|
|
|
return (
|
|
<div
|
|
key={`div-msg-searchresult-${id}`}
|
|
role="button"
|
|
onClick={async () => {
|
|
await openConversationToSpecificMessage({
|
|
conversationKey: conversationId,
|
|
messageIdToNavigateTo: id,
|
|
});
|
|
}}
|
|
className={classNames('module-message-search-result')}
|
|
>
|
|
<AvatarItem source={effectiveSource} />
|
|
<div className="module-message-search-result__text">
|
|
<div className="module-message-search-result__header">
|
|
<From source={effectiveSource} destination={effectiveDestination} />
|
|
<div className="module-message-search-result__header__timestamp">
|
|
<Timestamp timestamp={receivedAt} />
|
|
</div>
|
|
</div>
|
|
<ResultBody>
|
|
<MessageBodyHighlight text={snippet || ''} />
|
|
</ResultBody>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|