71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
TypeScript
import React from 'react';
|
|
import { useDispatch } from 'react-redux';
|
|
import { Virtuoso } from 'react-virtuoso';
|
|
|
|
import { fetchChats } from 'soapbox/actions/chats';
|
|
import PullToRefresh from 'soapbox/components/pull-to-refresh';
|
|
import { Stack } from 'soapbox/components/ui';
|
|
import PlaceholderChat from 'soapbox/features/placeholder/components/placeholder-chat';
|
|
import { useChats } from 'soapbox/queries/chats';
|
|
|
|
import Chat from './chat';
|
|
import Blankslate from './chat-pane/blankslate';
|
|
|
|
interface IChatList {
|
|
onClickChat: (chat: any) => void,
|
|
useWindowScroll?: boolean,
|
|
}
|
|
|
|
const ChatList: React.FC<IChatList> = ({ onClickChat, useWindowScroll = false }) => {
|
|
const dispatch = useDispatch();
|
|
|
|
const { chatsQuery: { data: chats, isFetching, hasNextPage, fetchNextPage } } = useChats();
|
|
|
|
const isEmpty = chats?.length === 0;
|
|
|
|
const handleLoadMore = () => {
|
|
if (hasNextPage && !isFetching) {
|
|
fetchNextPage();
|
|
}
|
|
};
|
|
|
|
const handleRefresh = () => {
|
|
return dispatch(fetchChats()) as any;
|
|
};
|
|
|
|
const renderEmpty = () => {
|
|
if (isFetching) {
|
|
return (
|
|
<Stack space={2}>
|
|
<PlaceholderChat />
|
|
<PlaceholderChat />
|
|
<PlaceholderChat />
|
|
</Stack>
|
|
);
|
|
} else {
|
|
return <Blankslate />;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<PullToRefresh onRefresh={handleRefresh}>
|
|
{isEmpty ? renderEmpty() : (
|
|
<Virtuoso
|
|
useWindowScroll={useWindowScroll}
|
|
data={chats}
|
|
endReached={handleLoadMore}
|
|
itemContent={(_index, chat) => (
|
|
<Chat chat={chat} onClick={onClickChat} />
|
|
)}
|
|
components={{
|
|
ScrollSeekPlaceholder: () => <PlaceholderChat />,
|
|
// Footer: () => hasNextPage ? <Spinner withText={false} /> : null,
|
|
EmptyPlaceholder: renderEmpty,
|
|
}}
|
|
/>
|
|
)}
|
|
</PullToRefresh>
|
|
);
|
|
};
|
|
|
|
export default ChatList;
|