signal-desktop/ts/components/conversation/GroupNotification.tsx

177 lines
4.6 KiB
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2018-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { compact, flatten } from 'lodash';
import { ContactName } from './ContactName';
import { Intl } from '../Intl';
2019-01-14 21:49:58 +00:00
import { LocalizerType } from '../../types/Util';
import { missingCaseError } from '../../util/missingCaseError';
interface Contact {
2020-07-24 01:35:32 +00:00
phoneNumber?: string;
profileName?: string;
name?: string;
2020-07-24 01:35:32 +00:00
title: string;
isMe?: boolean;
}
export type ChangeType = 'add' | 'remove' | 'name' | 'avatar' | 'general';
interface Change {
type: ChangeType;
newName?: string;
contacts?: Array<Contact>;
}
export type PropsData = {
from: Contact;
changes: Array<Change>;
};
type PropsHousekeeping = {
2019-01-14 21:49:58 +00:00
i18n: LocalizerType;
};
export type Props = PropsData & PropsHousekeeping;
export class GroupNotification extends React.Component<Props> {
2020-09-14 19:51:27 +00:00
public renderChange(
change: Change,
from: Contact
): JSX.Element | string | null | undefined {
const { contacts, type, newName } = change;
const { i18n } = this.props;
const otherPeople: Array<JSX.Element> = compact(
(contacts || []).map(contact => {
if (contact.isMe) {
return null;
}
return (
<span
key={`external-${contact.phoneNumber}`}
className="module-group-notification__contact"
>
<ContactName
2020-07-24 01:35:32 +00:00
title={contact.title}
phoneNumber={contact.phoneNumber}
profileName={contact.profileName}
name={contact.name}
2020-07-24 01:35:32 +00:00
i18n={i18n}
/>
</span>
);
})
);
const otherPeopleWithCommas: Array<JSX.Element | string> = compact(
flatten(
otherPeople.map((person, index) => [index > 0 ? ', ' : null, person])
)
);
const contactsIncludesMe = (contacts || []).length !== otherPeople.length;
switch (type) {
case 'name':
return (
<Intl i18n={i18n} id="titleIsNow" components={[newName || '']} />
);
case 'avatar':
return <Intl i18n={i18n} id="updatedGroupAvatar" />;
case 'add':
if (!contacts || !contacts.length) {
throw new Error('Group update is missing contacts');
}
2020-09-14 19:51:27 +00:00
// eslint-disable-next-line no-case-declarations
const otherPeopleNotifMsg =
otherPeople.length === 1
? 'joinedTheGroup'
: 'multipleJoinedTheGroup';
return (
<>
{otherPeople.length > 0 && (
<Intl
i18n={i18n}
id={otherPeopleNotifMsg}
components={[otherPeopleWithCommas]}
/>
)}
{contactsIncludesMe && (
<div className="module-group-notification__change">
<Intl i18n={i18n} id="youJoinedTheGroup" />
</div>
)}
</>
);
case 'remove':
if (from && from.isMe) {
return i18n('youLeftTheGroup');
}
if (!contacts || !contacts.length) {
throw new Error('Group update is missing contacts');
}
2020-09-14 19:51:27 +00:00
// eslint-disable-next-line no-case-declarations
2019-01-14 21:49:58 +00:00
const leftKey =
contacts.length > 1 ? 'multipleLeftTheGroup' : 'leftTheGroup';
return (
<Intl i18n={i18n} id={leftKey} components={[otherPeopleWithCommas]} />
);
case 'general':
2020-09-14 19:51:27 +00:00
// eslint-disable-next-line consistent-return
return;
default:
throw missingCaseError(type);
}
}
2020-09-14 19:51:27 +00:00
public render(): JSX.Element {
const { changes, i18n, from } = this.props;
// Leave messages are always from the person leaving, so we omit the fromLabel if
// the change is a 'leave.'
const isLeftOnly =
changes && changes.length === 1 && changes[0].type === 'remove';
const fromContact = (
<ContactName
2020-07-24 01:35:32 +00:00
title={from.title}
phoneNumber={from.phoneNumber}
profileName={from.profileName}
name={from.name}
2020-07-24 01:35:32 +00:00
i18n={i18n}
/>
);
const fromLabel = from.isMe ? (
<Intl i18n={i18n} id="youUpdatedTheGroup" />
) : (
<Intl i18n={i18n} id="updatedTheGroup" components={[fromContact]} />
);
return (
<div className="module-group-notification">
{isLeftOnly ? null : (
<>
{fromLabel}
<br />
</>
)}
2020-09-14 19:51:27 +00:00
{(changes || []).map((change, i) => (
// eslint-disable-next-line react/no-array-index-key
<div key={i} className="module-group-notification__change">
{this.renderChange(change, from)}
</div>
))}
</div>
);
}
}