198 lines
6.2 KiB
TypeScript
198 lines
6.2 KiB
TypeScript
import React, {
|
|
memo, useEffect, useRef, useCallback, useMemo,
|
|
} from '../../../lib/teact/teact';
|
|
import { getActions, getGlobal } from '../../../global';
|
|
|
|
import type { FC } from '../../../lib/teact/teact';
|
|
import type { SettingsScreens } from '../../../types';
|
|
import type { FolderEditDispatch } from '../../../hooks/reducers/useFoldersReducer';
|
|
|
|
import {
|
|
ALL_FOLDER_ID,
|
|
ARCHIVED_FOLDER_ID, CHAT_HEIGHT_FORUM_PX,
|
|
CHAT_HEIGHT_PX,
|
|
CHAT_LIST_SLICE,
|
|
} from '../../../config';
|
|
import { IS_MAC_OS, IS_PWA } from '../../../util/environment';
|
|
import { getPinnedChatsCount, getOrderKey } from '../../../util/folderManager';
|
|
import { selectChat } from '../../../global/selectors';
|
|
|
|
import useInfiniteScroll from '../../../hooks/useInfiniteScroll';
|
|
import { useFolderManagerForOrderedIds } from '../../../hooks/useFolderManager';
|
|
import { useIntersectionObserver } from '../../../hooks/useIntersectionObserver';
|
|
import { useHotkeys } from '../../../hooks/useHotkeys';
|
|
import useDebouncedCallback from '../../../hooks/useDebouncedCallback';
|
|
import useChatOrderDiff from './hooks/useChatOrderDiff';
|
|
|
|
import InfiniteScroll from '../../ui/InfiniteScroll';
|
|
import Loading from '../../ui/Loading';
|
|
import Chat from './Chat';
|
|
import EmptyFolder from './EmptyFolder';
|
|
|
|
type OwnProps = {
|
|
folderType: 'all' | 'archived' | 'folder';
|
|
folderId?: number;
|
|
isActive: boolean;
|
|
lastSyncTime?: number;
|
|
foldersDispatch?: FolderEditDispatch;
|
|
onScreenSelect?: (screen: SettingsScreens) => void;
|
|
};
|
|
|
|
const INTERSECTION_THROTTLE = 200;
|
|
const DRAG_ENTER_DEBOUNCE = 500;
|
|
|
|
const ChatList: FC<OwnProps> = ({
|
|
folderType,
|
|
folderId,
|
|
isActive,
|
|
foldersDispatch,
|
|
onScreenSelect,
|
|
}) => {
|
|
const { openChat, openNextChat } = getActions();
|
|
// eslint-disable-next-line no-null/no-null
|
|
const containerRef = useRef<HTMLDivElement>(null);
|
|
const shouldIgnoreDragRef = useRef(false);
|
|
|
|
const resolvedFolderId = (
|
|
folderType === 'all' ? ALL_FOLDER_ID : folderType === 'archived' ? ARCHIVED_FOLDER_ID : folderId!
|
|
);
|
|
|
|
const orderedIds = useFolderManagerForOrderedIds(resolvedFolderId);
|
|
|
|
const { orderDiffById, getAnimationType } = useChatOrderDiff(orderedIds);
|
|
|
|
const [viewportIds, getMore] = useInfiniteScroll(undefined, orderedIds, undefined, CHAT_LIST_SLICE);
|
|
|
|
// Support <Alt>+<Up/Down> to navigate between chats
|
|
useHotkeys(isActive && orderedIds?.length ? {
|
|
'Alt+ArrowUp': (e: KeyboardEvent) => {
|
|
e.preventDefault();
|
|
openNextChat({ targetIndexDelta: -1, orderedIds });
|
|
},
|
|
'Alt+ArrowDown': (e: KeyboardEvent) => {
|
|
e.preventDefault();
|
|
openNextChat({ targetIndexDelta: 1, orderedIds });
|
|
},
|
|
} : undefined);
|
|
|
|
// Support <Cmd>+<Digit> to navigate between chats
|
|
useEffect(() => {
|
|
if (!isActive || !orderedIds || !IS_PWA) {
|
|
return undefined;
|
|
}
|
|
|
|
function handleKeyDown(e: KeyboardEvent) {
|
|
if (((IS_MAC_OS && e.metaKey) || (!IS_MAC_OS && e.ctrlKey)) && e.code.startsWith('Digit')) {
|
|
const [, digit] = e.code.match(/Digit(\d)/) || [];
|
|
if (!digit) return;
|
|
|
|
const position = Number(digit) - 1;
|
|
if (position > orderedIds!.length - 1 || position < 0) return;
|
|
|
|
openChat({ id: orderedIds![position], shouldReplaceHistory: true });
|
|
}
|
|
}
|
|
|
|
document.addEventListener('keydown', handleKeyDown);
|
|
|
|
return () => {
|
|
document.removeEventListener('keydown', handleKeyDown);
|
|
};
|
|
}, [isActive, openChat, openNextChat, orderedIds]);
|
|
|
|
const { observe } = useIntersectionObserver({
|
|
rootRef: containerRef,
|
|
throttleMs: INTERSECTION_THROTTLE,
|
|
});
|
|
|
|
const handleDragEnter = useDebouncedCallback((chatId: string) => {
|
|
if (shouldIgnoreDragRef.current) {
|
|
shouldIgnoreDragRef.current = false;
|
|
return;
|
|
}
|
|
openChat({ id: chatId, shouldReplaceHistory: true });
|
|
}, [], DRAG_ENTER_DEBOUNCE, true);
|
|
|
|
const handleDragLeave = useCallback((e: React.DragEvent<HTMLDivElement>) => {
|
|
const rect = e.currentTarget.getBoundingClientRect();
|
|
const x = e.clientX - rect.left;
|
|
const y = e.clientY - rect.top;
|
|
if (x < rect.width || y < rect.y) return;
|
|
shouldIgnoreDragRef.current = true;
|
|
}, []);
|
|
|
|
const viewportOffsetPx = useMemo(() => {
|
|
if (!viewportIds?.length) return 0;
|
|
const global = getGlobal();
|
|
const viewportOffset = orderedIds!.indexOf(viewportIds![0]);
|
|
return orderedIds!.reduce((acc, id, i) => {
|
|
if (i >= viewportOffset) {
|
|
return acc;
|
|
}
|
|
return acc + (selectChat(global, id)!.isForum ? CHAT_HEIGHT_FORUM_PX : CHAT_HEIGHT_PX);
|
|
}, 0);
|
|
}, [orderedIds, viewportIds]);
|
|
|
|
function renderChats() {
|
|
const viewportOffset = orderedIds!.indexOf(viewportIds![0]);
|
|
const global = getGlobal();
|
|
|
|
const pinnedCount = getPinnedChatsCount(resolvedFolderId) || 0;
|
|
|
|
let currentChatListHeight = viewportOffsetPx;
|
|
|
|
return viewportIds!.map((id, i) => {
|
|
const isPinned = viewportOffset + i < pinnedCount;
|
|
const chatTop = currentChatListHeight;
|
|
const chatTopSmaller = (viewportOffset + i) * CHAT_HEIGHT_PX;
|
|
currentChatListHeight += (selectChat(global, id)!.isForum ? CHAT_HEIGHT_FORUM_PX : CHAT_HEIGHT_PX);
|
|
|
|
return (
|
|
<Chat
|
|
key={id}
|
|
teactOrderKey={isPinned ? i : getOrderKey(id)}
|
|
chatId={id}
|
|
isPinned={isPinned}
|
|
folderId={folderId}
|
|
animationType={getAnimationType(id)}
|
|
orderDiff={orderDiffById[id]}
|
|
offsetTop={chatTop}
|
|
offsetTopInSmallerMode={chatTop - chatTopSmaller}
|
|
observeIntersection={observe}
|
|
onDragEnter={handleDragEnter}
|
|
/>
|
|
);
|
|
});
|
|
}
|
|
|
|
return (
|
|
<InfiniteScroll
|
|
className="chat-list custom-scroll"
|
|
ref={containerRef}
|
|
items={viewportIds}
|
|
preloadBackwards={CHAT_LIST_SLICE}
|
|
withAbsolutePositioning
|
|
maxHeight={(orderedIds?.length || 0) * CHAT_HEIGHT_PX}
|
|
onLoadMore={getMore}
|
|
onDragLeave={handleDragLeave}
|
|
>
|
|
{viewportIds?.length ? (
|
|
renderChats()
|
|
) : viewportIds && !viewportIds.length ? (
|
|
(
|
|
<EmptyFolder
|
|
folderId={folderId}
|
|
folderType={folderType}
|
|
foldersDispatch={foldersDispatch}
|
|
onScreenSelect={onScreenSelect}
|
|
/>
|
|
)
|
|
) : (
|
|
<Loading key="loading" />
|
|
)}
|
|
</InfiniteScroll>
|
|
);
|
|
};
|
|
|
|
export default memo(ChatList);
|