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 218 219 220 221 222 223 | import { styled, Tooltip, Typography } from "@mui/material"; import { FlexboxProps } from "@mui/system"; import Avatar from "components/Avatar"; import { OpenInNewIcon } from "components/Icons"; import StrongVerificationBadge from "components/StrongVerificationBadge"; import StyledLink from "components/StyledLink"; import { ResponseRateText } from "features/profile/view/userLabels"; import { useTranslation } from "i18n"; import { GLOBAL, PROFILE } from "i18n/namespaces"; import { TFunction } from "i18next"; import { User } from "proto/api_pb"; import LinesEllipsis from "react-lines-ellipsis"; import { routeToUser } from "routes"; import { theme } from "theme"; import { timestamp2Date } from "utils/date"; import stripMarkdown from "utils/stripMarkdown"; import { hourMillis, timeAgoI18n } from "utils/timeAgo"; import HostMeetupReferenceStatus from "./HostMeetupReferenceStatus"; import { aboutText, truncateWithEllipsis } from "./utils/constants"; interface SearchResultUserCardProps { isHighlighted?: boolean; onUserCardClick: (userId: number) => void; user: User.AsObject; } const StyledCard = styled("div", { shouldForwardProp: (prop) => prop !== "isHighlighted", })<{ isHighlighted: boolean }>(({ theme, isHighlighted }) => ({ display: "flex", flexDirection: "column", border: isHighlighted ? `2px solid ${theme.palette.secondary.main}` : "none", borderRadius: 8, boxShadow: "0 0 4px rgba(0, 0, 0, 0.25)", paddingTop: theme.spacing(1), height: "100%", width: "100%", })); const StyledTopContent = styled("div")(({ theme }) => ({ display: "flex", alignItems: "flex-start", gap: theme.spacing(2), padding: theme.spacing(1, 2, 1), flexShrink: 0, })); const StyledBottomContent = styled("div")(({ theme }) => ({ display: "flex", flexDirection: "column", flexGrow: 1, padding: theme.spacing(1, 2, 1), width: "100%", wordBreak: "break-word", })); const StyledCardHeader = styled(Typography)(({ theme }) => ({ display: "flex", alignItems: "center", justifyContent: "space-between", fontSize: "1.2rem", overflow: "hidden", textOverflow: "ellipsis", wordBreak: "break-word", })); const StyledOpenInNewIcon = styled(OpenInNewIcon)(() => ({ height: "1rem", width: "1rem", })); const FlexRow = styled("div")<{ alignItems?: FlexboxProps["alignItems"]; justifyContent?: FlexboxProps["justifyContent"]; }>(({ alignItems, justifyContent }) => ({ display: "flex", alignItems: alignItems || "flex-start", flexGrow: 1, justifyContent: justifyContent || "flex-start", })); const FlexColumn = styled("div")(({ theme }) => ({ display: "flex", flexDirection: "column", width: "100%", })); const UserDetailsRow = styled("div")(({ theme }) => ({ display: "flex", alignItems: "center", color: theme.palette.grey[600], fontSize: "1.2rem", marginTop: "auto", justifyContent: "space-between", width: "100%", })); const HaikuContainer = styled("div")(({ theme }) => ({ display: "flex", flexDirection: "column", justifyContent: "center", // vertical centering alignItems: "center", fontFamily: "Georgia, serif", fontStyle: "italic", whiteSpace: "pre-line", lineHeight: 1.8, padding: theme.spacing(2), color: theme.palette.text.primary, opacity: 0.2, textAlign: "center", height: "100%", })); const generateAboutText = (user: User.AsObject, t: TFunction) => { const missingAbout = user.aboutMe.length === 0; const hasPhoto = user.avatarUrl.length > 0; if (missingAbout && !hasPhoto) { return ( <HaikuContainer> <Typography variant="body1"> {t("profile:incomplete_profile_haiku")} </Typography> </HaikuContainer> ); } else { return stripMarkdown(aboutText(user, t)); } }; const SearchResultUserCard = ({ isHighlighted = false, onUserCardClick, user, }: SearchResultUserCardProps) => { const { t } = useTranslation([GLOBAL, PROFILE]); const handleUserCardClick = () => { onUserCardClick(user.userId); }; return ( <StyledCard isHighlighted={isHighlighted} onClick={handleUserCardClick}> <StyledTopContent> <Avatar openInNewTab user={user} /> <FlexColumn> <StyledCardHeader variant="h2"> <FlexRow alignItems="center"> <StyledLink aria-label={t("profile:open_profile_new_tab")} href={routeToUser(user.username)} target="_blank" rel="noopener noreferrer" > <LinesEllipsis text={user.name} maxLine={2} /> </StyledLink> {user.hasStrongVerification ? <StrongVerificationBadge /> : null} </FlexRow> <StyledLink aria-label={t("profile:open_profile_new_tab")} href={routeToUser(user.username)} target="_blank" rel="noopener noreferrer" > <Tooltip title={t("profile:open_profile_new_tab")}> <StyledOpenInNewIcon sx={{ "&:hover": { color: theme.palette.primary.dark, }, }} /> </Tooltip> </StyledLink> </StyledCardHeader> <FlexRow justifyContent="space-between"> <Tooltip title={`${user.age}, ${user.gender}, ${user.city}`}> <Typography variant="body2" sx={{ marginBottom: theme.spacing(1) }} > {`${user.age}, ${user.gender}, ${truncateWithEllipsis(user.city)}`} </Typography> </Tooltip> </FlexRow> </FlexColumn> </StyledTopContent> <StyledBottomContent> <HostMeetupReferenceStatus hostingStatus={user.hostingStatus} meetupStatus={user.meetupStatus} numberReferences={user.numReferences} /> {generateAboutText(user, t)} <FlexRow alignItems="flex-end" justifyContent="space-between"> <UserDetailsRow> <Typography variant="body2"> {user.lastActive ? `Active: ` + timeAgoI18n({ input: timestamp2Date(user.lastActive), t, fuzzy: { millis: hourMillis, translationKey: "relative_time.less_than_one_hour_ago", }, }) : t("last_active_false")} </Typography> <Typography variant="body2" sx={{ display: "flex" }}> {`${t("profile:response_rate_label")}: `} <ResponseRateText user={user} /> </Typography> </UserDetailsRow> </FlexRow> </StyledBottomContent> </StyledCard> ); }; export default SearchResultUserCard; |