mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-28 12:23:31 +01:00
Rename files
This commit is contained in:
32
ts/components/conversation/PaymentEventNotification.dom.tsx
Normal file
32
ts/components/conversation/PaymentEventNotification.dom.tsx
Normal file
@@ -0,0 +1,32 @@
|
||||
// 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): 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} />} />
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user