2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2018 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2022-11-18 00:45:19 +00:00
|
|
|
import type { ReactNode } from 'react';
|
2021-10-26 19:15:33 +00:00
|
|
|
import React from 'react';
|
2018-07-09 21:29:13 +00:00
|
|
|
|
|
|
|
import { ContactName } from './ContactName';
|
2021-09-07 19:55:03 +00:00
|
|
|
import { SystemMessage } from './SystemMessage';
|
2018-07-09 21:29:13 +00:00
|
|
|
import { Intl } from '../Intl';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { LocalizerType } from '../../types/Util';
|
2021-05-03 23:24:40 +00:00
|
|
|
import * as expirationTimer from '../../util/expirationTimer';
|
2022-11-16 20:18:02 +00:00
|
|
|
import type { DurationInSeconds } from '../../util/durations';
|
2021-09-17 18:27:53 +00:00
|
|
|
import * as log from '../../logging/log';
|
2018-07-09 21:29:13 +00:00
|
|
|
|
2020-09-24 20:57:54 +00:00
|
|
|
export type TimerNotificationType =
|
|
|
|
| 'fromOther'
|
|
|
|
| 'fromMe'
|
|
|
|
| 'fromSync'
|
|
|
|
| 'fromMember';
|
|
|
|
|
2021-05-03 23:24:40 +00:00
|
|
|
// We can't always use destructuring assignment because of the complexity of this props
|
|
|
|
// type.
|
2022-11-18 00:45:19 +00:00
|
|
|
|
2019-03-20 17:42:28 +00:00
|
|
|
export type PropsData = {
|
2020-09-24 20:57:54 +00:00
|
|
|
type: TimerNotificationType;
|
2020-07-24 01:35:32 +00:00
|
|
|
title: string;
|
2021-05-03 23:24:40 +00:00
|
|
|
} & (
|
|
|
|
| { disabled: true }
|
|
|
|
| {
|
|
|
|
disabled: false;
|
2022-11-16 20:18:02 +00:00
|
|
|
expireTimer: DurationInSeconds;
|
2021-05-03 23:24:40 +00:00
|
|
|
}
|
|
|
|
);
|
2019-03-20 17:42:28 +00:00
|
|
|
|
|
|
|
type PropsHousekeeping = {
|
2019-01-14 21:49:58 +00:00
|
|
|
i18n: LocalizerType;
|
2019-03-20 17:42:28 +00:00
|
|
|
};
|
|
|
|
|
2020-08-26 00:41:43 +00:00
|
|
|
export type Props = PropsData & PropsHousekeeping;
|
2018-07-09 21:29:13 +00:00
|
|
|
|
2022-11-18 00:45:19 +00:00
|
|
|
export function TimerNotification(props: Props): JSX.Element {
|
2021-09-16 16:15:43 +00:00
|
|
|
const { disabled, i18n, title, type } = props;
|
2018-07-09 21:29:13 +00:00
|
|
|
|
2021-05-03 23:24:40 +00:00
|
|
|
let timespan: string;
|
2023-05-04 18:04:22 +00:00
|
|
|
if (disabled) {
|
2021-05-03 23:24:40 +00:00
|
|
|
timespan = ''; // Set to the empty string to satisfy types
|
|
|
|
} else {
|
|
|
|
timespan = expirationTimer.format(i18n, props.expireTimer);
|
2018-07-09 21:29:13 +00:00
|
|
|
}
|
|
|
|
|
2023-03-29 17:15:54 +00:00
|
|
|
const name = <ContactName key="external-1" title={title} />;
|
|
|
|
|
2021-05-03 23:24:40 +00:00
|
|
|
let message: ReactNode;
|
|
|
|
switch (type) {
|
|
|
|
case 'fromOther':
|
2023-05-04 18:04:22 +00:00
|
|
|
message = disabled ? (
|
2023-03-29 17:15:54 +00:00
|
|
|
<Intl
|
|
|
|
i18n={i18n}
|
2023-03-30 00:03:25 +00:00
|
|
|
id="icu:disabledDisappearingMessages"
|
2023-03-29 17:15:54 +00:00
|
|
|
components={{ name }}
|
|
|
|
/>
|
|
|
|
) : (
|
2021-05-03 23:24:40 +00:00
|
|
|
<Intl
|
|
|
|
i18n={i18n}
|
2023-03-30 00:03:25 +00:00
|
|
|
id="icu:theyChangedTheTimer"
|
2023-03-29 17:15:54 +00:00
|
|
|
components={{ name, time: timespan }}
|
2021-05-03 23:24:40 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case 'fromMe':
|
|
|
|
message = disabled
|
2023-03-30 00:03:25 +00:00
|
|
|
? i18n('icu:youDisabledDisappearingMessages')
|
|
|
|
: i18n('icu:youChangedTheTimer', { time: timespan });
|
2021-05-03 23:24:40 +00:00
|
|
|
break;
|
|
|
|
case 'fromSync':
|
|
|
|
message = disabled
|
2023-03-30 00:03:25 +00:00
|
|
|
? i18n('icu:disappearingMessagesDisabled')
|
|
|
|
: i18n('icu:timerSetOnSync', { time: timespan });
|
2021-05-03 23:24:40 +00:00
|
|
|
break;
|
|
|
|
case 'fromMember':
|
|
|
|
message = disabled
|
2023-03-30 00:03:25 +00:00
|
|
|
? i18n('icu:disappearingMessagesDisabledByMember')
|
|
|
|
: i18n('icu:timerSetByMember', { time: timespan });
|
2021-05-03 23:24:40 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-09-17 18:27:53 +00:00
|
|
|
log.warn('TimerNotification: unsupported type provided:', type);
|
2021-05-03 23:24:40 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-07-09 21:29:13 +00:00
|
|
|
|
2021-09-07 19:55:03 +00:00
|
|
|
const icon = disabled ? 'timer-disabled' : 'timer';
|
|
|
|
|
|
|
|
return <SystemMessage icon={icon} contents={message} />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|