All files / src/features/Minibuilders/Conversations/Modal/Sections ConversationsModalMainContent.tsx

81.81% Statements 18/22
59.45% Branches 22/37
42.85% Functions 3/7
80.95% Lines 17/21

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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217                                                                                      21x                                                     21x                         220x     11x 11x 11x 11x 11x   11x                             11x                                           11x 6x   6x   6x                                           6x     11x   11x                                                                                                              
import React, { Dispatch, RefObject, SetStateAction } from "react";
import {
  TableContainer,
  Table,
  Stack,
  SxProps,
  TableCell,
} from "@mui/material";
import { useAppDispatch, useAppSelector } from "@redux/hooks";
import {
  selectConversationsFilter,
  selectConversationsGeneralSearch,
  setConversationTopic,
} from "@redux/slices/conversations";
import { TConversationTopic } from "../../hooks/useListTopics";
import UnfoldListItems from "@components/animation/UnfoldListItems";
import TableRowSkeleton from "@common/Skeleton/TableRowSkeleton";
import { animated } from "react-spring";
import ConversationsTableBody from "./Table/ConversationsTableBody";
import ConversationsTableHead from "./Table/ConversationsTableHead";
import ConversationsEmptyState from "../ConversationsEmptyState";
import { SearchEmptyStateIcon } from "@assets/icons";
import { Theme } from "@mui/material";
import ConversationsModalSubHeader from "./ConversationsModalSubHeader";
import { useCustomTheme } from "@theme/hooks/useCustomTheme";
import { TableRow } from "@mui/material";
import { getGlobalTopicLabel } from "../../hooks/useConversationsModal";
import { Tabs_Types } from "../../types";
 
interface ConversationsModalMainContentProps {
  data: TConversationTopic[];
  isLoading: boolean;
  isFetching: boolean;
  parsedString: string;
  conversationsBarRef: RefObject<HTMLTableSectionElement>;
  setShowSearchInput: Dispatch<SetStateAction<boolean>>;
  handleScroll: (e: any) => void;
  merchantName?: string;
  isInternal?: boolean;
  tabs?: Tabs_Types;
  hasUnreadActivity?: boolean;
}
 
const EmptyState = ({ parsedString }: { parsedString: string }) => {
  return (
    <TableRow>
      <TableCell
        sx={{ height: "100%", borderBottom: "none" }}
        rowSpan={4}
        colSpan={4}
      >
        <Stack
          justifyContent="center"
          alignItems="center"
          sx={{ width: "100%", height: "100%" }}
        >
          <Stack>
            <ConversationsEmptyState
              icon={<SearchEmptyStateIcon />}
              message={`No results for ${parsedString}`}
            />
          </Stack>
        </Stack>
      </TableCell>
    </TableRow>
  );
};
 
const ConversationsModalMainContent: React.FC<
  ConversationsModalMainContentProps
> = ({
  data,
  isLoading,
  isFetching,
  parsedString,
  conversationsBarRef,
  setShowSearchInput,
  handleScroll,
  isInternal,
  tabs,
  merchantName,
  hasUnreadActivity,
}) => {
  const skeletonItems = Array.from({ length: 20 }, (_, i) => ({
    id: `skeleton-${i}`,
  }));
  const itemHeight = 45;
  const { queryString } = useAppSelector(selectConversationsGeneralSearch);
  const { filterString } = useAppSelector(selectConversationsFilter);
  const dispatch = useAppDispatch();
  const { isMobileView } = useCustomTheme();
 
  const filterComponent = isInternal ? (
    <ConversationsModalSubHeader
      filterString={filterString || ""}
      queryString={queryString || ""}
      isDataEmpty={!data || data.length === 0}
      isFetching={isLoading || isFetching}
    />
  ) : (
    ""
  );
  const columns: Array<{
    name: string | any;
    id: number;
    key: string;
    sx?: SxProps<Theme> | undefined;
  }> = [
    {
      name: filterComponent,
      id: 0,
      key: "",
      sx: {
        textAlign: "left",
      },
    },
    { name: "", id: 1, key: "" },
    {
      name: "Comment",
      key: "comment",
      id: 2,
    },
    {
      name: "Activity",
      key: "activity",
      id: 3,
    },
  ];
 
  const handleClick = (item: TConversationTopic) => {
    const isActivityTab = tabs === "Activity";
    const itemDisplayName =
      getGlobalTopicLabel(item?.name) || item?.displayName;
 
    dispatch(
      setConversationTopic({
        isOpen: true,
        isOpenedFromSidePanel: false,
        numberOfUnreadMessages: item.totalUnread,
        queryObject: {
          id: item.id,
          name: isActivityTab
            ? merchantName || item?.subject || itemDisplayName
            : item?.subject || itemDisplayName,
          paths: isActivityTab
            ? [
                {
                  pathID: item.id,
                  pathName: item?.displayName,
                  avatars: item?.userAvatars || [],
                },
              ]
            : [],
        },
      }),
    );
    setShowSearchInput(false);
  };
  const isEmptyState =
    parsedString && (!data || data?.length === 0) && !isFetching;
 
  return (
    <>
      {isMobileView && filterComponent}
      <TableContainer
        onScroll={handleScroll}
        sx={{
          maxHeight: "100%",
          paddingBottom: "50px",
          position: "relative",
        }}
      >
        <Table stickyHeader>
          {!isMobileView && (
            <ConversationsTableHead
              columns={columns}
              conversationsBarRef={conversationsBarRef}
            />
          )}
          {isEmptyState ? (
            <EmptyState parsedString={parsedString} />
          ) : (
            <ConversationsTableBody
              data={data}
              isInternal={isInternal}
              handleClick={handleClick}
              hasUnreadActivity={hasUnreadActivity}
              isMobileView={isMobileView}
              condition={
                isLoading || (isFetching && (!data || data?.length === 0))
              }
              renderOnCondition={() => (
                <UnfoldListItems
                  items={skeletonItems}
                  renderKey={(row) => row.id}
                  height={itemHeight}
                  Wrapper={animated.tbody}
                  ItemComponent={(row, idx, height) => (
                    <TableRowSkeleton
                      key={row.id}
                      height={height}
                      rowHeight={itemHeight}
                      columns={columns}
                    />
                  )}
                />
              )}
            />
          )}
        </Table>
      </TableContainer>
    </>
  );
};
 
export default ConversationsModalMainContent;