signal-desktop/ts/components/GroupV1MigrationDialog.tsx

200 lines
5.4 KiB
TypeScript
Raw Normal View History

2023-01-03 19:55:46 +00:00
// Copyright 2019 Signal Messenger, LLC
2020-11-20 17:30:45 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
import * as React from 'react';
2021-11-20 15:41:21 +00:00
import type { LocalizerType, ThemeType } from '../types/Util';
import type { ConversationType } from '../state/ducks/conversations';
2021-11-20 15:41:21 +00:00
import type { PreferredBadgeSelectorType } from '../state/selectors/badges';
2021-03-03 20:09:58 +00:00
import { GroupDialog } from './GroupDialog';
import { sortByTitle } from '../util/sortByTitle';
2023-04-03 20:16:27 +00:00
import { missingCaseError } from '../util/missingCaseError';
2020-11-20 17:30:45 +00:00
export type DataPropsType = {
readonly areWeInvited: boolean;
2024-04-30 13:24:21 +00:00
readonly droppedMembers?: Array<ConversationType>;
readonly droppedMemberCount: number;
2020-11-20 17:30:45 +00:00
readonly hasMigrated: boolean;
2024-04-30 13:24:21 +00:00
readonly invitedMembers?: Array<ConversationType>;
readonly invitedMemberCount: number;
2021-11-20 15:41:21 +00:00
readonly getPreferredBadge: PreferredBadgeSelectorType;
2020-11-20 17:30:45 +00:00
readonly i18n: LocalizerType;
2021-11-20 15:41:21 +00:00
readonly theme: ThemeType;
2020-11-20 17:30:45 +00:00
};
type ActionsPropsType = Readonly<{
onMigrate: () => unknown;
onClose: () => unknown;
}>;
2022-12-08 06:41:37 +00:00
export type PropsType = DataPropsType & ActionsPropsType;
2020-11-20 17:30:45 +00:00
2021-11-11 22:43:05 +00:00
export const GroupV1MigrationDialog: React.FunctionComponent<PropsType> =
React.memo(function GroupV1MigrationDialogInner({
areWeInvited,
droppedMembers,
2024-04-30 13:24:21 +00:00
droppedMemberCount,
getPreferredBadge,
hasMigrated,
i18n,
invitedMembers,
2024-04-30 13:24:21 +00:00
invitedMemberCount,
theme,
onClose,
onMigrate,
}: PropsType) {
2021-03-03 20:09:58 +00:00
const title = hasMigrated
2023-03-30 00:03:25 +00:00
? i18n('icu:GroupV1--Migration--info--title')
: i18n('icu:GroupV1--Migration--migrate--title');
2021-03-03 20:09:58 +00:00
const keepHistory = hasMigrated
2023-03-30 00:03:25 +00:00
? i18n('icu:GroupV1--Migration--info--keep-history')
: i18n('icu:GroupV1--Migration--migrate--keep-history');
2020-11-20 17:30:45 +00:00
2021-03-03 20:09:58 +00:00
let primaryButtonText: string;
let onClickPrimaryButton: () => void;
let secondaryButtonProps:
| undefined
| {
secondaryButtonText: string;
onClickSecondaryButton: () => void;
};
if (hasMigrated) {
2023-03-30 00:03:25 +00:00
primaryButtonText = i18n('icu:Confirmation--confirm');
onClickPrimaryButton = onClose;
2021-03-03 20:09:58 +00:00
} else {
2023-03-30 00:03:25 +00:00
primaryButtonText = i18n('icu:GroupV1--Migration--migrate');
onClickPrimaryButton = onMigrate;
2021-03-03 20:09:58 +00:00
secondaryButtonProps = {
2023-03-30 00:03:25 +00:00
secondaryButtonText: i18n('icu:cancel'),
onClickSecondaryButton: onClose,
2021-03-03 20:09:58 +00:00
};
}
2020-11-20 17:30:45 +00:00
2021-03-03 20:09:58 +00:00
return (
<GroupDialog
i18n={i18n}
onClickPrimaryButton={onClickPrimaryButton}
onClose={onClose}
2021-03-03 20:09:58 +00:00
primaryButtonText={primaryButtonText}
title={title}
{...secondaryButtonProps}
>
<GroupDialog.Paragraph>
2023-03-30 00:03:25 +00:00
{i18n('icu:GroupV1--Migration--info--summary')}
2021-03-03 20:09:58 +00:00
</GroupDialog.Paragraph>
<GroupDialog.Paragraph>{keepHistory}</GroupDialog.Paragraph>
{areWeInvited ? (
2021-03-03 20:09:58 +00:00
<GroupDialog.Paragraph>
2023-03-30 00:03:25 +00:00
{i18n('icu:GroupV1--Migration--info--invited--you')}
2021-03-03 20:09:58 +00:00
</GroupDialog.Paragraph>
) : (
<>
2021-11-20 15:41:21 +00:00
{renderMembers({
getPreferredBadge,
i18n,
members: invitedMembers,
2024-04-30 13:24:21 +00:00
count: invitedMemberCount,
hasMigrated,
kind: 'invited',
2021-11-20 15:41:21 +00:00
theme,
})}
{renderMembers({
getPreferredBadge,
i18n,
members: droppedMembers,
2024-04-30 13:24:21 +00:00
count: droppedMemberCount,
hasMigrated,
kind: 'dropped',
2021-11-20 15:41:21 +00:00
theme,
})}
</>
2020-11-20 17:30:45 +00:00
)}
2021-03-03 20:09:58 +00:00
</GroupDialog>
2020-11-20 17:30:45 +00:00
);
2021-11-11 22:43:05 +00:00
});
2020-11-20 17:30:45 +00:00
2021-11-20 15:41:21 +00:00
function renderMembers({
getPreferredBadge,
i18n,
members,
2024-04-30 13:24:21 +00:00
count,
hasMigrated,
kind,
2021-11-20 15:41:21 +00:00
theme,
}: Readonly<{
getPreferredBadge: PreferredBadgeSelectorType;
i18n: LocalizerType;
2024-04-30 13:24:21 +00:00
members?: Array<ConversationType>;
count: number;
hasMigrated: boolean;
kind: 'invited' | 'dropped';
2021-11-20 15:41:21 +00:00
theme: ThemeType;
}>): React.ReactNode {
2024-04-30 13:24:21 +00:00
if (count === 0) {
2020-11-20 17:30:45 +00:00
return null;
}
2024-04-30 13:24:21 +00:00
if (!members) {
if (kind === 'invited') {
return (
<GroupDialog.Paragraph>
{i18n('icu:GroupV1--Migration--info--invited--count', { count })}
</GroupDialog.Paragraph>
);
}
if (hasMigrated) {
return (
<GroupDialog.Paragraph>
{i18n('icu:GroupV1--Migration--info--removed--after--count', {
count,
})}
</GroupDialog.Paragraph>
);
}
return (
<GroupDialog.Paragraph>
{i18n('icu:GroupV1--Migration--info--removed--before--count', {
count,
})}
</GroupDialog.Paragraph>
);
}
let text: string;
switch (kind) {
case 'invited':
text =
members.length === 1
2023-03-30 00:03:25 +00:00
? i18n('icu:GroupV1--Migration--info--invited--one')
: i18n('icu:GroupV1--Migration--info--invited--many');
break;
case 'dropped':
if (hasMigrated) {
text =
members.length === 1
2024-04-30 13:24:21 +00:00
? i18n('icu:GroupV1--Migration--info--removed--after--one')
: i18n('icu:GroupV1--Migration--info--removed--after--many');
} else {
text =
members.length === 1
2024-04-30 13:24:21 +00:00
? i18n('icu:GroupV1--Migration--info--removed--before--one')
: i18n('icu:GroupV1--Migration--info--removed--before--many');
}
break;
default:
throw missingCaseError(kind);
}
2020-11-20 17:30:45 +00:00
return (
2021-03-03 20:09:58 +00:00
<>
<GroupDialog.Paragraph>{text}</GroupDialog.Paragraph>
2021-11-20 15:41:21 +00:00
<GroupDialog.Contacts
contacts={sortByTitle(members)}
getPreferredBadge={getPreferredBadge}
i18n={i18n}
theme={theme}
/>
2021-03-03 20:09:58 +00:00
</>
2020-11-20 17:30:45 +00:00
);
}