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 | import {
Skeleton,
styled,
Tooltip,
Typography,
useMediaQuery,
} from "@mui/material";
import Avatar from "components/Avatar";
import UserSummary from "components/UserSummary";
import { useTranslation } from "i18n";
import { MESSAGES } from "i18n/namespaces";
import { LiteUser } from "proto/api_pb";
import { HostRequest } from "proto/requests_pb";
import { theme } from "theme";
import { localizeDateTimeRange, numNights, UTC_TIMEZONE } from "utils/date";
import dayjs from "utils/dayjs";
import truncateTextEllipsis from "utils/truncateTextEllipsis";
const StyledRequestedDatesWrapper = styled("div")(({ theme }) => ({
display: "flex",
"& > *": {
margin: 0,
},
}));
const StyledSmallUserSummary = styled("div")(({ theme }) => ({
display: "flex",
alignItems: "center",
borderBottom: `1px solid ${theme.palette.divider}`,
padding: theme.spacing(1, 2),
}));
const StyledLargeUserSummary = styled("div")(({ theme }) => ({
borderBottom: `1px solid ${theme.palette.divider}`,
[theme.breakpoints.down("md")]: {
borderBottom: `1px solid ${theme.palette.divider}`,
paddingBottom: theme.spacing(1),
},
[theme.breakpoints.up("sm")]: {
padding: theme.spacing(1),
},
}));
const StyledShortUserInfo = styled("div")(({ theme }) => ({
display: "flex",
flexDirection: "column",
marginLeft: theme.spacing(2),
}));
const HostRequestUserSummarySection = ({
hostRequest,
otherUser,
}: {
hostRequest: HostRequest.AsObject | undefined;
otherUser: LiteUser.AsObject | undefined;
}) => {
const {
t,
i18n: { language: locale },
} = useTranslation(MESSAGES);
const isMobile = useMediaQuery(theme.breakpoints.down("md"));
const smallUserSummarySection = (
<StyledSmallUserSummary>
{!otherUser ? (
<Skeleton variant="circular" sx={{ height: "2rem", width: "2rem" }} />
) : (
<Avatar
style={{ height: "2rem", width: "2rem" }}
user={otherUser}
isProfileLink
/>
)}
<StyledShortUserInfo>
<Typography component="div" variant="body2">
{!otherUser ? (
<Skeleton />
) : (
<Tooltip
title={`${otherUser.name}, ${otherUser.age}, ${otherUser.city}`}
>
<div>
{`${truncateTextEllipsis(otherUser.name, 25)}, ${
otherUser.age
}, ${truncateTextEllipsis(otherUser.city, 25)}`}
</div>
</Tooltip>
)}
</Typography>
{hostRequest && (
<Typography
component="p"
variant="h3"
sx={{ paddingRight: theme.spacing(1) }}
>
{localizeDateTimeRange(
// Host request are plain dates (no time),
// just make sure to parse and format them in the same timezone.
dayjs.tz(hostRequest.fromDate, UTC_TIMEZONE),
dayjs.tz(hostRequest.toDate, UTC_TIMEZONE),
{
timezone: UTC_TIMEZONE,
locale,
includeTime: false,
abbreviate: true,
},
)}
</Typography>
)}
</StyledShortUserInfo>
</StyledSmallUserSummary>
);
const largeUserSummarySection = (
<StyledLargeUserSummary>
<UserSummary user={otherUser} smallAvatar={isMobile}>
{hostRequest && (
<StyledRequestedDatesWrapper>
<Typography
component="p"
variant="h3"
sx={{ paddingRight: theme.spacing(1) }}
>
{localizeDateTimeRange(
dayjs(hostRequest.fromDate),
dayjs(hostRequest.toDate),
{
// Host request dates are plain dates (no time),
// so it they can only be interpreted in UTC.
timezone: UTC_TIMEZONE,
locale,
includeTime: false,
},
)}
</Typography>
<Typography
component="p"
variant="h3"
sx={{ fontWeight: "initial" }}
>
(
{t("host_request_view.request_duration", {
count: numNights(hostRequest.toDate, hostRequest.fromDate),
})}
)
</Typography>
</StyledRequestedDatesWrapper>
)}
</UserSummary>
</StyledLargeUserSummary>
);
return isMobile ? smallUserSummarySection : largeUserSummarySection;
};
export default HostRequestUserSummarySection;
|