Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | import { Chip, List, styled } from "@mui/material";
import { useInfiniteQuery, useQueryClient } from "@tanstack/react-query";
import Alert from "components/Alert";
import Button from "components/Button";
import CenteredSpinner from "components/CenteredSpinner/CenteredSpinner";
import TextBody from "components/TextBody";
import CreateGroupChat from "features/messages/groupchats/CreateGroupChat";
import GroupChatListItem from "features/messages/groupchats/GroupChatListItem";
import { groupChatsListKey } from "features/queryKeys";
import { RpcError } from "grpc-web";
import { useTranslation } from "i18n";
import { MESSAGES } from "i18n/namespaces";
import Link from "next/link";
import { ListGroupChatsRes } from "proto/conversations_pb";
import React, { useEffect, useState } from "react";
import { routeToGroupChat } from "routes";
import { service } from "service";
import { theme } from "theme";
import useNotifications from "../../useNotifications";
const StyledWrapper = styled("div")(() => ({
padding: theme.spacing(0, 2),
}));
const StyledList = styled(List)(() => ({
width: "100%",
}));
const StyledCreateGroupChatListItem = styled(CreateGroupChat)(() => ({
marginInline: `-${theme.spacing(2)}`,
paddingInline: `${theme.spacing(2)}`,
}));
const StyledGroupChatListItem = styled(GroupChatListItem)(() => ({
marginInline: `-${theme.spacing(2)}`,
paddingInline: `${theme.spacing(2)}`,
}));
const StyledToggleContainer = styled("div")(() => ({
display: "flex",
gap: theme.spacing(1),
marginTop: theme.spacing(2),
marginBottom: theme.spacing(2),
}));
export default function GroupChatsTab() {
const [showArchived, setShowArchived] = useState(false);
const { t } = useTranslation(MESSAGES);
const { data: notifications } = useNotifications();
const unseenMessageCount = notifications?.unseenMessageCount;
const queryClient = useQueryClient();
useEffect(() => {
queryClient.invalidateQueries({
queryKey: [groupChatsListKey],
});
}, [unseenMessageCount, queryClient]);
const {
data,
isLoading,
error,
hasNextPage,
fetchNextPage,
isFetchingNextPage,
} = useInfiniteQuery<ListGroupChatsRes.AsObject, RpcError>({
queryKey: [groupChatsListKey({ onlyArchived: showArchived })],
queryFn: ({ pageParam: lastMessageId }) =>
service.conversations.listGroupChats(
lastMessageId as number | undefined,
10,
showArchived,
),
getNextPageParam: (lastPage) =>
lastPage.noMore ? undefined : lastPage.lastMessageId,
initialPageParam: undefined,
});
const loadMoreChats = () => fetchNextPage();
return (
<StyledWrapper>
<StyledToggleContainer>
<Chip
label={t("archive.archived")}
onClick={() => setShowArchived(!showArchived)}
color={showArchived ? "primary" : "default"}
variant={showArchived ? "filled" : "outlined"}
/>
</StyledToggleContainer>
{error && <Alert severity="error">{error.message}</Alert>}
{isLoading ? (
<CenteredSpinner />
) : (
data && (
<StyledList>
{!showArchived && <StyledCreateGroupChatListItem />}
{data.pages.map((groupChatsRes, pageNumber) =>
pageNumber === 0 && groupChatsRes.groupChatsList.length === 0 ? (
<TextBody key="no-chats-text">
{showArchived
? t("archive.no_archived_chats")
: t("group_chats_tab.no_chats_message")}
</TextBody>
) : (
<React.Fragment key={`group-chats-page-${pageNumber}`}>
{groupChatsRes.groupChatsList.map((groupChat) => (
<Link
key={groupChat.groupChatId}
href={routeToGroupChat(groupChat.groupChatId)}
>
<StyledGroupChatListItem
groupChat={groupChat}
isArchived={showArchived}
/>
</Link>
))}
</React.Fragment>
),
)}
{hasNextPage && (
<Button onClick={loadMoreChats} loading={isFetchingNextPage}>
{t("group_chats_tab.load_more_button_label")}
</Button>
)}
</StyledList>
)
)}
</StyledWrapper>
);
}
|