mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-25 04:36:46 +00:00
Rename files
This commit is contained in:
52
ts/components/conversation/ProfileChangeNotification.dom.tsx
Normal file
52
ts/components/conversation/ProfileChangeNotification.dom.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// Copyright 2020 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React, { useCallback } 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 { ProfileNameChangeType } from '../../util/getStringForProfileChange.std.js';
|
||||
import { getStringForProfileChange } from '../../util/getStringForProfileChange.std.js';
|
||||
import { Button, ButtonSize, ButtonVariant } from '../Button.dom.js';
|
||||
|
||||
export type PropsType = {
|
||||
change: ProfileNameChangeType;
|
||||
changedContact: ConversationType;
|
||||
i18n: LocalizerType;
|
||||
onOpenEditNicknameAndNoteModal: (contactId: string) => void;
|
||||
};
|
||||
|
||||
export function ProfileChangeNotification({
|
||||
change,
|
||||
changedContact,
|
||||
i18n,
|
||||
onOpenEditNicknameAndNoteModal,
|
||||
}: PropsType): JSX.Element {
|
||||
const message = getStringForProfileChange(change, changedContact, i18n);
|
||||
const { id: contactId } = changedContact;
|
||||
|
||||
const handleOpenEditNicknameAndNoteModal = useCallback(() => {
|
||||
onOpenEditNicknameAndNoteModal(contactId);
|
||||
}, [contactId, onOpenEditNicknameAndNoteModal]);
|
||||
|
||||
return (
|
||||
<SystemMessage
|
||||
icon="profile"
|
||||
contents={<Emojify text={message} />}
|
||||
button={
|
||||
(changedContact.nicknameGivenName != null ||
|
||||
changedContact.nicknameFamilyName != null) && (
|
||||
<Button
|
||||
onClick={handleOpenEditNicknameAndNoteModal}
|
||||
size={ButtonSize.Small}
|
||||
variant={ButtonVariant.SystemMessage}
|
||||
>
|
||||
{i18n('icu:update')}
|
||||
</Button>
|
||||
)
|
||||
}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user