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 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 12x | import { Typography } from "@mui/material"; import Divider from "components/Divider"; import LabelAndText from "components/LabelAndText"; import Markdown from "components/Markdown"; import { booleanConversion, parkingDetailsLabels, sleepingArrangementLabels, smokingLocationLabels, } from "features/profile/constants"; import { useTranslation } from "i18n"; import { GLOBAL, PROFILE } from "i18n/namespaces"; import { User } from "proto/api_pb"; import makeStyles from "utils/makeStyles"; const useStyles = makeStyles((theme) => ({ info: { display: "flex", flexDirection: "column", justifyContent: "space-between", width: "50%", }, root: { display: "flex", justifyContent: "space-between", }, marginTop3: { marginTop: theme.spacing(3), }, })); interface HomeProps { user: User.AsObject; } export default function Home({ user }: HomeProps) { const { t } = useTranslation([GLOBAL, PROFILE]); const classes = useStyles(); return ( <> <div className={classes.root}> <div className={classes.info}> <Typography variant="h1"> {t("profile:home_info_headings.hosting_preferences")} </Typography> <LabelAndText label={t("profile:home_info_headings.last_minute")} text={booleanConversion(t, user.lastMinute?.value)} /> <LabelAndText label={t("profile:home_info_headings.wheelchair")} text={booleanConversion(t, user.wheelchairAccessible?.value)} /> <LabelAndText label={t("profile:edit_home_questions.accept_camping")} text={booleanConversion(t, user.campingOk?.value)} /> <LabelAndText label={t("profile:home_info_headings.max_guests")} text={`${user.maxGuests?.value || t("profile:unspecified_info")}`} /> <LabelAndText label={t("profile:edit_home_questions.accept_kids")} text={booleanConversion(t, user.acceptsKids?.value)} /> <LabelAndText label={t("profile:edit_home_questions.accept_pets")} text={booleanConversion(t, user.acceptsPets?.value)} /> <LabelAndText label={t("profile:edit_home_questions.accept_drinking")} text={booleanConversion(t, user.drinkingAllowed?.value)} /> <LabelAndText label={t("profile:edit_home_questions.accept_smoking")} text={`${smokingLocationLabels(t)[user.smokingAllowed]}`} /> </div> <div className={classes.info}> <Typography variant="h1"> {t("profile:home_info_headings.my_home")} </Typography> <LabelAndText label={t("profile:home_info_headings.space")} text={`${sleepingArrangementLabels(t)[user.sleepingArrangement]}`} /> <LabelAndText label={t("profile:home_info_headings.parking")} text={booleanConversion(t, user.parking?.value)} /> <LabelAndText label={t("profile:home_info_headings.parking_details")} text={parkingDetailsLabels(t)[user.parkingDetails]} /> <LabelAndText label={t("profile:home_info_headings.has_housemates")} text={`${booleanConversion(t, user.hasHousemates?.value)}${ user.housemateDetails?.value ? `, ${user.housemateDetails?.value}` : "" }`} /> <LabelAndText label={t("profile:home_info_headings.host_kids")} text={`${booleanConversion(t, user.hasKids?.value)}${ user.kidDetails?.value ? `, ${user.kidDetails?.value}` : "" }`} /> <LabelAndText label={t("profile:home_info_headings.host_pets")} text={`${booleanConversion(t, user.hasPets?.value)}${ user.petDetails?.value ? `, ${user.petDetails?.value}` : "" }`} /> <LabelAndText label={t("profile:home_info_headings.host_drinking")} text={booleanConversion(t, user.drinksAtHome?.value)} /> <LabelAndText label={t("profile:home_info_headings.host_smoking")} text={booleanConversion(t, user.smokesAtHome?.value)} /> </div> </div> <Divider className={classes.marginTop3} /> {user.aboutPlace && ( <> <Typography variant="h1"> {t("profile:home_info_headings.about_home")} </Typography> <Markdown source={user.aboutPlace} /> <Divider className={classes.marginTop3} /> </> )} {user.area && ( <> <Typography variant="h1"> {t("profile:home_info_headings.local_area")} </Typography> <Markdown source={user.area?.value} /> <Divider className={classes.marginTop3} /> </> )} {user.sleepingDetails && ( <> <Typography variant="h1"> {t("profile:home_info_headings.sleeping_arrangement")} </Typography> <Markdown source={user.sleepingDetails?.value} /> <Divider className={classes.marginTop3} /> </> )} {user.houseRules && ( <> <Typography variant="h1"> {t("profile:home_info_headings.house_rules")} </Typography> <Markdown source={user.houseRules?.value} /> <Divider className={classes.marginTop3} /> </> )} {user.otherHostInfo && ( <> <Typography variant="h1"> {t("profile:heading.additional_information_section")} </Typography> <Markdown source={user.otherHostInfo?.value} /> </> )} </> ); } |