Spaces:
Runtime error
Runtime error
File size: 5,725 Bytes
56b6519 |
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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
/* eslint-disable import/extensions */
import { t } from 'i18next';
import React, { useEffect, useState } from 'react';
import { toast } from 'sonner';
import { Button } from '@/components/ui/button';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Label } from '@/components/ui/label';
import SimpleInput from '../../components/input/SimpleInput';
import { fetchUsername } from '../../services/audits';
export const Profile = () => {
const [role, setRole] = useState<string | null>(null);
const [formData, setFormData] = useState<{
username: string;
firstname: string;
lastname: string;
email: string;
phone: string;
newPassword?: string;
confirmPassword?: string;
currentPassword?: string;
}>({
username: '',
firstname: '',
lastname: '',
email: '',
phone: '',
});
useEffect(() => {
fetchUsername()
.then(user => {
setRole(user.datas.role);
setFormData({
username: user.datas.username,
firstname: user.datas.firstname,
lastname: user.datas.lastname,
email: user.datas.email ?? '',
phone: user.datas.phone ?? '',
});
})
.catch(console.error);
}, []);
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
fetch(`${import.meta.env.VITE_API_URL}/api/users/me`, {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
},
credentials: 'include',
body: JSON.stringify({
...formData,
...(formData.newPassword === '' && {
newPassword: formData.newPassword,
}),
...(formData.confirmPassword === '' && {
confirmPassword: formData.confirmPassword,
}),
...(formData.currentPassword === '' && {
currentPassword: formData.currentPassword,
}),
}),
})
.then(res => {
if (res.ok) {
toast.success(t('msg.profileUpdateOk'));
} else {
toast.error(t('failedUpdateProfile'));
}
})
.catch(console.error);
};
return (
<Card className="w-full mt-5 max-w-2xl mx-auto bg-gray-900 text-gray-100">
<CardHeader>
<CardTitle className="text-2xl font-bold">{t('profile')}</CardTitle>
</CardHeader>
<CardContent>
<form className="space-y-4" onSubmit={handleSubmit}>
<div className="flex justify-between items-center">
<div className="flex items-center space-x-2">
<Label className="font-medium" htmlFor="role">
{t('role')}:
</Label>
<span className="bg-yellow-500 text-black px-2 py-1 rounded text-sm">
{role}
</span>
</div>
</div>
<SimpleInput
id="username"
name="username"
onChange={value => {
setFormData(prev => ({ ...prev, username: value }));
}}
placeholder={t('username')}
type="text"
value={formData.username}
/>
<SimpleInput
id="firstname"
name="firstname"
onChange={value => {
setFormData(prev => ({ ...prev, firstname: value }));
}}
placeholder={t('firstname')}
type="text"
value={formData.firstname}
/>
<SimpleInput
id="lastname"
name="lastname"
onChange={value => {
setFormData(prev => ({ ...prev, lastname: value }));
}}
placeholder={t('lastname')}
type="text"
value={formData.lastname}
/>
<SimpleInput
id="email"
name="email"
onChange={value => {
setFormData(prev => ({ ...prev, email: value }));
}}
placeholder={t('email')}
type="text"
value={formData.email}
/>
<SimpleInput
id="phone"
name="phone"
onChange={value => {
setFormData(prev => ({ ...prev, phone: value }));
}}
placeholder={t('phone')}
type="text"
value={formData.phone}
/>
<div className="grid grid-cols-2 gap-4">
<SimpleInput
id="newPassword"
name="newPassword"
onChange={value => {
setFormData(prev => ({ ...prev, newPassword: value }));
}}
placeholder={t('newPassword')}
type="password"
value={formData.newPassword ?? ''}
/>
<SimpleInput
id="confirmPassword"
name="confirmPassword"
onChange={value => {
setFormData(prev => ({ ...prev, confirmPassword: value }));
}}
placeholder={t('confirmPassword')}
type="password"
value={formData.confirmPassword ?? ''}
/>
</div>
<SimpleInput
id="currentPassword"
name="currentPassword"
onChange={value => {
setFormData(prev => ({ ...prev, currentPassword: value }));
}}
placeholder={t('currentPassword')}
requiredField
type="password"
value={formData.currentPassword ?? ''}
/>
<Button
className="w-full bg-blue-600 hover:bg-blue-700"
type="submit"
>
{t('updateUserInformation')}
</Button>
</form>
</CardContent>
</Card>
);
};
|