108 lines
3.7 KiB
TypeScript
108 lines
3.7 KiB
TypeScript
import Button from '@mui/material/Button';
|
|
import Dialog from '@mui/material/Dialog';
|
|
import DialogActions from '@mui/material/DialogActions';
|
|
import DialogContent from '@mui/material/DialogContent';
|
|
import DialogTitle from '@mui/material/DialogTitle';
|
|
import FormControlLabel from '@mui/material/FormControlLabel';
|
|
import Switch from '@mui/material/Switch';
|
|
import TextField from '@mui/material/TextField';
|
|
import Tooltip from '@mui/material/Tooltip';
|
|
import React from 'react';
|
|
|
|
interface IProps {
|
|
name?: string;
|
|
admin?: boolean;
|
|
fClose: VoidFunction;
|
|
fOnSubmit: (name: string, pass: string, admin: boolean) => Promise<void>;
|
|
isEdit?: boolean;
|
|
}
|
|
|
|
const AddEditUserDialog = ({
|
|
fClose,
|
|
fOnSubmit,
|
|
isEdit,
|
|
name: initialName = '',
|
|
admin: initialAdmin = false,
|
|
}: IProps) => {
|
|
const [name, setName] = React.useState(initialName);
|
|
const [pass, setPass] = React.useState('');
|
|
const [admin, setAdmin] = React.useState(initialAdmin);
|
|
|
|
const namePresent = name.length !== 0;
|
|
const passPresent = pass.length !== 0 || isEdit;
|
|
const submitAndClose = async () => {
|
|
await fOnSubmit(name, pass, admin);
|
|
fClose();
|
|
};
|
|
return (
|
|
<Dialog
|
|
open={true}
|
|
onClose={fClose}
|
|
aria-labelledby="form-dialog-title"
|
|
id="add-edit-user-dialog">
|
|
<DialogTitle id="form-dialog-title">
|
|
{isEdit ? 'Edit ' + name : 'Add a user'}
|
|
</DialogTitle>
|
|
<DialogContent>
|
|
<TextField
|
|
autoFocus
|
|
margin="dense"
|
|
className="name"
|
|
label="Username *"
|
|
value={name}
|
|
name="username"
|
|
id="username"
|
|
onChange={(e) => setName(e.target.value)}
|
|
fullWidth
|
|
/>
|
|
<TextField
|
|
margin="dense"
|
|
className="password"
|
|
type="password"
|
|
value={pass}
|
|
fullWidth
|
|
label={isEdit ? 'Password (empty if no change)' : 'Password *'}
|
|
name="password"
|
|
id="password"
|
|
onChange={(e) => setPass(e.target.value)}
|
|
/>
|
|
<FormControlLabel
|
|
control={
|
|
<Switch
|
|
checked={admin}
|
|
className="admin-rights"
|
|
onChange={(e) => setAdmin(e.target.checked)}
|
|
value="admin"
|
|
/>
|
|
}
|
|
label="has administrator rights"
|
|
/>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<Button onClick={fClose}>Cancel</Button>
|
|
<Tooltip
|
|
placement={'bottom-start'}
|
|
title={
|
|
namePresent
|
|
? passPresent
|
|
? ''
|
|
: 'password is required'
|
|
: 'username is required'
|
|
}>
|
|
<div>
|
|
<Button
|
|
className="save-create"
|
|
disabled={!passPresent || !namePresent}
|
|
onClick={submitAndClose}
|
|
color="primary"
|
|
variant="contained">
|
|
{isEdit ? 'Save' : 'Create'}
|
|
</Button>
|
|
</div>
|
|
</Tooltip>
|
|
</DialogActions>
|
|
</Dialog>
|
|
);
|
|
};
|
|
export default AddEditUserDialog;
|