import type { FC } from '../../../lib/teact/teact'; import React, { memo, useCallback, useEffect, useMemo, } from '../../../lib/teact/teact'; import { getActions, withGlobal } from '../../../global'; import type { AnimationLevel, ISettings } from '../../../types'; import { LeftColumnContent, SettingsScreens } from '../../../types'; import type { ApiChat } from '../../../api/types'; import type { GlobalState } from '../../../global/types'; import { ANIMATION_LEVEL_MAX, APP_NAME, APP_VERSION, BETA_CHANGELOG_URL, DEBUG, FEEDBACK_URL, IS_BETA, IS_TEST, PRODUCTION_HOSTNAME, } from '../../../config'; import { IS_PWA, IS_SINGLE_COLUMN_LAYOUT } from '../../../util/environment'; import buildClassName from '../../../util/buildClassName'; import { formatDateToString } from '../../../util/dateFormat'; import switchTheme from '../../../util/switchTheme'; import { setPermanentWebVersion } from '../../../util/permanentWebVersion'; import { clearWebsync } from '../../../util/websync'; import { selectCurrentMessageList, selectTheme } from '../../../global/selectors'; import { isChatArchived } from '../../../global/helpers'; import useLang from '../../../hooks/useLang'; import useConnectionStatus from '../../../hooks/useConnectionStatus'; import { useHotkeys } from '../../../hooks/useHotkeys'; import { getPromptInstall } from '../../../util/installPrompt'; import captureEscKeyListener from '../../../util/captureEscKeyListener'; import useLeftHeaderButtonRtlForumTransition from './hooks/useLeftHeaderButtonRtlForumTransition'; import DropdownMenu from '../../ui/DropdownMenu'; import MenuItem from '../../ui/MenuItem'; import Button from '../../ui/Button'; import SearchInput from '../../ui/SearchInput'; import PickerSelectedItem from '../../common/PickerSelectedItem'; import Switcher from '../../ui/Switcher'; import ShowTransition from '../../ui/ShowTransition'; import ConnectionStatusOverlay from '../ConnectionStatusOverlay'; import './LeftMainHeader.scss'; type OwnProps = { shouldHideSearch?: boolean; content: LeftColumnContent; contactsFilter: string; isClosingSearch?: boolean; shouldSkipTransition?: boolean; onSearchQuery: (query: string) => void; onSelectSettings: () => void; onSelectContacts: () => void; onSelectArchived: () => void; onReset: () => void; }; type StateProps = { searchQuery?: string; isLoading: boolean; currentUserId?: string; globalSearchChatId?: string; searchDate?: number; theme: ISettings['theme']; animationLevel: AnimationLevel; chatsById?: Record; isMessageListOpen: boolean; isConnectionStatusMinimized: ISettings['isConnectionStatusMinimized']; areChatsLoaded?: boolean; hasPasscode?: boolean; } & Pick; const ANIMATION_LEVEL_OPTIONS = [0, 1, 2]; const LEGACY_VERSION_URL = 'https://web.telegram.org/?legacy=1'; const WEBK_VERSION_URL = 'https://web.telegram.org/k/'; const LeftMainHeader: FC = ({ shouldHideSearch, content, contactsFilter, onSearchQuery, isClosingSearch, onSelectSettings, onSelectContacts, onSelectArchived, onReset, searchQuery, isLoading, shouldSkipTransition, currentUserId, globalSearchChatId, searchDate, theme, animationLevel, chatsById, connectionState, isSyncing, isMessageListOpen, isConnectionStatusMinimized, areChatsLoaded, hasPasscode, canInstall, }) => { const { openChat, setGlobalSearchDate, setSettingOption, setGlobalSearchChatId, openChatByUsername, lockScreen, requestNextSettingsScreen, skipLockOnUnload, } = getActions(); const lang = useLang(); const hasMenu = content === LeftColumnContent.ChatList; const clearedDateSearchParam = { date: undefined }; const clearedChatSearchParam = { id: undefined }; const selectedSearchDate = useMemo(() => { return searchDate ? formatDateToString(new Date(searchDate * 1000)) : undefined; }, [searchDate]); const archivedUnreadChatsCount = useMemo(() => { if (!hasMenu || !chatsById) { return 0; } return Object.values(chatsById).reduce((total, chat) => { if (!isChatArchived(chat)) { return total; } return chat.unreadCount ? total + 1 : total; }, 0); }, [hasMenu, chatsById]); const { connectionStatus, connectionStatusText, connectionStatusPosition } = useConnectionStatus( lang, connectionState, isSyncing, isMessageListOpen, isConnectionStatusMinimized, !areChatsLoaded, ); const handleLockScreenHotkey = useCallback((e: KeyboardEvent) => { e.preventDefault(); e.stopPropagation(); if (hasPasscode) { lockScreen(); } else { requestNextSettingsScreen(SettingsScreens.PasscodeDisabled); } }, [hasPasscode, lockScreen, requestNextSettingsScreen]); useHotkeys({ 'Ctrl+Shift+L': handleLockScreenHotkey, 'Alt+Shift+L': handleLockScreenHotkey, 'Meta+Shift+L': handleLockScreenHotkey, ...(IS_PWA && { 'Mod+L': handleLockScreenHotkey }), }); const withOtherVersions = window.location.hostname === PRODUCTION_HOSTNAME || IS_TEST; const MainButton: FC<{ onTrigger: () => void; isOpen?: boolean }> = useMemo(() => { return ({ onTrigger, isOpen }) => ( ); }, [hasMenu, lang, onReset, shouldSkipTransition]); const handleSearchFocus = useCallback(() => { if (!searchQuery) { onSearchQuery(''); } }, [searchQuery, onSearchQuery]); const toggleConnectionStatus = useCallback(() => { setSettingOption({ isConnectionStatusMinimized: !isConnectionStatusMinimized }); }, [isConnectionStatusMinimized, setSettingOption]); const handleSelectSaved = useCallback(() => { openChat({ id: currentUserId, shouldReplaceHistory: true }); }, [currentUserId, openChat]); const handleDarkModeToggle = useCallback((e: React.SyntheticEvent) => { e.stopPropagation(); const newTheme = theme === 'light' ? 'dark' : 'light'; setSettingOption({ theme: newTheme }); setSettingOption({ shouldUseSystemTheme: false }); switchTheme(newTheme, animationLevel === ANIMATION_LEVEL_MAX); }, [animationLevel, setSettingOption, theme]); const handleAnimationLevelChange = useCallback((e: React.SyntheticEvent) => { e.stopPropagation(); const newLevel = animationLevel === 0 ? 2 : 0; ANIMATION_LEVEL_OPTIONS.forEach((_, i) => { document.body.classList.toggle(`animation-level-${i}`, newLevel === i); }); setSettingOption({ animationLevel: newLevel }); }, [animationLevel, setSettingOption]); const handleChangelogClick = useCallback(() => { window.open(BETA_CHANGELOG_URL, '_blank', 'noopener'); }, []); const handleSwitchToWebK = useCallback(() => { setPermanentWebVersion('K'); clearWebsync(); skipLockOnUnload(); }, [skipLockOnUnload]); const handleSwitchToLegacy = useCallback(() => { skipLockOnUnload(); }, [skipLockOnUnload]); const handleOpenTipsChat = useCallback(() => { openChatByUsername({ username: lang('Settings.TipsUsername') }); }, [lang, openChatByUsername]); const handleLockScreen = useCallback(() => { lockScreen(); }, [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); // Disable dropdown menu RTL animation for resize const { shouldDisableDropdownMenuTransitionRef, handleDropdownMenuTransitionEnd, } = useLeftHeaderButtonRtlForumTransition(shouldHideSearch); return (
{lang.isRtl &&
} {lang('SavedMessages')} {lang('ArchivedChats')} {archivedUnreadChatsCount > 0 && (
{archivedUnreadChatsCount}
)}
{lang('Contacts')} {lang('Settings')} {lang('lng_menu_night_mode')} {lang('Appearance.Animations').toLowerCase()} 0} /> {lang('TelegramFeatures')} Report Bug {IS_BETA && ( Beta Changelog )} {withOtherVersions && ( <> Switch to K Version Switch to Old Version )} {canInstall && ( Install App )}
{selectedSearchDate && ( )} {globalSearchChatId && ( )} {hasPasscode && ( )}
); }; export default memo(withGlobal( (global): StateProps => { const { query: searchQuery, fetchingStatus, chatId, date, } = global.globalSearch; const { currentUserId, connectionState, isSyncing } = global; const { byId: chatsById } = global.chats; const { isConnectionStatusMinimized, animationLevel } = global.settings.byKey; return { searchQuery, isLoading: fetchingStatus ? Boolean(fetchingStatus.chats || fetchingStatus.messages) : false, currentUserId, chatsById, globalSearchChatId: chatId, searchDate: date, theme: selectTheme(global), animationLevel, connectionState, isSyncing, isMessageListOpen: Boolean(selectCurrentMessageList(global)), isConnectionStatusMinimized, areChatsLoaded: Boolean(global.chats.listIds.active), hasPasscode: Boolean(global.passcode.hasPasscode), canInstall: Boolean(global.canInstall), }; }, )(LeftMainHeader));