From df3254688a643cd96280beb62d4f158f1f4d0dd7 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 4 Sep 2021 17:23:52 -0700 Subject: Finish password reset --- modern/src/common/useQuery.js | 5 ++ .../components/registration/ResetPasswordForm.js | 66 +++++++++++++++------- 2 files changed, 52 insertions(+), 19 deletions(-) create mode 100644 modern/src/common/useQuery.js (limited to 'modern') 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')} /> @@ -65,25 +78,40 @@ const ResetPasswordForm = () => { - - setEmail(event.target.value)} - variant="filled" - /> - + {!token + ? + setEmail(event.target.value)} + variant="filled" + /> + + : + setPassword(event.target.value)} + variant="filled" + /> + + }