Ability to promote and demote admins
This commit is contained in:
parent
4f229ff642
commit
5aaa5ff7a6
|
@ -45,14 +45,16 @@ function AdminCreator(props){
|
||||||
return (
|
return (
|
||||||
<Paper sx={{width: "90vw", margin: "10px auto", padding: "15px"}} component={Stack} direction="column">
|
<Paper sx={{width: "90vw", margin: "10px auto", padding: "15px"}} component={Stack} direction="column">
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<TextField id="adminEmailInput" sx={{ width: "70%" }} label="Admin Email" variant="outlined" type="email" />
|
<form>
|
||||||
{/* <Button variant="contained" color="primary" onClick={postCreate}>Create Team</Button> */}
|
<TextField id="adminEmailInput" sx={{ width: "70%" }} label="Admin Email" variant="outlined" type="email" />
|
||||||
<Button variant="contained" color="success" onClick={postCreate} sx={{width: "20%", marginLeft: "5px"}}>
|
{/* <Button variant="contained" color="primary" onClick={postCreate}>Create Team</Button> */}
|
||||||
<Box sx={{padding: "10px"}}>
|
<Button type="submit" variant="contained" color="success" onClick={postCreate} sx={{width: "20%", marginLeft: "5px"}}>
|
||||||
Create Admin
|
<Box sx={{padding: "10px"}}>
|
||||||
</Box>
|
Create Admin
|
||||||
<AddCircleIcon />
|
</Box>
|
||||||
</Button>
|
<AddCircleIcon />
|
||||||
|
</Button>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</Paper>
|
</Paper>
|
||||||
)
|
)
|
||||||
|
@ -72,6 +74,27 @@ function UserList(props){
|
||||||
.catch(error => showError(error));
|
.catch(error => showError(error));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let updateRank = (email) => event => {
|
||||||
|
let isManager = event.target.value == "manager";
|
||||||
|
let formData = new FormData();
|
||||||
|
formData.append("isManager", isManager);
|
||||||
|
formData.append("emailAddress", email);
|
||||||
|
let body = new URLSearchParams(formData);
|
||||||
|
fetch(process.env.REACT_APP_API_URL + `/users/changeManagerStatus`, {
|
||||||
|
method: "POST",
|
||||||
|
body: body
|
||||||
|
})
|
||||||
|
.then(res => res.json())
|
||||||
|
.then(data => {
|
||||||
|
if(data.status !== "OK"){
|
||||||
|
showError(data.data);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
props.onUserUpdated();
|
||||||
|
})
|
||||||
|
.catch(error => showError(error));
|
||||||
|
}
|
||||||
|
|
||||||
return(
|
return(
|
||||||
<Paper sx={{minHeight: "30vh", width:"90vw", margin:"10px auto"}} component={Stack} direction="column" justifycontent="center">
|
<Paper sx={{minHeight: "30vh", width:"90vw", margin:"10px auto"}} component={Stack} direction="column" justifycontent="center">
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
@ -95,7 +118,12 @@ function UserList(props){
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell>{user.email}</TableCell>
|
<TableCell>{user.email}</TableCell>
|
||||||
{/* TODO Drop down menu for selecting rank */}
|
{/* TODO Drop down menu for selecting rank */}
|
||||||
<TableCell>{'user.rank'}</TableCell>
|
<TableCell>
|
||||||
|
<select onChange={updateRank(user.email)} value={user.isManager ? "manager" : "admin"}>
|
||||||
|
<option value="manager">Manager</option>
|
||||||
|
<option value="admin">Admin</option>
|
||||||
|
</select>
|
||||||
|
</TableCell>
|
||||||
{/* <TableCell align="right">{team.members}</TableCell> */}
|
{/* <TableCell align="right">{team.members}</TableCell> */}
|
||||||
<TableCell align="center">
|
<TableCell align="center">
|
||||||
{/* <Button variant="contained" sx={{margin: "auto 5px"}} color="primary" onClick={() => props.setSelectedTeamId(team.id)} endIcon={<EditIcon />}>Edit</Button> */}
|
{/* <Button variant="contained" sx={{margin: "auto 5px"}} color="primary" onClick={() => props.setSelectedTeamId(team.id)} endIcon={<EditIcon />}>Edit</Button> */}
|
||||||
|
@ -112,7 +140,6 @@ function UserList(props){
|
||||||
|
|
||||||
export default function Users(props) {
|
export default function Users(props) {
|
||||||
const [users, setUsers] = React.useState([]);
|
const [users, setUsers] = React.useState([]);
|
||||||
const { userId } = useParams();
|
|
||||||
|
|
||||||
function getUsers() {
|
function getUsers() {
|
||||||
fetch(process.env.REACT_APP_API_URL + `/users/getUsers`)
|
fetch(process.env.REACT_APP_API_URL + `/users/getUsers`)
|
||||||
|
@ -144,7 +171,7 @@ export default function Users(props) {
|
||||||
<>
|
<>
|
||||||
<Appbar user={props.user} pageTitle="Admins" />
|
<Appbar user={props.user} pageTitle="Admins" />
|
||||||
<div className="admins">
|
<div className="admins">
|
||||||
<AdminCreator />
|
<AdminCreator onAdminCreated={getUsers} onUserUpdated={getUsers} />
|
||||||
<UserList users={users}/>
|
<UserList users={users}/>
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
|
|
@ -57,8 +57,6 @@ function NotLoggedInButton() {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Appbar(props) {
|
export default function Appbar(props) {
|
||||||
console.log("Appbar-user:")
|
|
||||||
console.log(props.user);
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<CssBaseline />
|
<CssBaseline />
|
||||||
|
|
Loading…
Reference in New Issue