Spaces:
Running
Running
File size: 6,176 Bytes
b0b150b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
import React, { useState } from 'react';
import {
Dialog,
DialogTitle,
DialogContent,
DialogActions,
Button,
TextField,
Alert,
CircularProgress,
InputAdornment,
IconButton
} from '@mui/material';
import { Visibility, VisibilityOff } from '@mui/icons-material';
import { changePassword } from '../api/client';
const ChangePasswordModal = ({ open, onClose }) => {
const [oldPassword, setOldPassword] = useState('');
const [newPassword, setNewPassword] = useState('');
const [confirmPassword, setConfirmPassword] = useState('');
const [loading, setLoading] = useState(false);
const [error, setError] = useState(null);
const [success, setSuccess] = useState(false);
const [showOldPassword, setShowOldPassword] = useState(false);
const [showNewPassword, setShowNewPassword] = useState(false);
const [showConfirmPassword, setShowConfirmPassword] = useState(false);
const handleSubmit = async (e) => {
e.preventDefault();
setError(null);
setSuccess(false);
if (newPassword !== confirmPassword) {
setError("New passwords do not match");
return;
}
if (newPassword.length < 6) {
setError("Password must be at least 6 characters");
return;
}
setLoading(true);
try {
await changePassword(oldPassword, newPassword);
setSuccess(true);
setOldPassword('');
setNewPassword('');
setConfirmPassword('');
setTimeout(() => {
onClose();
setSuccess(false);
}, 1500);
} catch (err) {
console.error(err);
setError(err.response?.data?.detail || "Failed to change password");
} finally {
setLoading(false);
}
};
const handleClose = () => {
setError(null);
setSuccess(false);
onClose();
};
return (
<Dialog open={open} onClose={handleClose} maxWidth="sm" fullWidth>
<DialogTitle>Change Password</DialogTitle>
<form onSubmit={handleSubmit}>
<DialogContent>
{error && <Alert severity="error" sx={{ mb: 2 }}>{error}</Alert>}
{success && <Alert severity="success" sx={{ mb: 2 }}>Password changed successfully!</Alert>}
<TextField
margin="dense"
label="Current Password"
type={showOldPassword ? 'text' : 'password'}
fullWidth
value={oldPassword}
onChange={(e) => setOldPassword(e.target.value)}
required
disabled={loading || success}
InputProps={{
endAdornment: (
<InputAdornment position="end">
<IconButton
onClick={() => setShowOldPassword(!showOldPassword)}
edge="end"
>
{showOldPassword ? <VisibilityOff /> : <Visibility />}
</IconButton>
</InputAdornment>
)
}}
/>
<TextField
margin="dense"
label="New Password"
type={showNewPassword ? 'text' : 'password'}
fullWidth
value={newPassword}
onChange={(e) => setNewPassword(e.target.value)}
required
disabled={loading || success}
InputProps={{
endAdornment: (
<InputAdornment position="end">
<IconButton
onClick={() => setShowNewPassword(!showNewPassword)}
edge="end"
>
{showNewPassword ? <VisibilityOff /> : <Visibility />}
</IconButton>
</InputAdornment>
)
}}
/>
<TextField
margin="dense"
label="Confirm New Password"
type={showConfirmPassword ? 'text' : 'password'}
fullWidth
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
required
disabled={loading || success}
InputProps={{
endAdornment: (
<InputAdornment position="end">
<IconButton
onClick={() => setShowConfirmPassword(!showConfirmPassword)}
edge="end"
>
{showConfirmPassword ? <VisibilityOff /> : <Visibility />}
</IconButton>
</InputAdornment>
)
}}
/>
</DialogContent>
<DialogActions>
<Button onClick={handleClose} disabled={loading}>Cancel</Button>
<Button type="submit" variant="contained" disabled={loading || success} startIcon={loading ? <CircularProgress size={20} /> : null}>
{loading ? 'Updating...' : 'Update Password'}
</Button>
</DialogActions>
</form>
</Dialog>
);
};
export default ChangePasswordModal;
|