diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2021-09-04 17:23:52 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2021-09-04 17:23:52 -0700 |
commit | df3254688a643cd96280beb62d4f158f1f4d0dd7 (patch) | |
tree | 29d95bbcbdf67cd5428b4f20344aa11d8b5fd5c7 /modern | |
parent | e1d618e524680ed5702d6d43bf808b4c665fa157 (diff) | |
download | trackermap-web-df3254688a643cd96280beb62d4f158f1f4d0dd7.tar.gz trackermap-web-df3254688a643cd96280beb62d4f158f1f4d0dd7.tar.bz2 trackermap-web-df3254688a643cd96280beb62d4f158f1f4d0dd7.zip |
Finish password reset
Diffstat (limited to 'modern')
-rw-r--r-- | modern/src/common/useQuery.js | 5 | ||||
-rw-r--r-- | modern/src/components/registration/ResetPasswordForm.js | 66 |
2 files changed, 52 insertions, 19 deletions
diff --git a/modern/src/common/useQuery.js b/modern/src/common/useQuery.js new file mode 100644 index 00000000..6c8ac657 --- /dev/null +++ b/modern/src/common/useQuery.js @@ -0,0 +1,5 @@ +import { useLocation } from "react-router-dom"; + +export default () => { + return new URLSearchParams(useLocation().search); +} diff --git a/modern/src/components/registration/ResetPasswordForm.js b/modern/src/components/registration/ResetPasswordForm.js index c581b5e5..dfe2b5ef 100644 --- a/modern/src/components/registration/ResetPasswordForm.js +++ b/modern/src/components/registration/ResetPasswordForm.js @@ -6,6 +6,7 @@ import { useHistory } from 'react-router-dom'; import ArrowBackIcon from '@material-ui/icons/ArrowBack'; import StartPage from '../../StartPage'; import { useTranslation } from '../../LocalizationProvider'; +import useQuery from '../../common/useQuery'; const useStyles = makeStyles((theme) => ({ title: { @@ -26,16 +27,28 @@ const ResetPasswordForm = () => { const classes = useStyles(); const history = useHistory(); const t = useTranslation(); + const query = useQuery(); + + const token = query.get('passwordReset'); const [email, setEmail] = useState(''); + const [password, setPassword] = useState(''); const [snackbarOpen, setSnackbarOpen] = useState(false); const handleSubmit = async (event) => { event.preventDefault(); - const response = await fetch('/api/password/reset', { - method: 'POST', - body: new URLSearchParams(`email=${encodeURIComponent(email)}`), - }); + let response; + if (!token) { + response = await fetch('/api/password/reset', { + method: 'POST', + body: new URLSearchParams(`email=${encodeURIComponent(email)}`), + }); + } else { + response = await fetch('/api/password/update', { + method: 'POST', + body: new URLSearchParams(`token=${encodeURIComponent(token)}&password=${encodeURIComponent(password)}`), + }); + } if (response.ok) { setSnackbarOpen(true); } @@ -48,7 +61,7 @@ const ResetPasswordForm = () => { open={snackbarOpen} onClose={() => history.push('/login')} autoHideDuration={6000} - message={t('loginResetSuccess')} + message={!token ? t('loginResetSuccess') : t('loginUpdateSuccess')} /> <Grid container direction="column" spacing={2}> <Grid container item> @@ -65,25 +78,40 @@ const ResetPasswordForm = () => { </Typography> </Grid> </Grid> - <Grid item> - <TextField - required - fullWidth - type="email" - label={t('userEmail')} - name="email" - value={email} - autoComplete="email" - onChange={(event) => setEmail(event.target.value)} - variant="filled" - /> - </Grid> + {!token + ? <Grid item> + <TextField + required + fullWidth + type="email" + label={t('userEmail')} + name="email" + value={email} + autoComplete="email" + onChange={(event) => setEmail(event.target.value)} + variant="filled" + /> + </Grid> + : <Grid item> + <TextField + required + fullWidth + label={t('userPassword')} + name="password" + value={password} + type="password" + autoComplete="current-password" + onChange={(event) => setPassword(event.target.value)} + variant="filled" + /> + </Grid> + } <Grid item> <Button variant="contained" color="secondary" onClick={handleSubmit} - disabled={!/(.+)@(.+)\.(.{2,})/.test(email)} + disabled={!/(.+)@(.+)\.(.{2,})/.test(email) && !password} fullWidth > {t('loginReset')} |