All files / app/features/messages/messagelist MessageList.tsx

100% Statements 20/20
100% Branches 3/3
100% Functions 7/7
100% Lines 17/17

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 701x 1x 1x 1x 1x 1x   1x 1x   1x   32x           131x             32x                         32x         32x           163x     8x           26x                      
import { styled } from "@mui/material";
import TextBody from "components/TextBody";
import ControlMessageView from "features/messages/messagelist/ControlMessageView";
import { isControlMessage } from "features/messages/utils";
import { useTranslation } from "i18n";
import { MESSAGES } from "i18n/namespaces";
import { Message } from "proto/conversations_pb";
import * as React from "react";
import { theme } from "theme";
 
import MessageView from "./MessageView";
 
const List = styled("div")(() => ({
  display: "flex",
  flexDirection: "column-reverse",
  paddingBlock: theme.spacing(2),
}));
 
const MessageWrapper = styled(MessageView)(() => ({
  marginBottom: theme.spacing(2),
  "&:nth-child(1)": {
    marginBottom: 0,
  },
}));
 
const ControlMessageWrapper = styled(ControlMessageView)(() => ({
  marginBottom: theme.spacing(2),
  "&:nth-child(1)": {
    marginBottom: 0,
  },
}));
 
export interface MessageListProps {
  messages: Array<Message.AsObject>;
  markLastSeen(messageId: number): void;
  className?: string;
}
 
export default function MessageList({
  markLastSeen,
  messages,
  className,
}: MessageListProps) {
  const { t } = useTranslation(MESSAGES);
 
  return (
    <List className={className} data-testid="message-list">
      {messages.length ? (
        messages.map((message) =>
          isControlMessage(message) ? (
            <ControlMessageWrapper
              key={message.messageId}
              onVisible={() => markLastSeen(message.messageId)}
              message={message}
            />
          ) : (
            <MessageWrapper
              key={message.messageId}
              onVisible={() => markLastSeen(message.messageId)}
              message={message}
            />
          ),
        )
      ) : (
        <TextBody>{t("chat_view.no_messages_state_text")}</TextBody>
      )}
    </List>
  );
}