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 | 356x 135x 135x 356x 135x 135x 1x 1x 1x 1x 83x 83x 1x 1x 1x | import { IconProp } from "@fortawesome/fontawesome-svg-core";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useTranslation } from "react-i18next";
import { ReactElement } from "react";
import styled from "styled-components";
import { theme } from "client/theme";
import { getAttendeeType } from "client/utils/getAttendeeType";
import { Popularity, ProgramType } from "shared/types/models/programItem";
import { exhaustiveSwitchGuard } from "shared/utils/exhaustiveSwitchGuard";
enum PopularityLevel {
LOW = "programItemPopularity.low",
MEDIUM = "programItemPopularity.medium",
HIGH = "programItemPopularity.high",
VERY_HIGH = "programItemPopularity.veryHigh",
EXTREME = "programItemPopularity.extreme",
}
interface Props {
popularity: Popularity;
includeMsg: boolean;
programType: ProgramType;
className?: string;
}
export const PopularityInfo = ({
popularity,
includeMsg,
programType,
className,
}: Props): ReactElement => {
const { t } = useTranslation();
const { msg, color, icon } = getPopularity(popularity);
return (
<ProgramItemPopularityContainer className={className}>
{popularity !== Popularity.EXTREME && (
<ProgramItemPopularityIcon
icon={icon}
color={color}
aria-hidden="true"
/>
)}
{popularity === Popularity.EXTREME && (
<IconContainer $includeMsg={includeMsg}>
<FireIcon icon="fire" color={color} aria-hidden="true" />
<ProgramItemPopularityIcon
icon={icon}
color={color}
aria-hidden="true"
/>
</IconContainer>
)}
{includeMsg && (
<Text>
{t(msg, {
ATTENDEE_TYPE: t(
`attendeeTypePlural.${getAttendeeType(programType)}`,
),
})}
</Text>
)}
</ProgramItemPopularityContainer>
);
};
const getPopularity = (
popularity: Popularity,
): {
msg: PopularityLevel;
color: string;
icon: IconProp;
} => {
switch (popularity) {
case Popularity.NULL:
case Popularity.LOW:
return {
msg: PopularityLevel.LOW,
color: theme.popularityLow,
icon: "thermometer-0",
};
case Popularity.MEDIUM:
return {
msg: PopularityLevel.MEDIUM,
color: theme.popularityMedium,
icon: "thermometer-1",
};
case Popularity.HIGH:
return {
msg: PopularityLevel.HIGH,
color: theme.popularityHigh,
icon: "thermometer-2",
};
case Popularity.VERY_HIGH:
return {
msg: PopularityLevel.VERY_HIGH,
color: theme.popularityVeryHigh,
icon: "thermometer-3",
};
case Popularity.EXTREME:
return {
msg: PopularityLevel.EXTREME,
color: theme.popularityExtreme,
icon: "thermometer-4",
};
default:
return exhaustiveSwitchGuard(popularity);
}
};
const ProgramItemPopularityContainer = styled.div`
display: flex;
flex-direction: row;
`;
const IconContainer = styled.span<{ $includeMsg: boolean }>`
position: relative;
width: ${(props) => (props.$includeMsg ? "34px" : "auto")};
`;
const ProgramItemPopularityIcon = styled(FontAwesomeIcon)<{
color: string;
}>`
color: ${(props) => props.color};
font-size: ${(props) => props.theme.iconSizeExtra};
`;
const FireIcon = styled(FontAwesomeIcon)<{
color: string;
}>`
color: ${(props) => props.color};
font-size: 14px;
position: absolute;
left: 17px;
top: -4px;
`;
const Text = styled.span`
align-content: center;
padding-left: 6px;
`;
|