First-class profile name rendering

This commit is contained in:
Scott Nonnenberg 2020-07-23 18:35:32 -07:00
parent 632cd0e87e
commit d07b8e82b2
63 changed files with 1044 additions and 454 deletions

View file

@ -9,7 +9,9 @@ import { ColorType, LocalizerType } from '../../types/Util';
interface Contact {
status: string;
phoneNumber: string;
title: string;
phoneNumber?: string;
name?: string;
profileName?: string;
avatarPath?: string;
@ -49,7 +51,14 @@ export class MessageDetail extends React.Component<Props> {
public renderAvatar(contact: Contact) {
const { i18n } = this.props;
const { avatarPath, color, phoneNumber, name, profileName } = contact;
const {
avatarPath,
color,
phoneNumber,
name,
profileName,
title,
} = contact;
return (
<Avatar
@ -60,6 +69,7 @@ export class MessageDetail extends React.Component<Props> {
name={name}
phoneNumber={phoneNumber}
profileName={profileName}
title={title}
size={52}
/>
);
@ -123,6 +133,8 @@ export class MessageDetail extends React.Component<Props> {
phoneNumber={contact.phoneNumber}
name={contact.name}
profileName={contact.profileName}
title={contact.title}
i18n={i18n}
/>
</div>
{errors.map((error, index) => (