2021-02-23 20:34:28 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { FunctionComponent } from 'react';
|
|
|
|
import React from 'react';
|
2021-02-23 20:34:28 +00:00
|
|
|
|
2023-01-25 23:51:08 +00:00
|
|
|
import { HEADER_CONTACT_NAME_CLASS_NAME } from './BaseConversationListItem';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { ConversationType } from '../../state/ducks/conversations';
|
2021-11-17 21:11:21 +00:00
|
|
|
import type { BadgeType } from '../../badges/types';
|
|
|
|
import type { LocalizerType, ThemeType } from '../../types/Util';
|
2021-02-23 20:34:28 +00:00
|
|
|
import { ContactName } from '../conversation/ContactName';
|
|
|
|
import { About } from '../conversation/About';
|
2023-01-25 23:51:08 +00:00
|
|
|
import { ListTile } from '../ListTile';
|
|
|
|
import { Avatar, AvatarSize } from '../Avatar';
|
2022-11-09 02:38:19 +00:00
|
|
|
import { isSignalConversation } from '../../util/isSignalConversation';
|
2021-02-23 20:34:28 +00:00
|
|
|
|
2021-11-17 21:11:21 +00:00
|
|
|
export type ContactListItemConversationType = Pick<
|
2021-04-30 19:40:25 +00:00
|
|
|
ConversationType,
|
|
|
|
| 'about'
|
|
|
|
| 'acceptedMessageRequest'
|
|
|
|
| 'avatarPath'
|
2021-11-17 21:11:21 +00:00
|
|
|
| 'badges'
|
2021-04-30 19:40:25 +00:00
|
|
|
| 'color'
|
2023-01-13 00:24:59 +00:00
|
|
|
| 'groupId'
|
2021-04-30 19:40:25 +00:00
|
|
|
| 'id'
|
|
|
|
| 'isMe'
|
|
|
|
| 'phoneNumber'
|
|
|
|
| 'profileName'
|
|
|
|
| 'sharedGroupNames'
|
|
|
|
| 'title'
|
|
|
|
| 'type'
|
|
|
|
| 'unblurredAvatarPath'
|
2022-06-17 00:38:28 +00:00
|
|
|
| 'username'
|
2022-04-05 00:38:22 +00:00
|
|
|
| 'e164'
|
2022-11-09 02:38:19 +00:00
|
|
|
| 'uuid'
|
2021-04-30 19:40:25 +00:00
|
|
|
>;
|
2021-02-23 20:34:28 +00:00
|
|
|
|
2021-11-17 21:11:21 +00:00
|
|
|
type PropsDataType = ContactListItemConversationType & {
|
|
|
|
badge: undefined | BadgeType;
|
|
|
|
};
|
|
|
|
|
2021-02-23 20:34:28 +00:00
|
|
|
type PropsHousekeepingType = {
|
|
|
|
i18n: LocalizerType;
|
2021-03-03 20:09:58 +00:00
|
|
|
onClick?: (id: string) => void;
|
2021-11-17 21:11:21 +00:00
|
|
|
theme: ThemeType;
|
2021-02-23 20:34:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
type PropsType = PropsDataType & PropsHousekeepingType;
|
|
|
|
|
|
|
|
export const ContactListItem: FunctionComponent<PropsType> = React.memo(
|
2021-08-11 19:29:07 +00:00
|
|
|
function ContactListItem({
|
2021-02-23 20:34:28 +00:00
|
|
|
about,
|
2021-04-30 19:40:25 +00:00
|
|
|
acceptedMessageRequest,
|
2021-02-23 20:34:28 +00:00
|
|
|
avatarPath,
|
2021-11-17 21:11:21 +00:00
|
|
|
badge,
|
2021-02-23 20:34:28 +00:00
|
|
|
color,
|
|
|
|
i18n,
|
|
|
|
id,
|
|
|
|
isMe,
|
|
|
|
onClick,
|
|
|
|
phoneNumber,
|
|
|
|
profileName,
|
2021-04-30 19:40:25 +00:00
|
|
|
sharedGroupNames,
|
2021-11-17 21:11:21 +00:00
|
|
|
theme,
|
2021-02-23 20:34:28 +00:00
|
|
|
title,
|
|
|
|
type,
|
2021-04-30 19:40:25 +00:00
|
|
|
unblurredAvatarPath,
|
2022-11-09 02:38:19 +00:00
|
|
|
uuid,
|
2021-08-11 19:29:07 +00:00
|
|
|
}) {
|
2021-02-23 20:34:28 +00:00
|
|
|
const headerName = isMe ? (
|
2023-03-02 06:57:35 +00:00
|
|
|
<ContactName
|
|
|
|
isMe={isMe}
|
|
|
|
module={HEADER_CONTACT_NAME_CLASS_NAME}
|
|
|
|
title={i18n('noteToSelf')}
|
|
|
|
/>
|
2021-02-23 20:34:28 +00:00
|
|
|
) : (
|
2022-11-09 02:38:19 +00:00
|
|
|
<ContactName
|
|
|
|
isSignalConversation={isSignalConversation({ id, uuid })}
|
|
|
|
module={HEADER_CONTACT_NAME_CLASS_NAME}
|
|
|
|
title={title}
|
|
|
|
/>
|
2021-02-23 20:34:28 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
const messageText =
|
2023-01-25 23:51:08 +00:00
|
|
|
about && !isMe ? <About className="" text={about} /> : undefined;
|
2021-02-23 20:34:28 +00:00
|
|
|
|
|
|
|
return (
|
2023-01-25 23:51:08 +00:00
|
|
|
<ListTile
|
|
|
|
leading={
|
|
|
|
<Avatar
|
|
|
|
acceptedMessageRequest={acceptedMessageRequest}
|
|
|
|
avatarPath={avatarPath}
|
|
|
|
color={color}
|
|
|
|
conversationType={type}
|
|
|
|
noteToSelf={Boolean(isMe)}
|
|
|
|
i18n={i18n}
|
|
|
|
isMe={isMe}
|
|
|
|
phoneNumber={phoneNumber}
|
|
|
|
profileName={profileName}
|
|
|
|
title={title}
|
|
|
|
sharedGroupNames={sharedGroupNames}
|
|
|
|
size={AvatarSize.THIRTY_TWO}
|
|
|
|
unblurredAvatarPath={unblurredAvatarPath}
|
|
|
|
// This is here to appease the type checker.
|
|
|
|
{...(badge ? { badge, theme } : { badge: undefined })}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
title={headerName}
|
|
|
|
subtitle={messageText}
|
|
|
|
subtitleMaxLines={1}
|
2021-03-03 20:09:58 +00:00
|
|
|
onClick={onClick ? () => onClick(id) : undefined}
|
2021-02-23 20:34:28 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|