TelegramPWA/src/components/common/DeleteChatModal.tsx
2023-09-04 04:10:05 +02:00

244 lines
6.5 KiB
TypeScript

import type { FC } from '../../lib/teact/teact';
import React, { useCallback, memo } from '../../lib/teact/teact';
import { getActions, withGlobal } from '../../global';
import type { ApiChat } from '../../api/types';
import { selectIsChatWithSelf, selectUser } from '../../global/selectors';
import {
isUserId,
isUserBot,
getUserFirstOrLastName,
getPrivateChatUserId,
isChatBasicGroup,
isChatSuperGroup,
isChatChannel,
getChatTitle,
} from '../../global/helpers';
import useLang from '../../hooks/useLang';
import renderText from './helpers/renderText';
import Avatar from './Avatar';
import Modal from '../ui/Modal';
import Button from '../ui/Button';
import './DeleteChatModal.scss';
export type OwnProps = {
isOpen: boolean;
chat: ApiChat;
onClose: () => void;
onCloseAnimationEnd?: () => void;
};
type StateProps = {
isChannel: boolean;
isChatWithSelf?: boolean;
isBot?: boolean;
isPrivateChat: boolean;
isBasicGroup: boolean;
isSuperGroup: boolean;
currentUserId: string | undefined;
canDeleteForAll?: boolean;
contactName?: string;
};
const DeleteChatModal: FC<OwnProps & StateProps> = ({
isOpen,
chat,
isChannel,
isPrivateChat,
isChatWithSelf,
isBot,
isBasicGroup,
isSuperGroup,
currentUserId,
canDeleteForAll,
contactName,
onClose,
onCloseAnimationEnd,
}) => {
const {
leaveChannel,
deleteHistory,
deleteChannel,
deleteChatUser,
blockUser,
} = getActions();
const lang = useLang();
const chatTitle = getChatTitle(lang, chat);
const handleDeleteForAll = useCallback(() => {
deleteHistory({ chatId: chat.id, shouldDeleteForAll: true });
onClose();
}, [deleteHistory, chat.id, onClose]);
const handleDeleteAndStop = useCallback(() => {
deleteHistory({ chatId: chat.id, shouldDeleteForAll: true });
blockUser({ userId: chat.id });
onClose();
}, [chat.id, onClose]);
const handleDeleteChat = useCallback(() => {
if (isPrivateChat) {
deleteHistory({ chatId: chat.id, shouldDeleteForAll: false });
} else if (isBasicGroup) {
deleteChatUser({ chatId: chat.id, userId: currentUserId! });
deleteHistory({ chatId: chat.id, shouldDeleteForAll: false });
} else if ((isChannel || isSuperGroup) && !chat.isCreator) {
leaveChannel({ chatId: chat.id });
} else if ((isChannel || isSuperGroup) && chat.isCreator) {
deleteChannel({ chatId: chat.id });
}
onClose();
}, [
isPrivateChat,
isBasicGroup,
isChannel,
isSuperGroup,
currentUserId,
chat.isCreator,
chat.id,
onClose,
deleteHistory,
deleteChatUser,
leaveChannel,
deleteChannel,
]);
const handleLeaveChat = useCallback(() => {
if (isChannel || isSuperGroup) {
leaveChannel({ chatId: chat.id });
onClose();
} else {
handleDeleteChat();
}
}, [chat.id, handleDeleteChat, isChannel, isSuperGroup, leaveChannel, onClose]);
function renderHeader() {
return (
<div className="modal-header" dir={lang.isRtl ? 'rtl' : undefined}>
<Avatar
size="tiny"
peer={chat}
isSavedMessages={isChatWithSelf}
/>
<h3 className="modal-title">{lang(renderTitle())}</h3>
</div>
);
}
function renderTitle() {
if (isChannel && !chat.isCreator) {
return 'LeaveChannel';
}
if (isChannel && chat.isCreator) {
return 'ChannelDelete';
}
if (isBasicGroup || isSuperGroup) {
return 'Group.LeaveGroup';
}
return 'DeleteChatUser';
}
function renderContent() {
if (isChannel && chat.isCreator) {
return (
<p>
{renderText(lang('ChatList.DeleteAndLeaveGroupConfirmation', chatTitle), ['simple_markdown', 'emoji'])}
</p>
);
}
if ((isChannel && !chat.isCreator) || isBasicGroup || isSuperGroup) {
return <p>{renderText(lang('ChannelLeaveAlertWithName', chatTitle), ['simple_markdown', 'emoji'])}</p>;
}
return <p>{renderText(lang('ChatList.DeleteChatConfirmation', contactName), ['simple_markdown', 'emoji'])}</p>;
}
function renderActionText() {
if (isChannel && !chat.isCreator) {
return 'LeaveChannel';
}
if (isChannel && chat.isCreator) {
return 'Chat.Input.Delete';
}
if (isBasicGroup || isSuperGroup) {
return 'Group.LeaveGroup';
}
return canDeleteForAll ? 'ChatList.DeleteForCurrentUser' : 'Delete';
}
return (
<Modal
isOpen={isOpen}
className="DeleteChatModal"
header={renderHeader()}
onClose={onClose}
onCloseAnimationEnd={onCloseAnimationEnd}
>
{renderContent()}
<div className="dialog-buttons-column">
{isBot && (
<Button color="danger" className="confirm-dialog-button" isText onClick={handleDeleteAndStop}>
{lang('DeleteAndStop')}
</Button>
)}
{canDeleteForAll && (
<Button color="danger" className="confirm-dialog-button" isText onClick={handleDeleteForAll}>
{contactName ? renderText(lang('ChatList.DeleteForEveryone', contactName)) : lang('DeleteForAll')}
</Button>
)}
{!isPrivateChat && chat.isCreator && (
<Button color="danger" className="confirm-dialog-button" isText onClick={handleDeleteChat}>
{lang('DeleteForAll')}
</Button>
)}
<Button
color="danger"
className="confirm-dialog-button"
isText
onClick={isPrivateChat ? handleDeleteChat : handleLeaveChat}
>
{lang(renderActionText())}
</Button>
<Button className="confirm-dialog-button" isText onClick={onClose}>{lang('Cancel')}</Button>
</div>
</Modal>
);
};
export default memo(withGlobal<OwnProps>(
(global, { chat }): StateProps => {
const isPrivateChat = isUserId(chat.id);
const isChatWithSelf = selectIsChatWithSelf(global, chat.id);
const user = isPrivateChat && selectUser(global, getPrivateChatUserId(chat)!);
const isBot = user && isUserBot(user) && !chat.isSupport;
const canDeleteForAll = (isPrivateChat && !isChatWithSelf && !isBot);
const contactName = isPrivateChat
? getUserFirstOrLastName(selectUser(global, getPrivateChatUserId(chat)!))
: undefined;
return {
isPrivateChat,
isChatWithSelf,
isBot,
isChannel: isChatChannel(chat),
isBasicGroup: isChatBasicGroup(chat),
isSuperGroup: isChatSuperGroup(chat),
currentUserId: global.currentUserId,
canDeleteForAll,
contactName,
};
},
)(DeleteChatModal));