import type { FC } from '../../lib/teact/teact'; import React, { memo, useCallback } from '../../lib/teact/teact'; import { getActions, withGlobal } from '../../global'; import useLang from '../../hooks/useLang'; import CalendarModal from '../common/CalendarModal'; export type OwnProps = { isOpen: boolean; }; type StateProps = { selectedAt?: number; }; const HistoryCalendar: FC = ({ isOpen, selectedAt, }) => { const { searchMessagesByDate, closeHistoryCalendar } = getActions(); const handleJumpToDate = useCallback((date: Date) => { searchMessagesByDate({ timestamp: date.valueOf() / 1000 }); closeHistoryCalendar(); }, [closeHistoryCalendar, searchMessagesByDate]); const lang = useLang(); return ( ); }; export default memo(withGlobal( (global): StateProps => { return { selectedAt: global.historyCalendarSelectedAt }; }, )(HistoryCalendar));