|
| 1 | +import { FormControl, Grid, Typography } from '@mui/material' |
| 2 | +import { Field, useField } from 'formik' |
| 3 | +import { useTranslation } from 'next-i18next' |
| 4 | + |
| 5 | +import { StyledFormTextField, StyledStepHeading } from '../helpers/campaignApplication.styled' |
| 6 | +import { CampaignEndTypes } from '../helpers/campaignApplication.types' |
| 7 | +import CampaignTypeSelect from 'components/client/campaigns/CampaignTypeSelect' |
| 8 | +import FormDatePicker from 'components/common/form/FormDatePicker' |
| 9 | + |
| 10 | +import theme from 'common/theme' |
| 11 | + |
1 | 12 | export default function CampaignApplication() {
|
2 |
| - return <div>Campaign Application</div> |
| 13 | + const { t } = useTranslation('campaign-application') |
| 14 | + const [campaignEnd] = useField('application.campaignEnd') |
| 15 | + |
| 16 | + return ( |
| 17 | + <Grid container spacing={6} justifyContent="center" direction="column" alignContent="center"> |
| 18 | + <Grid item container justifyContent="center"> |
| 19 | + <StyledStepHeading variant="h4">{t('steps.application.title')}</StyledStepHeading> |
| 20 | + </Grid> |
| 21 | + <Grid item container spacing={6} justifyContent="space-between" direction="row"> |
| 22 | + <Grid item xs={12}> |
| 23 | + <StyledFormTextField |
| 24 | + label={t('steps.application.beneficiary')} |
| 25 | + type="text" |
| 26 | + name="application.beneficiary" |
| 27 | + autoComplete="name" |
| 28 | + /> |
| 29 | + </Grid> |
| 30 | + <Grid item xs={12}> |
| 31 | + <CampaignTypeSelect /> |
| 32 | + </Grid> |
| 33 | + <Grid item xs={12}> |
| 34 | + <StyledFormTextField |
| 35 | + label={t('steps.application.funds')} |
| 36 | + type="number" |
| 37 | + name="application.funds" |
| 38 | + /> |
| 39 | + </Grid> |
| 40 | + <Grid container item> |
| 41 | + <Grid item xs={12}> |
| 42 | + <Typography sx={{ fontSize: theme.typography.pxToRem(16), paddingBottom: 2 }}> |
| 43 | + {t('steps.application.campaign-end.title')} |
| 44 | + </Typography> |
| 45 | + </Grid> |
| 46 | + <Grid container item xs={12}> |
| 47 | + <FormControl> |
| 48 | + <Grid container item spacing={2} xs={12}> |
| 49 | + <Grid item xs={12}> |
| 50 | + <label> |
| 51 | + <Field |
| 52 | + size="medium" |
| 53 | + type="radio" |
| 54 | + name="application.campaignEnd" |
| 55 | + value={CampaignEndTypes.FUNDS} |
| 56 | + /> |
| 57 | + {t('steps.application.campaign-end.options.funds')} |
| 58 | + </label> |
| 59 | + </Grid> |
| 60 | + <Grid item xs={12}> |
| 61 | + <label> |
| 62 | + <Field |
| 63 | + size="medium" |
| 64 | + type="radio" |
| 65 | + name="application.campaignEnd" |
| 66 | + value={CampaignEndTypes.ONGOING} |
| 67 | + /> |
| 68 | + {t('steps.application.campaign-end.options.ongoing')} |
| 69 | + </label> |
| 70 | + </Grid> |
| 71 | + <Grid item xs={12}> |
| 72 | + <label> |
| 73 | + <Field |
| 74 | + size="medium" |
| 75 | + type="radio" |
| 76 | + name="application.campaignEnd" |
| 77 | + value={CampaignEndTypes.DATE} |
| 78 | + /> |
| 79 | + {t('steps.application.campaign-end.options.date')} |
| 80 | + </label> |
| 81 | + </Grid> |
| 82 | + </Grid> |
| 83 | + {campaignEnd.value === CampaignEndTypes.DATE && ( |
| 84 | + <Grid item xs={6} sx={{ paddingTop: 2 }}> |
| 85 | + <FormDatePicker name="application.campaign-end" label="" /> |
| 86 | + </Grid> |
| 87 | + )} |
| 88 | + </FormControl> |
| 89 | + </Grid> |
| 90 | + </Grid> |
| 91 | + </Grid> |
| 92 | + </Grid> |
| 93 | + ) |
3 | 94 | }
|
0 commit comments