aboutsummaryrefslogtreecommitdiff
path: root/modern/src/RegisterDialog.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-05-08 13:16:57 -0700
committerAnton Tananaev <anton@traccar.org>2022-05-08 13:16:57 -0700
commit2cd374bb9fa941d7e2a6fd8aa5079893a158c98f (patch)
treef4ee48130592fed5de25dce7af4ac0cbeb017680 /modern/src/RegisterDialog.js
parent2352071211b61c10fa5bf5736baaff7809d18bf0 (diff)
downloadtrackermap-web-2cd374bb9fa941d7e2a6fd8aa5079893a158c98f.tar.gz
trackermap-web-2cd374bb9fa941d7e2a6fd8aa5079893a158c98f.tar.bz2
trackermap-web-2cd374bb9fa941d7e2a6fd8aa5079893a158c98f.zip
Reorganize remaining files
Diffstat (limited to 'modern/src/RegisterDialog.js')
-rw-r--r--modern/src/RegisterDialog.js97
1 files changed, 0 insertions, 97 deletions
diff --git a/modern/src/RegisterDialog.js b/modern/src/RegisterDialog.js
deleted file mode 100644
index 6cae602f..00000000
--- a/modern/src/RegisterDialog.js
+++ /dev/null
@@ -1,97 +0,0 @@
-import React, { useState } from 'react';
-import Button from '@material-ui/core/Button';
-import Dialog from '@material-ui/core/Dialog';
-import DialogActions from '@material-ui/core/DialogActions';
-import DialogContent from '@material-ui/core/DialogContent';
-import DialogContentText from '@material-ui/core/DialogContentText';
-import TextField from '@material-ui/core/TextField';
-import Snackbar from '@material-ui/core/Snackbar';
-import { useTranslation } from './LocalizationProvider';
-import { snackBarDurationShortMs } from './common/util/duration';
-
-const RegisterDialog = ({ showDialog, onResult }) => {
- const t = useTranslation();
-
- const [name, setName] = useState('');
- const [email, setEmail] = useState('');
- const [password, setPassword] = useState('');
- const [snackbarOpen, setSnackbarOpen] = useState(false);
-
- const submitDisabled = () => !name || !/(.+)@(.+)\.(.{2,})/.test(email) || !password;
-
- const handleRegister = async () => {
- const response = await fetch('/api/users', {
- method: 'POST',
- headers: { 'Content-Type': 'application/json' },
- body: JSON.stringify({ name, email, password }),
- });
-
- if (response.ok) {
- showDialog = false;
- setSnackbarOpen(true);
- }
- };
-
- if (snackbarOpen) {
- return (
- <Snackbar
- anchorOrigin={{ vertical: 'bottom', horizontal: 'center' }}
- open={snackbarOpen}
- autoHideDuration={snackBarDurationShortMs}
- onClose={() => { onResult(true); }}
- message={t('loginCreated')}
- />
- );
- } if (showDialog) {
- return (
- <Dialog
- open
- onClose={() => { onResult(false); }}
- >
- <DialogContent>
- <DialogContentText>{t('loginRegister')}</DialogContentText>
- <TextField
- margin="normal"
- required
- fullWidth
- label={t('sharedName')}
- name="name"
- value={name || ''}
- autoComplete="name"
- autoFocus
- onChange={(event) => setName(event.target.value)}
- />
- <TextField
- margin="normal"
- required
- fullWidth
- type="email"
- label={t('userEmail')}
- name="email"
- value={email || ''}
- autoComplete="email"
- onChange={(event) => setEmail(event.target.value)}
- />
- <TextField
- margin="normal"
- required
- fullWidth
- label={t('userPassword')}
- name="password"
- value={password || ''}
- type="password"
- autoComplete="current-password"
- onChange={(event) => setPassword(event.target.value)}
- />
- </DialogContent>
- <DialogActions>
- <Button color="primary" onClick={handleRegister} disabled={submitDisabled()}>{t('loginRegister')}</Button>
- <Button autoFocus onClick={() => onResult(false)}>{t('sharedCancel')}</Button>
- </DialogActions>
- </Dialog>
- );
- }
- return null;
-};
-
-export default RegisterDialog;