1
|
import {
|
2
|
Button, Container,
|
3
|
Grid,
|
4
|
List,
|
5
|
ListItem,
|
6
|
ListItemText,
|
7
|
Paper, Typography,
|
8
|
} from '@mui/material'
|
9
|
import React, {Fragment, useEffect, useState} from 'react'
|
10
|
import { useDispatch, useSelector } from 'react-redux'
|
11
|
import { RootState } from '../redux/store'
|
12
|
import 'react-quill/dist/quill.snow.css'
|
13
|
import ContentLoading from "../Reusables/ContentLoading"
|
14
|
import {UserDto} from "../../swagger/data-contracts"
|
15
|
import UserDetail from "./UserDetail"
|
16
|
import {Link as RouterLink} from "react-router-dom"
|
17
|
import AddIcon from '@mui/icons-material/Add';
|
18
|
import {fetchUsers} from "./userDetailThunks"
|
19
|
import {
|
20
|
clear,
|
21
|
consumeError,
|
22
|
resetIsRequestCompleted,
|
23
|
setLoading,
|
24
|
setSelectedUser
|
25
|
} from "./userDetailSlice"
|
26
|
import ShowErrorIfPresent from "../Reusables/ShowErrorIfPresent"
|
27
|
import {number} from "yup"
|
28
|
import ManageAccountsIcon from '@mui/icons-material/ManageAccounts';
|
29
|
|
30
|
const apiError =
|
31
|
'Error while fetching data from the server, please try again later.'
|
32
|
|
33
|
const Administration = () => {
|
34
|
// Items, loading and error from api
|
35
|
const users = useSelector((state: RootState) => state.usersDetail.users)
|
36
|
const loading = useSelector((state: RootState) => state.usersDetail.loading)
|
37
|
const apiError = useSelector((state: RootState) => state.usersDetail.error)
|
38
|
const selectedUser = useSelector((state: RootState) => state.usersDetail.selectedUser)
|
39
|
const isRequestCompleted = useSelector((state: RootState) => state.usersDetail.isRequestCompleted)
|
40
|
const [selectedUserId, setSelectedUserId] = useState<number | undefined>(undefined)
|
41
|
const loggedUsername = useSelector((state: RootState) => state.user.username)
|
42
|
|
43
|
// Local state to display any error relevant error
|
44
|
const [displayError, setDisplayError] = useState<string | undefined>(
|
45
|
undefined
|
46
|
)
|
47
|
|
48
|
const dispatch = useDispatch()
|
49
|
|
50
|
const isAdmin = useSelector(
|
51
|
(state: RootState) => state.user.roles.includes("ROLE_ADMIN")
|
52
|
)
|
53
|
|
54
|
const handleClick = (userID: number) => {
|
55
|
if (users) {
|
56
|
setSelectedUserId(userID)
|
57
|
dispatch(setSelectedUser(users.at(userID)))
|
58
|
}
|
59
|
}
|
60
|
|
61
|
// Use effect to read the error and consume it
|
62
|
useEffect(() => {
|
63
|
if (users.length > 0) {
|
64
|
// if there is user selected, leave that state - handled by useEffect on isRequestCompleted
|
65
|
if (selectedUser !== undefined) {
|
66
|
const selUser = users.find(u => u.email === selectedUser.email)
|
67
|
if (selUser !== undefined) {
|
68
|
setSelectedUserId(users.findIndex(u => u.email === selectedUser.email))
|
69
|
dispatch(setSelectedUser(selUser))
|
70
|
return
|
71
|
}
|
72
|
else {
|
73
|
setSelectedUserId(0)
|
74
|
dispatch(setSelectedUser(users.at(0)))
|
75
|
}
|
76
|
} else {
|
77
|
setSelectedUserId(0)
|
78
|
dispatch(setSelectedUser(users.at(0)))
|
79
|
}
|
80
|
}
|
81
|
}, [users, dispatch])
|
82
|
|
83
|
useEffect(() => {
|
84
|
if (isRequestCompleted) {
|
85
|
dispatch(resetIsRequestCompleted())
|
86
|
dispatch(fetchUsers())
|
87
|
}
|
88
|
}, [isRequestCompleted, dispatch])
|
89
|
|
90
|
|
91
|
// Use effect to read the error and consume it
|
92
|
useEffect(() => {
|
93
|
if (apiError) {
|
94
|
setDisplayError(apiError)
|
95
|
dispatch(consumeError())
|
96
|
}
|
97
|
}, [apiError, dispatch])
|
98
|
|
99
|
// Fetch the item from the api after mounting the component
|
100
|
useEffect(() => {
|
101
|
dispatch(fetchUsers())
|
102
|
|
103
|
return () => {
|
104
|
// Invalidate the state when unmounting so that the old list is not rerendered when the user returns to the page
|
105
|
dispatch(setLoading())
|
106
|
}
|
107
|
}, [dispatch])
|
108
|
|
109
|
return (
|
110
|
<Fragment>
|
111
|
{isAdmin? <ShowErrorIfPresent err={displayError}/> : null }
|
112
|
{loading && !apiError ? <ContentLoading /> : null}
|
113
|
{isAdmin?
|
114
|
(!loading && users ? (
|
115
|
<Grid container justifyContent="space-around">
|
116
|
<Grid item xs={6} md={3} sx={{ px: 2 }}>
|
117
|
<Paper style={{ minHeight: '80vh', display:'flex', justifyContent: 'space-between', flexDirection:'column'}} variant="outlined">
|
118
|
<List>
|
119
|
{users.map((user, id) => (
|
120
|
<ListItem
|
121
|
key={id}
|
122
|
className={
|
123
|
selectedUserId === id
|
124
|
? 'clicked-user'
|
125
|
: ''
|
126
|
}
|
127
|
onClick={() => handleClick(id)}
|
128
|
>
|
129
|
<ListItemText primary={user.name} />
|
130
|
</ListItem>
|
131
|
))}
|
132
|
</List>
|
133
|
<Button startIcon={<AddIcon />}
|
134
|
variant="contained"
|
135
|
component={RouterLink}
|
136
|
to="/register"
|
137
|
color="primary"
|
138
|
sx={{ m: 2 }} >
|
139
|
Add user
|
140
|
</Button>
|
141
|
</Paper>
|
142
|
</Grid>
|
143
|
<Grid item md={9} xs={6}>
|
144
|
{selectedUserId !== undefined ?
|
145
|
<UserDetail user={selectedUser as UserDto}/>
|
146
|
: null }
|
147
|
</Grid>
|
148
|
</Grid>
|
149
|
) : null)
|
150
|
: (
|
151
|
<Paper style={{minHeight: '80vh'}} variant="outlined">
|
152
|
<Container>
|
153
|
<Grid sx={{my: 2}} container justifyContent="space-around">
|
154
|
<Grid item xs={6} sx={{px: 1}}>
|
155
|
<Typography fontWeight={500}>E-mail</Typography>
|
156
|
</Grid>
|
157
|
<Grid item xs={6} sx={{ml: 'auto'}}>
|
158
|
<Typography key="email">{loggedUsername}</Typography>
|
159
|
</Grid>
|
160
|
</Grid>
|
161
|
<Button startIcon={<ManageAccountsIcon />}
|
162
|
variant="contained"
|
163
|
component={RouterLink}
|
164
|
to="/changePassword"
|
165
|
color="primary"
|
166
|
sx={{ m: 2 }} >
|
167
|
Change Password
|
168
|
</Button>
|
169
|
</Container>
|
170
|
</Paper>
|
171
|
)}
|
172
|
</Fragment>
|
173
|
)
|
174
|
}
|
175
|
|
176
|
export default Administration
|