This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
102 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,138 +1,107 @@ | ||
import { useEffect, useState } from 'react'; | ||
import React, { useState, useEffect } from 'react'; | ||
import axios from 'axios'; | ||
import Button from '@mui/material/Button'; | ||
import Box from '@mui/material/Box'; | ||
import Typography from '@mui/material/Typography'; | ||
import Modal from '@mui/material/Modal'; | ||
import { Footer } from '../Components/HeaderFooter'; | ||
|
||
interface User { | ||
id: string; | ||
name: string; | ||
email: string; | ||
role: 'unverified' | 'verified' | 'admin'; // Define the possible roles | ||
uuid: string; | ||
log_in_info: string; | ||
role: string; | ||
} | ||
|
||
const RoleManagement = () => { | ||
const [users, setUsers] = useState<User[]>([]); | ||
const [selectedUser, setSelectedUser] = useState<User | null>(null); | ||
const [roleModalOpen, setRoleModalOpen] = useState(false); | ||
|
||
const handleRoleModalOpen = (user: User) => { | ||
setSelectedUser(user); | ||
setRoleModalOpen(true); | ||
}; | ||
const RoleManagement: React.FC = () => { | ||
const [users, setUsers] = useState<User[]>([]); | ||
const [loading, setLoading] = useState<boolean>(true); | ||
const [error, setError] = useState<string | null>(null); | ||
const [selectedRoles, setSelectedRoles] = useState<{ [key: string]: string }>({}); | ||
|
||
const handleRoleModalClose = () => { | ||
setSelectedUser(null); | ||
setRoleModalOpen(false); | ||
// Fetch users from the backend when the component mounts | ||
useEffect(() => { | ||
const fetchUsers = async () => { | ||
try { | ||
const response = await axios.get<User[]>('http://localhost:8080/api/User/all'); | ||
setUsers(response.data); | ||
// Initialize selectedRoles with each user's current role | ||
const initialRoles = response.data.reduce((acc, user) => { | ||
acc[user.uuid] = user.role; | ||
return acc; | ||
}, {} as { [key: string]: string }); | ||
setSelectedRoles(initialRoles); | ||
} catch (error) { | ||
console.error('Error fetching users:', error); | ||
setError('Failed to fetch users'); | ||
} finally { | ||
setLoading(false); | ||
} | ||
}; | ||
fetchUsers(); | ||
}, []); | ||
|
||
// Fetch users from the backend | ||
useEffect(() => { | ||
const fetchUsers = async () => { | ||
try { | ||
const response = await axios.get<User[]>('http://localhost:5173/api/User/all'); // Adjust the endpoint as needed | ||
setUsers(response.data); | ||
} catch (error) { | ||
console.error('Error fetching users:', error); | ||
} | ||
}; | ||
|
||
fetchUsers(); | ||
}, []); | ||
const handleRoleChange = (uuid: string, newRole: string) => { | ||
setSelectedRoles((prevRoles) => ({ | ||
...prevRoles, | ||
[uuid]: newRole, | ||
})); | ||
}; | ||
|
||
// Update user role | ||
const updateUserRole = async (userId: string, newRole: 'unverified' | 'verified' | 'admin') => { | ||
try { | ||
await axios.patch(`/api/users/${userId}`, { role: newRole }); // Adjust the endpoint as needed | ||
setUsers(prevUsers => | ||
prevUsers.map(user => | ||
user.id === userId ? { ...user, role: newRole } : user | ||
) | ||
); | ||
handleRoleModalClose(); | ||
} catch (error) { | ||
console.error('Error updating user role:', error); | ||
} | ||
}; | ||
|
||
const style = { | ||
position: 'absolute' as 'absolute', | ||
top: '50%', | ||
left: '50%', | ||
transform: 'translate(-50%, -50%)', | ||
width: 400, | ||
bgcolor: 'background.paper', | ||
border: '2px solid #000', | ||
boxShadow: 24, | ||
p: 4, | ||
}; | ||
const updateRole = async (uuid: string) => { | ||
try { | ||
const user = users.find((u) => u.uuid === uuid); | ||
if (!user) return; | ||
|
||
const updatedUser = { | ||
...user, | ||
role: selectedRoles[uuid], | ||
}; | ||
|
||
await axios.put(`http://localhost:8080/api/User/update`, updatedUser); | ||
alert('Role updated successfully!'); | ||
} catch (error) { | ||
console.error('Error updating role:', error); | ||
alert(error); | ||
} | ||
}; | ||
|
||
return ( | ||
<section> | ||
<Box sx={{ width: '100%', maxWidth: 700, mb: 4 }}> | ||
<Typography variant="h2" sx={{ color: 'black' }}> | ||
Role Management | ||
</Typography> | ||
</Box> | ||
|
||
<div> | ||
{users.map(user => ( | ||
<Box key={user.id} sx={{ bgcolor: '#C3D7EE', padding: 2, marginBottom: 2 }}> | ||
<Typography variant="h6">{user.name}</Typography> | ||
<Typography variant="body1">Email: {user.email}</Typography> | ||
<Typography variant="body2">Role: {user.role}</Typography> | ||
<Button | ||
variant='contained' | ||
onClick={() => handleRoleModalOpen(user)} | ||
sx={{ width: '50%' }} | ||
> | ||
Change Role | ||
</Button> | ||
</Box> | ||
))} | ||
</div> | ||
if (loading) { | ||
return <div>Loading users...</div>; | ||
} | ||
|
||
<Modal open={roleModalOpen} onClose={handleRoleModalClose}> | ||
<Box sx={style}> | ||
<Typography variant="h4">Change Role</Typography> | ||
{selectedUser && ( | ||
<> | ||
<Typography variant="body1">User: {selectedUser.name}</Typography> | ||
<Typography variant="body2">Current Role: {selectedUser.role}</Typography> | ||
|
||
<Button | ||
variant="contained" | ||
onClick={() => updateUserRole(selectedUser.id, 'verified')} | ||
sx={{ margin: '8px' }} | ||
> | ||
Set to Verified | ||
</Button> | ||
<Button | ||
variant="contained" | ||
onClick={() => updateUserRole(selectedUser.id, 'admin')} | ||
sx={{ margin: '8px' }} | ||
> | ||
Set to Admin | ||
</Button> | ||
<Button | ||
variant="contained" | ||
onClick={() => updateUserRole(selectedUser.id, 'unverified')} | ||
sx={{ margin: '8px' }} | ||
> | ||
Set to Unverified | ||
</Button> | ||
</> | ||
)} | ||
</Box> | ||
</Modal> | ||
if (error) { | ||
return <div>{error}</div>; | ||
} | ||
|
||
<div> | ||
<Footer /> | ||
</div> | ||
</section> | ||
); | ||
return ( | ||
<div> | ||
<h1>All Users</h1> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>Email</th> | ||
<th>Role</th> | ||
<th>Actions</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{users.map((user) => ( | ||
<tr key={user.uuid}> | ||
<td>{user.log_in_info}</td> | ||
<td> | ||
<select | ||
value={selectedRoles[user.uuid]} | ||
onChange={(e) => handleRoleChange(user.uuid, e.target.value)} | ||
> | ||
<option value="unverified">Unverified</option> | ||
<option value="verified">Verified</option> | ||
<option value="admin">Admin</option> | ||
</select> | ||
</td> | ||
<td> | ||
<button onClick={() => updateRole(user.uuid)}>Update Role</button> | ||
</td> | ||
</tr> | ||
))} | ||
</tbody> | ||
</table> | ||
</div> | ||
); | ||
}; | ||
|
||
export default RoleManagement; |