-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.tsx
123 lines (116 loc) · 2.95 KB
/
index.tsx
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
import {
Checkbox,
Collapse,
FormControlLabel,
FormGroup,
Hidden,
IconButton,
LinearProgress,
Link,
makeStyles,
Typography,
} from '@mui/material';
import AnalyticsEvent from 'enums/AnalyticsEvent';
import { useRouter } from 'next/router';
import { ReactElement, useEffect, useState } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import actions from 'src/actions';
import RectangleButton from 'src/components/design/RectangleButton';
import styles from './index.module.scss';
import { RootState } from 'types/RootState';
import { DateTime } from 'luxon';
import FloatingDiv from 'src/components/design/FloatingDiv';
const ConfirmationDialog = (): ReactElement => {
const router = useRouter();
const dispatch = useDispatch();
const [loading, setLoading] = useState(false);
const [signatureLiability, setSignatureLiability] = useState(false);
const [willMentor, setWillMentor] = useState(false);
const confirmTime = useSelector(
(state: RootState) => state?.settings?.confirmTime,
);
const confirmTimeDt = DateTime.fromJSDate(confirmTime);
const curDt = DateTime.now();
const isLate = curDt > confirmTimeDt;
const confirm = async () => {
setLoading(true);
try {
await dispatch(
actions.user.confirm(
signatureLiability,
willMentor,
),
);
window.gtag('event', AnalyticsEvent.ATTENDANCE_CONFIRMED);
} catch (err) {
console.error(err);
}
setLoading(false);
router.push('/');
};
return (
<FloatingDiv>
<Collapse in={loading}>
<LinearProgress />
</Collapse>
<form
onSubmit={(e) => {
e.preventDefault();
confirm();
}}
>
<div className={styles.dialogContent}>
<div className={styles.headerContainer}>
<Typography variant="h4" className={styles.header}>
Confirmation
</Typography>
</div>
<div className={styles.dialogText}>
<FormGroup className={styles.formGroup}>
<FormControlLabel
sx={{ ".MuiFormControlLabel-asterisk": { display: "none" } }}
control={
<Checkbox
required
checked={signatureLiability}
onChange={(e) =>
setSignatureLiability(
e.target.checked,
)
}
/>
}
label={
<Typography>
I agree with the{' '}
<Link
target="_blank"
href="/THLiabilityWaiver.pdf"
className={styles.link}
>
TartanHacks Liability Waiver
</Link>
.*
</Typography>
}
/>
<FormControlLabel
control={
<Checkbox
checked={willMentor}
onChange={(e) =>
setWillMentor(e.target.checked)
}
/>
}
label="Are you willing to help other hackers as a mentor?"
/>
</FormGroup>
</div>
<RectangleButton type="submit">CONFIRM</RectangleButton>
</div>
</form>
</FloatingDiv>
);
};
export default ConfirmationDialog;