TelegramPWA/src/components/left/main/LeftMainHeader.tsx
2024-08-29 15:52:14 +02:00

356 lines
12 KiB
TypeScript

import type { FC } from '../../../lib/teact/teact';
import React, {
memo, useEffect, useMemo, useRef,
} from '../../../lib/teact/teact';
import { getActions, withGlobal } from '../../../global';
import type { GlobalState } from '../../../global/types';
import type { ISettings } from '../../../types';
import { LeftColumnContent, SettingsScreens } from '../../../types';
import {
APP_NAME,
DEBUG,
IS_BETA,
} from '../../../config';
import {
selectCanSetPasscode,
selectCurrentMessageList,
selectIsCurrentUserPremium,
selectTabState,
selectTheme,
} from '../../../global/selectors';
import buildClassName from '../../../util/buildClassName';
import captureEscKeyListener from '../../../util/captureEscKeyListener';
import { formatDateToString } from '../../../util/dates/dateFormat';
import { IS_APP, IS_ELECTRON, IS_MAC_OS } from '../../../util/windowEnvironment';
import useAppLayout from '../../../hooks/useAppLayout';
import useConnectionStatus from '../../../hooks/useConnectionStatus';
import useElectronDrag from '../../../hooks/useElectronDrag';
import useFlag from '../../../hooks/useFlag';
import { useHotkeys } from '../../../hooks/useHotkeys';
import useLang from '../../../hooks/useLang';
import useLastCallback from '../../../hooks/useLastCallback';
import useOldLang from '../../../hooks/useOldLang';
import { useFullscreenStatus } from '../../../hooks/window/useFullscreen';
import useLeftHeaderButtonRtlForumTransition from './hooks/useLeftHeaderButtonRtlForumTransition';
import PickerSelectedItem from '../../common/PickerSelectedItem';
import StoryToggler from '../../story/StoryToggler';
import Button from '../../ui/Button';
import DropdownMenu from '../../ui/DropdownMenu';
import SearchInput from '../../ui/SearchInput';
import ShowTransition from '../../ui/ShowTransition';
import ConnectionStatusOverlay from '../ConnectionStatusOverlay';
import LeftSideMenuItems from './LeftSideMenuItems';
import StatusButton from './StatusButton';
import './LeftMainHeader.scss';
type OwnProps = {
shouldHideSearch?: boolean;
content: LeftColumnContent;
contactsFilter: string;
isClosingSearch?: boolean;
shouldSkipTransition?: boolean;
onSearchQuery: (query: string) => void;
onSelectSettings: NoneToVoidFunction;
onSelectContacts: NoneToVoidFunction;
onSelectArchived: NoneToVoidFunction;
onReset: NoneToVoidFunction;
};
type StateProps =
{
searchQuery?: string;
isLoading: boolean;
globalSearchChatId?: string;
searchDate?: number;
theme: ISettings['theme'];
isMessageListOpen: boolean;
isCurrentUserPremium?: boolean;
isConnectionStatusMinimized: ISettings['isConnectionStatusMinimized'];
areChatsLoaded?: boolean;
hasPasscode?: boolean;
canSetPasscode?: boolean;
}
& Pick<GlobalState, 'connectionState' | 'isSyncing' | 'isFetchingDifference'>;
const CLEAR_DATE_SEARCH_PARAM = { date: undefined };
const CLEAR_CHAT_SEARCH_PARAM = { id: undefined };
const LeftMainHeader: FC<OwnProps & StateProps> = ({
shouldHideSearch,
content,
contactsFilter,
isClosingSearch,
searchQuery,
isLoading,
isCurrentUserPremium,
shouldSkipTransition,
globalSearchChatId,
searchDate,
theme,
connectionState,
isSyncing,
isFetchingDifference,
isMessageListOpen,
isConnectionStatusMinimized,
areChatsLoaded,
hasPasscode,
canSetPasscode,
onSearchQuery,
onSelectSettings,
onSelectContacts,
onSelectArchived,
onReset,
}) => {
const {
setGlobalSearchDate,
setSettingOption,
setGlobalSearchChatId,
lockScreen,
requestNextSettingsScreen,
} = getActions();
const oldLang = useOldLang();
const lang = useLang();
const { isMobile } = useAppLayout();
const [isBotMenuOpen, markBotMenuOpen, unmarkBotMenuOpen] = useFlag();
const hasMenu = content === LeftColumnContent.ChatList;
const selectedSearchDate = useMemo(() => {
return searchDate
? formatDateToString(new Date(searchDate * 1000))
: undefined;
}, [searchDate]);
const { connectionStatus, connectionStatusText, connectionStatusPosition } = useConnectionStatus(
oldLang,
connectionState,
isSyncing || isFetchingDifference,
isMessageListOpen,
isConnectionStatusMinimized,
!areChatsLoaded,
);
const handleLockScreenHotkey = useLastCallback((e: KeyboardEvent) => {
e.preventDefault();
e.stopPropagation();
if (hasPasscode) {
lockScreen();
} else {
requestNextSettingsScreen({ screen: SettingsScreens.PasscodeDisabled });
}
});
useHotkeys(canSetPasscode ? {
'Ctrl+Shift+L': handleLockScreenHotkey,
'Alt+Shift+L': handleLockScreenHotkey,
'Meta+Shift+L': handleLockScreenHotkey,
...(IS_APP && { 'Mod+L': handleLockScreenHotkey }),
} : undefined);
const MainButton: FC<{ onTrigger: () => void; isOpen?: boolean }> = useMemo(() => {
return ({ onTrigger, isOpen }) => (
<Button
round
ripple={hasMenu && !isMobile}
size="smaller"
color="translucent"
className={isOpen ? 'active' : ''}
// eslint-disable-next-line react/jsx-no-bind
onClick={hasMenu ? onTrigger : () => onReset()}
ariaLabel={hasMenu ? oldLang('AccDescrOpenMenu2') : 'Return to chat list'}
>
<div className={buildClassName(
'animated-menu-icon',
!hasMenu && 'state-back',
shouldSkipTransition && 'no-animation',
)}
/>
</Button>
);
}, [hasMenu, isMobile, oldLang, onReset, shouldSkipTransition]);
const handleSearchFocus = useLastCallback(() => {
if (!searchQuery) {
onSearchQuery('');
}
});
const toggleConnectionStatus = useLastCallback(() => {
setSettingOption({ isConnectionStatusMinimized: !isConnectionStatusMinimized });
});
const handleLockScreen = useLastCallback(() => {
lockScreen();
});
const isSearchFocused = (
Boolean(globalSearchChatId)
|| content === LeftColumnContent.GlobalSearch
|| content === LeftColumnContent.Contacts
);
useEffect(() => (isSearchFocused ? captureEscKeyListener(() => onReset()) : undefined), [isSearchFocused, onReset]);
const searchInputPlaceholder = content === LeftColumnContent.Contacts
? lang('SearchFriends')
: lang('Search');
const versionString = IS_BETA ? `${APP_VERSION} Beta (${APP_REVISION})` : (DEBUG ? APP_REVISION : APP_VERSION);
const isFullscreen = useFullscreenStatus();
// Disable dropdown menu RTL animation for resize
const {
shouldDisableDropdownMenuTransitionRef,
handleDropdownMenuTransitionEnd,
} = useLeftHeaderButtonRtlForumTransition(shouldHideSearch);
// eslint-disable-next-line no-null/no-null
const headerRef = useRef<HTMLDivElement>(null);
useElectronDrag(headerRef);
const searchContent = useMemo(() => {
return (
<>
{selectedSearchDate && (
<PickerSelectedItem
icon="calendar"
title={selectedSearchDate}
fluid
canClose
isMinimized={Boolean(globalSearchChatId)}
className="left-search-picker-item search-date"
onClick={setGlobalSearchDate}
clickArg={CLEAR_DATE_SEARCH_PARAM}
/>
)}
{globalSearchChatId && (
<PickerSelectedItem
className="left-search-picker-item"
peerId={globalSearchChatId}
onClick={setGlobalSearchChatId}
fluid
canClose
isMinimized
clickArg={CLEAR_CHAT_SEARCH_PARAM}
/>
)}
</>
);
}, [globalSearchChatId, selectedSearchDate]);
return (
<div className="LeftMainHeader">
<div id="LeftMainHeader" className="left-header" ref={headerRef}>
{oldLang.isRtl && <div className="DropdownMenuFiller" />}
<DropdownMenu
trigger={MainButton}
footer={`${APP_NAME} ${versionString}`}
className={buildClassName(
'main-menu',
oldLang.isRtl && 'rtl',
shouldHideSearch && oldLang.isRtl && 'right-aligned',
shouldDisableDropdownMenuTransitionRef.current && oldLang.isRtl && 'disable-transition',
)}
forceOpen={isBotMenuOpen}
positionX={shouldHideSearch && oldLang.isRtl ? 'right' : 'left'}
transformOriginX={IS_ELECTRON && IS_MAC_OS && !isFullscreen ? 90 : undefined}
onTransitionEnd={oldLang.isRtl ? handleDropdownMenuTransitionEnd : undefined}
>
<LeftSideMenuItems
onSelectArchived={onSelectArchived}
onSelectContacts={onSelectContacts}
onSelectSettings={onSelectSettings}
onBotMenuOpened={markBotMenuOpen}
onBotMenuClosed={unmarkBotMenuOpen}
/>
</DropdownMenu>
<SearchInput
inputId="telegram-search-input"
resultsItemSelector=".LeftSearch .ListItem-button"
className={buildClassName(
(globalSearchChatId || searchDate) ? 'with-picker-item' : undefined,
shouldHideSearch && 'SearchInput--hidden',
)}
value={isClosingSearch ? undefined : (contactsFilter || searchQuery)}
focused={isSearchFocused}
isLoading={isLoading || connectionStatusPosition === 'minimized'}
spinnerColor={connectionStatusPosition === 'minimized' ? 'yellow' : undefined}
spinnerBackgroundColor={connectionStatusPosition === 'minimized' && theme === 'light' ? 'light' : undefined}
placeholder={searchInputPlaceholder}
autoComplete="off"
canClose={Boolean(globalSearchChatId || searchDate)}
onChange={onSearchQuery}
onReset={onReset}
onFocus={handleSearchFocus}
onSpinnerClick={connectionStatusPosition === 'minimized' ? toggleConnectionStatus : undefined}
>
{searchContent}
<StoryToggler canShow={!isSearchFocused && !selectedSearchDate && !globalSearchChatId} />
</SearchInput>
{isCurrentUserPremium && <StatusButton />}
{hasPasscode && (
<Button
round
ripple={!isMobile}
size="smaller"
color="translucent"
ariaLabel={`${oldLang('ShortcutsController.Others.LockByPasscode')} (Ctrl+Shift+L)`}
onClick={handleLockScreen}
className={buildClassName(!isCurrentUserPremium && 'extra-spacing')}
>
<i className="icon icon-lock" />
</Button>
)}
<ShowTransition
isOpen={connectionStatusPosition === 'overlay'}
isCustom
className="connection-state-wrapper"
>
<ConnectionStatusOverlay
connectionStatus={connectionStatus}
connectionStatusText={connectionStatusText!}
onClick={toggleConnectionStatus}
/>
</ShowTransition>
</div>
</div>
);
};
export default memo(withGlobal<OwnProps>(
(global): StateProps => {
const tabState = selectTabState(global);
const {
query: searchQuery, fetchingStatus, chatId, minDate,
} = tabState.globalSearch;
const {
connectionState, isSyncing, isFetchingDifference,
} = global;
const { isConnectionStatusMinimized } = global.settings.byKey;
return {
searchQuery,
isLoading: fetchingStatus ? Boolean(fetchingStatus.chats || fetchingStatus.messages) : false,
globalSearchChatId: chatId,
searchDate: minDate,
theme: selectTheme(global),
connectionState,
isSyncing,
isFetchingDifference,
isMessageListOpen: Boolean(selectCurrentMessageList(global)),
isConnectionStatusMinimized,
isCurrentUserPremium: selectIsCurrentUserPremium(global),
areChatsLoaded: Boolean(global.chats.listIds.active),
hasPasscode: Boolean(global.passcode.hasPasscode),
canSetPasscode: selectCanSetPasscode(global),
};
},
)(LeftMainHeader));