Rename files

This commit is contained in:
Fedor Indutny
2025-10-16 17:33:01 -07:00
parent 3387cf6a77
commit 44076ece79
2411 changed files with 0 additions and 0 deletions

View 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>
)
}
/>
);
}