aboutsummaryrefslogtreecommitdiff
path: root/modern/src/RegisterDialog.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2021-02-01 10:50:48 -0800
committerGitHub <noreply@github.com>2021-02-01 10:50:48 -0800
commit05c3cd4e7bb395970b395c719c1e6a671574c75b (patch)
tree313e1bc5274d87c1c5f89e7be2db83da3aee1294 /modern/src/RegisterDialog.js
parent467040deda2fb121ddb194d212565b0364db1a8d (diff)
parent599104d3e8bf3545d00fa63ad5061e0bb9ad47b7 (diff)
downloadetbsa-traccar-web-05c3cd4e7bb395970b395c719c1e6a671574c75b.tar.gz
etbsa-traccar-web-05c3cd4e7bb395970b395c719c1e6a671574c75b.tar.bz2
etbsa-traccar-web-05c3cd4e7bb395970b395c719c1e6a671574c75b.zip
Merge pull request #813 from mikems66/registration
User self registration
Diffstat (limited to 'modern/src/RegisterDialog.js')
-rw-r--r--modern/src/RegisterDialog.js104
1 files changed, 104 insertions, 0 deletions
diff --git a/modern/src/RegisterDialog.js b/modern/src/RegisterDialog.js
new file mode 100644
index 0000000..5317436
--- /dev/null
+++ b/modern/src/RegisterDialog.js
@@ -0,0 +1,104 @@
+import t from './common/localization'
+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';
+
+const RegisterDialog = ({ showDialog, onResult }) => {
+ const [name, setName] = useState('');
+ const [email, setEmail] = useState('');
+ const [password, setPassword] = useState('');
+ const [snackbarOpen, setSnackbarOpen] = useState(false);
+
+ const handleNameChange = (event) => {
+ setName(event.target.value);
+ }
+
+ const handleEmailChange = (event) => {
+ setEmail(event.target.value);
+ }
+
+ const handlePasswordChange = (event) => {
+ setPassword(event.target.value);
+ }
+
+ const submitDisabled = () => {
+ return (!name || !/(.+)@(.+)\.(.{2,})/.test(email) || !password);
+ }
+
+ const handleRegister = async (event) => {
+
+ 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={6000}
+ onClose={() => { onResult(true) }}
+ message={t('loginCreated')} />
+ );
+ } else if (showDialog) {
+ return (
+ <Dialog
+ open={true}
+ onClose={() => { onResult(false) }}>
+ <DialogContent>
+ <DialogContentText>{t('loginRegister')}</DialogContentText>
+ <TextField
+ margin='normal'
+ required
+ fullWidth
+ label={t('sharedName')}
+ name='name'
+ value={name || ''}
+ autoComplete='name'
+ autoFocus
+ onChange={handleNameChange} />
+ <TextField
+ margin='normal'
+ required
+ fullWidth
+ type='email'
+ label={t('userEmail')}
+ name='email'
+ value={email || ''}
+ autoComplete='email'
+ onChange={handleEmailChange} />
+ <TextField
+ margin='normal'
+ required
+ fullWidth
+ label={t('userPassword')}
+ name='password'
+ value={password || ''}
+ type='password'
+ autoComplete='current-password'
+ onChange={handlePasswordChange} />
+ </DialogContent>
+ <DialogActions>
+ <Button color="primary" onClick={handleRegister} disabled={submitDisabled()}>{t('loginRegister')}</Button>
+ <Button autoFocus onClick={() => onResult(false)}>{t('sharedCancel')}</Button>
+ </DialogActions>
+ </Dialog>
+ )
+ } else return null;
+
+};
+
+export default RegisterDialog;