Files
Desktop/ts/components/conversation/PaymentEventNotification.dom.tsx
Jamie b405e3d83d Prepare for upgrade to React 19
Co-authored-by: ayumi-signal <ayumi@signal.org>
2025-12-23 13:42:56 -08:00

33 lines
1007 B
TypeScript

// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import type { LocalizerType } from '../../types/Util.std.js';
import type { ConversationType } from '../../state/ducks/conversations.preload.js';
import { SystemMessage } from './SystemMessage.dom.js';
import { Emojify } from './Emojify.dom.js';
import type { AnyPaymentEvent } from '../../types/Payment.std.js';
import { getPaymentEventDescription } from '../../messages/payments.std.js';
export type PropsType = {
event: AnyPaymentEvent;
sender: ConversationType;
conversation: ConversationType;
i18n: LocalizerType;
};
export function PaymentEventNotification(props: PropsType): React.JSX.Element {
const { event, sender, conversation, i18n } = props;
const message = getPaymentEventDescription(
event,
sender.title,
conversation.title,
sender.isMe,
i18n
);
return (
<SystemMessage icon="payment-event" contents={<Emojify text={message} />} />
);
}