import type { FC } from '../../../lib/teact/teact'; import React, { memo, useCallback, useMemo } from '../../../lib/teact/teact'; import { getActions, withGlobal } from '../../../global'; import type { 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, selectIsPremiumPurchaseBlocked, 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 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 PremiumIcon from '../../common/PremiumIcon'; import Switcher from '../../ui/Switcher'; import ShowTransition from '../../ui/ShowTransition'; import ConnectionStatusOverlay from '../ConnectionStatusOverlay'; import './LeftMainHeader.scss'; type OwnProps = { content: LeftColumnContent; contactsFilter: string; 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: 0 | 1 | 2; chatsById?: Record; isMessageListOpen: boolean; isConnectionStatusMinimized: ISettings['isConnectionStatusMinimized']; areChatsLoaded?: boolean; hasPasscode?: boolean; isPremiumPurchaseBlocked?: boolean; } & Pick; const LEGACY_VERSION_URL = 'https://web.telegram.org/?legacy=1'; const WEBK_VERSION_URL = 'https://web.telegram.org/k/'; const LeftMainHeader: FC = ({ content, contactsFilter, onSearchQuery, onSelectSettings, onSelectContacts, onSelectArchived, onReset, searchQuery, isLoading, shouldSkipTransition, currentUserId, globalSearchChatId, searchDate, theme, animationLevel, chatsById, connectionState, isSyncing, isMessageListOpen, isConnectionStatusMinimized, areChatsLoaded, hasPasscode, canInstall, isPremiumPurchaseBlocked, }) => { const { openChat, setGlobalSearchDate, setSettingOption, setGlobalSearchChatId, openChatByUsername, lockScreen, requestNextSettingsScreen, skipLockOnUnload, openPremiumModal, } = 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 handleSelectPremium = useCallback(() => { openPremiumModal(); }, [openPremiumModal]); 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 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 ); const searchInputPlaceholder = content === LeftColumnContent.Contacts ? lang('SearchFriends') : lang('Search'); const versionString = IS_BETA ? `${APP_VERSION} Beta (${APP_REVISION})` : (DEBUG ? APP_REVISION : APP_VERSION); return (
{lang('SavedMessages')} {lang('ArchivedChats')} {archivedUnreadChatsCount > 0 && (
{archivedUnreadChatsCount}
)}
{lang('Contacts')} {lang('Settings')} {lang('lng_menu_night_mode')} {!isPremiumPurchaseBlocked && ( } onClick={handleSelectPremium} > {lang('TelegramPremium')} {lang('New')} )} {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), isPremiumPurchaseBlocked: selectIsPremiumPurchaseBlocked(global), }; }, )(LeftMainHeader));