TelegramPWA/src/components/middle/HeaderActions.tsx
2023-06-12 11:47:13 +02:00

379 lines
11 KiB
TypeScript

import type { FC } from '../../lib/teact/teact';
import React, { memo, useRef, useState } from '../../lib/teact/teact';
import { requestMeasure, requestNextMutation } from '../../lib/fasterdom/fasterdom';
import { getActions, withGlobal } from '../../global';
import type { MessageListType } from '../../global/types';
import { MAIN_THREAD_ID } from '../../api/types';
import type { IAnchorPosition } from '../../types';
import { ManagementScreens } from '../../types';
import { ARE_CALLS_SUPPORTED, IS_APP } from '../../util/windowEnvironment';
import {
isChatBasicGroup, isChatChannel, isChatSuperGroup, isUserId,
} from '../../global/helpers';
import {
selectCanAnimateInterface,
selectChat,
selectChatBot,
selectChatFullInfo,
selectIsChatBotNotStarted,
selectIsChatWithSelf,
selectIsInSelectMode,
selectIsRightColumnShown,
selectIsUserBlocked,
} from '../../global/selectors';
import useLastCallback from '../../hooks/useLastCallback';
import useLang from '../../hooks/useLang';
import { useHotkeys } from '../../hooks/useHotkeys';
import Button from '../ui/Button';
import HeaderMenuContainer from './HeaderMenuContainer.async';
interface OwnProps {
chatId: string;
threadId: number;
messageListType: MessageListType;
canExpandActions: boolean;
withForumActions?: boolean;
isMobile?: boolean;
onTopicSearch?: NoneToVoidFunction;
}
interface StateProps {
noMenu?: boolean;
isChannel?: boolean;
isRightColumnShown?: boolean;
canStartBot?: boolean;
canRestartBot?: boolean;
canSubscribe?: boolean;
canSearch?: boolean;
canCall?: boolean;
canMute?: boolean;
canViewStatistics?: boolean;
canLeave?: boolean;
canEnterVoiceChat?: boolean;
canCreateVoiceChat?: boolean;
pendingJoinRequests?: number;
shouldJoinToSend?: boolean;
shouldSendJoinRequest?: boolean;
noAnimation?: boolean;
}
// Chrome breaks layout when focusing input during transition
const SEARCH_FOCUS_DELAY_MS = 320;
const HeaderActions: FC<OwnProps & StateProps> = ({
chatId,
threadId,
noMenu,
isMobile,
isChannel,
canStartBot,
canRestartBot,
canSubscribe,
canSearch,
canCall,
canMute,
canViewStatistics,
canLeave,
canEnterVoiceChat,
canCreateVoiceChat,
pendingJoinRequests,
isRightColumnShown,
withForumActions,
canExpandActions,
shouldJoinToSend,
shouldSendJoinRequest,
noAnimation,
onTopicSearch,
}) => {
const {
joinChannel,
sendBotCommand,
openLocalTextSearch,
restartBot,
requestMasterAndRequestCall,
requestNextManagementScreen,
showNotification,
openChat,
} = getActions();
// eslint-disable-next-line no-null/no-null
const menuButtonRef = useRef<HTMLButtonElement>(null);
const lang = useLang();
const [isMenuOpen, setIsMenuOpen] = useState(false);
const [menuPosition, setMenuPosition] = useState<IAnchorPosition | undefined>(undefined);
const handleHeaderMenuOpen = useLastCallback(() => {
setIsMenuOpen(true);
const rect = menuButtonRef.current!.getBoundingClientRect();
setMenuPosition({ x: rect.right, y: rect.bottom });
});
const handleHeaderMenuClose = useLastCallback(() => {
setIsMenuOpen(false);
});
const handleHeaderMenuHide = useLastCallback(() => {
setMenuPosition(undefined);
});
const handleSubscribeClick = useLastCallback(() => {
joinChannel({ chatId });
if (shouldSendJoinRequest) {
showNotification({
message: isChannel ? lang('RequestToJoinChannelSentDescription') : lang('RequestToJoinGroupSentDescription'),
});
}
});
const handleStartBot = useLastCallback(() => {
sendBotCommand({ command: '/start' });
});
const handleRestartBot = useLastCallback(() => {
restartBot({ chatId });
});
const handleJoinRequestsClick = useLastCallback(() => {
requestNextManagementScreen({ screen: ManagementScreens.JoinRequests });
});
const handleSearchClick = useLastCallback(() => {
if (withForumActions) {
onTopicSearch?.();
return;
}
openLocalTextSearch();
if (isMobile) {
// iOS requires synchronous focus on user event.
const searchInput = document.querySelector<HTMLInputElement>('#MobileSearch input')!;
searchInput.focus();
} else if (noAnimation) {
// The second RAF is necessary because Teact must update the state and render the async component
requestMeasure(() => {
requestNextMutation(setFocusInSearchInput);
});
} else {
setTimeout(setFocusInSearchInput, SEARCH_FOCUS_DELAY_MS);
}
});
const handleAsMessagesClick = useLastCallback(() => {
openChat({ id: chatId, threadId: MAIN_THREAD_ID });
});
function handleRequestCall() {
requestMasterAndRequestCall({ userId: chatId });
}
const handleHotkeySearchClick = useLastCallback((e: KeyboardEvent) => {
if (!canSearch || !IS_APP || e.shiftKey) {
return;
}
e.preventDefault();
handleSearchClick();
});
useHotkeys({
'Mod+F': handleHotkeySearchClick,
});
return (
<div className="HeaderActions">
{!isMobile && (
<>
{canExpandActions && !shouldSendJoinRequest && (canSubscribe || shouldJoinToSend) && (
<Button
size="tiny"
ripple
fluid
onClick={handleSubscribeClick}
>
{lang(isChannel ? 'ProfileJoinChannel' : 'ProfileJoinGroup')}
</Button>
)}
{canExpandActions && shouldSendJoinRequest && (
<Button
size="tiny"
ripple
fluid
onClick={handleSubscribeClick}
>
{lang('ChannelJoinRequest')}
</Button>
)}
{canExpandActions && canStartBot && (
<Button
size="tiny"
ripple
fluid
onClick={handleStartBot}
>
{lang('BotStart')}
</Button>
)}
{canExpandActions && canRestartBot && (
<Button
size="tiny"
ripple
fluid
onClick={handleRestartBot}
>
{lang('BotRestart')}
</Button>
)}
{canSearch && (
<Button
round
ripple={isRightColumnShown}
color="translucent"
size="smaller"
onClick={handleSearchClick}
ariaLabel="Search in this chat"
>
<i className="icon icon-search" />
</Button>
)}
{canCall && (
<Button
round
color="translucent"
size="smaller"
// eslint-disable-next-line react/jsx-no-bind
onClick={handleRequestCall}
ariaLabel="Call"
>
<i className="icon icon-phone" />
</Button>
)}
</>
)}
{!withForumActions && Boolean(pendingJoinRequests) && (
<Button
round
className="badge-button"
ripple={isRightColumnShown}
color="translucent"
size="smaller"
onClick={handleJoinRequestsClick}
ariaLabel={isChannel ? lang('SubscribeRequests') : lang('MemberRequests')}
>
<i className="icon icon-user" />
<div className="badge">{pendingJoinRequests}</div>
</Button>
)}
<Button
ref={menuButtonRef}
className={isMenuOpen ? 'active' : ''}
round
ripple={!isMobile}
size="smaller"
color="translucent"
disabled={noMenu}
ariaLabel="More actions"
onClick={handleHeaderMenuOpen}
>
<i className="icon icon-more" />
</Button>
{menuPosition && (
<HeaderMenuContainer
chatId={chatId}
threadId={threadId}
isOpen={isMenuOpen}
anchor={menuPosition}
withExtraActions={isMobile || !canExpandActions}
isChannel={isChannel}
canStartBot={canStartBot}
canRestartBot={canRestartBot}
canSubscribe={canSubscribe}
canSearch={canSearch}
canCall={canCall}
canMute={canMute}
canViewStatistics={canViewStatistics}
canLeave={canLeave}
canEnterVoiceChat={canEnterVoiceChat}
canCreateVoiceChat={canCreateVoiceChat}
pendingJoinRequests={pendingJoinRequests}
onJoinRequestsClick={handleJoinRequestsClick}
withForumActions={withForumActions}
onSubscribeChannel={handleSubscribeClick}
onSearchClick={handleSearchClick}
onAsMessagesClick={handleAsMessagesClick}
onClose={handleHeaderMenuClose}
onCloseAnimationEnd={handleHeaderMenuHide}
/>
)}
</div>
);
};
export default memo(withGlobal<OwnProps>(
(global, {
chatId, threadId, messageListType, isMobile,
}): StateProps => {
const chat = selectChat(global, chatId);
const isChannel = Boolean(chat && isChatChannel(chat));
if (!chat || chat.isRestricted || selectIsInSelectMode(global)) {
return {
noMenu: true,
};
}
const bot = selectChatBot(global, chatId);
const chatFullInfo = !isUserId(chatId) ? selectChatFullInfo(global, chatId) : undefined;
const isChatWithSelf = selectIsChatWithSelf(global, chatId);
const isMainThread = messageListType === 'thread' && threadId === MAIN_THREAD_ID;
const isDiscussionThread = messageListType === 'thread' && threadId !== MAIN_THREAD_ID;
const isRightColumnShown = selectIsRightColumnShown(global, isMobile);
const canRestartBot = Boolean(bot && selectIsUserBlocked(global, bot.id));
const canStartBot = !canRestartBot && Boolean(selectIsChatBotNotStarted(global, chatId));
const canSubscribe = Boolean(
(isMainThread || chat.isForum) && (isChannel || isChatSuperGroup(chat)) && chat.isNotJoined,
);
const canSearch = isMainThread || isDiscussionThread;
const canCall = ARE_CALLS_SUPPORTED && isUserId(chat.id) && !isChatWithSelf && !bot;
const canMute = isMainThread && !isChatWithSelf && !canSubscribe;
const canLeave = isMainThread && !canSubscribe;
const canEnterVoiceChat = ARE_CALLS_SUPPORTED && isMainThread && chat.isCallActive;
const canCreateVoiceChat = ARE_CALLS_SUPPORTED && isMainThread && !chat.isCallActive
&& (chat.adminRights?.manageCall || (chat.isCreator && isChatBasicGroup(chat)));
const canViewStatistics = isMainThread && chatFullInfo?.canViewStatistics;
const pendingJoinRequests = isMainThread ? chatFullInfo?.requestsPending : undefined;
const shouldJoinToSend = Boolean(chat?.isNotJoined && chat.isJoinToSend);
const shouldSendJoinRequest = Boolean(chat?.isNotJoined && chat.isJoinRequest);
const noAnimation = !selectCanAnimateInterface(global);
return {
noMenu: false,
isChannel,
isRightColumnShown,
canStartBot,
canRestartBot,
canSubscribe,
canSearch,
canCall,
canMute,
canViewStatistics,
canLeave,
canEnterVoiceChat,
canCreateVoiceChat,
pendingJoinRequests,
shouldJoinToSend,
shouldSendJoinRequest,
noAnimation,
};
},
)(HeaderActions));
function setFocusInSearchInput() {
const searchInput = document.querySelector<HTMLInputElement>('.RightHeader .SearchInput input');
searchInput?.focus();
}