All files / app/features/search SearchResultListContent.tsx

0% Statements 0/27
0% Branches 0/16
0% Functions 0/8
0% Lines 0/23

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                                                                                                                                                                                                                                                                                                                                                                                 
import { KeyboardArrowDown, KeyboardArrowUp } from "@mui/icons-material";
import {
  Alert,
  Box,
  IconButton,
  styled,
  Typography,
  useMediaQuery,
} from "@mui/material";
import { DEFAULT_DRAWER_WIDTH } from "components/ResizeableDrawer";
import { RpcError } from "grpc-web";
import { useTranslation } from "i18n";
import { SEARCH } from "i18n/namespaces";
import { SearchUser } from "proto/search_pb";
import { theme } from "theme";
 
import SearchResultUserCard from "./SeachResultUserCard";
import { useMapSearchState } from "./state/mapSearchContext";
import { MapViews } from "./utils/constants";
 
interface SearchResultListContentProps {
  error: RpcError | null;
  mapView: MapViews;
  numberOfTotal: number;
  onSetMapView: (view: MapViews) => void;
  onUserCardClick: (userId: number) => void;
  showAlert: boolean;
  showTopSpace?: boolean;
  totalItems: number | undefined;
  users: SearchUser.AsObject[] | undefined;
}
 
const ListContentWrapper = styled(Box, {
  shouldForwardProp: (prop) => prop !== "showTopSpace",
})<{ showTopSpace: boolean }>(({ showTopSpace }) => ({
  width: "100%",
  padding: theme.spacing(0.5, 2),
  height: "100%",
  ...(showTopSpace && { paddingTop: theme.spacing(10) }),
}));
 
const UserCardsWrapper = styled("div")(({ theme }) => ({
  display: "grid",
  gridTemplateColumns: `repeat(auto-fill, minmax(${DEFAULT_DRAWER_WIDTH - 50}px, 1fr))`, // Responsive columns
  gap: theme.spacing(2),
  justifyContent: "start",
  width: "100%",
  paddingBottom: theme.spacing(2),
 
  [theme.breakpoints.down("md")]: {
    display: "flex",
    flexDirection: "column",
  },
}));
 
const StyledCardWrapper = styled("div")(({ theme }) => ({
  height: `${DEFAULT_DRAWER_WIDTH - 90}px`,
  display: "flex",
 
  [theme.breakpoints.down("md")]: {
    height: `${DEFAULT_DRAWER_WIDTH - 200}px`,
  },
}));
 
const CenteredRow = styled("div")(({ theme }) => ({
  display: "flex",
  justifyContent: "center",
  alignItems: "center",
  width: "100%",
  padding: theme.spacing(1, 0),
}));
 
const SearchResultListContent = ({
  error,
  mapView,
  numberOfTotal,
  onSetMapView,
  onUserCardClick,
  showAlert,
  showTopSpace = false,
  totalItems,
  users,
}: SearchResultListContentProps) => {
  const { t } = useTranslation([SEARCH]);
  const isMobile = useMediaQuery(theme.breakpoints.down("md"));
 
  const { selectedUserId } = useMapSearchState();
 
  return (
    <ListContentWrapper showTopSpace={showTopSpace}>
      {error && (
        <Alert
          severity="error"
          sx={{
            height: "fit-content",
            width: "100%",
            marginBottom: theme.spacing(2),
          }}
        >
          {t("search:error_loading_users")}
        </Alert>
      )}
      {showAlert && (
        <Alert
          severity="info"
          sx={{
            height: "fit-content",
            width: "100%",
            marginTop: theme.spacing(1),
          }}
        >
          {t("search:choose_search_criteria")}
        </Alert>
      )}
      <CenteredRow>
        {users?.length === 0 && (
          <Typography>
            {t("search:search_result.no_user_result_message")}
          </Typography>
        )}
        {(users ?? []).length > 0 && (
          <Typography variant="body2">
            {t("search:search_result.people_found_message", {
              numberOfTotal,
              totalItems,
            })}
          </Typography>
        )}
 
        {isMobile && (
          <IconButton
            onClick={() => {
              if (mapView === MapViews.LIST_ONLY) {
                onSetMapView(MapViews.MAP_AND_LIST);
              } else {
                onSetMapView(MapViews.LIST_ONLY);
              }
            }}
            aria-label={t(
              `global:${mapView === MapViews.LIST_ONLY ? "retract" : "expand"}`,
            )}
            sx={{
              fontSize: "24px",
              backgroundColor: theme.palette.common.white,
              border: `1px solid ${theme.palette.divider}`,
              height: "25px",
              width: "25px",
              position: "absolute",
              top: theme.spacing(1),
              right: theme.spacing(2),
              zIndex: 10,
 
              "&:hover": {
                backgroundColor: theme.palette.common.white,
              },
            }}
          >
            {mapView === MapViews.LIST_ONLY ? (
              <KeyboardArrowDown />
            ) : (
              <KeyboardArrowUp />
            )}
          </IconButton>
        )}
      </CenteredRow>
      <UserCardsWrapper>
        {users?.map((user) => (
          <StyledCardWrapper
            key={user?.userId}
            id={`search-result-${user?.userId}`}
          >
            <SearchResultUserCard
              isHighlighted={selectedUserId === user.userId}
              onUserCardClick={onUserCardClick}
              user={user}
            />
          </StyledCardWrapper>
        ))}
      </UserCardsWrapper>
    </ListContentWrapper>
  );
};
 
export default SearchResultListContent;