Projekt

Obecné

Profil

Stáhnout (6.77 KB) Statistiky
| Větev: | Tag: | Revize:
1 b523c74d Schwobik
import {
2 bcd7951e Schwobik
    Button, Container,
3 287652cf Schwobik
    Grid,
4 b523c74d Schwobik
    List,
5
    ListItem,
6
    ListItemText,
7 bcd7951e Schwobik
    Paper, Typography,
8 b523c74d Schwobik
} from '@mui/material'
9 bcd7951e Schwobik
import React, {Fragment, useEffect, useState} from 'react'
10 b523c74d Schwobik
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 287652cf Schwobik
import {fetchUsers} from "./userDetailThunks"
19
import {
20
    clear,
21
    consumeError,
22 fdf6c32d Schwobik
    resetIsRequestCompleted,
23 287652cf Schwobik
    setLoading,
24
    setSelectedUser
25
} from "./userDetailSlice"
26
import ShowErrorIfPresent from "../Reusables/ShowErrorIfPresent"
27
import {number} from "yup"
28 bcd7951e Schwobik
import ManageAccountsIcon from '@mui/icons-material/ManageAccounts';
29 b523c74d Schwobik
30
const apiError =
31
    'Error while fetching data from the server, please try again later.'
32
33
const Administration = () => {
34 287652cf Schwobik
    // 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 fdf6c32d Schwobik
    const isRequestCompleted = useSelector((state: RootState) => state.usersDetail.isRequestCompleted)
40 287652cf Schwobik
    const [selectedUserId, setSelectedUserId] = useState<number | undefined>(undefined)
41 bcd7951e Schwobik
    const loggedUsername = useSelector((state: RootState) => state.user.username)
42 287652cf Schwobik
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 b523c74d Schwobik
50
    const isAdmin = useSelector(
51
        (state: RootState) => state.user.roles.includes("ROLE_ADMIN")
52
    )
53
54
    const handleClick = (userID: number) => {
55
        if (users) {
56 287652cf Schwobik
            setSelectedUserId(userID)
57
            dispatch(setSelectedUser(users.at(userID)))
58 b523c74d Schwobik
        }
59
    }
60
61 287652cf Schwobik
    // Use effect to read the error and consume it
62
    useEffect(() => {
63
        if (users.length > 0) {
64 fdf6c32d Schwobik
            // 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 150d96ea Schwobik
                else {
73
                    setSelectedUserId(0)
74
                    dispatch(setSelectedUser(users.at(0)))
75
                }
76 fdf6c32d Schwobik
            } else {
77
                setSelectedUserId(0)
78
                dispatch(setSelectedUser(users.at(0)))
79
            }
80 287652cf Schwobik
        }
81 fdf6c32d Schwobik
    }, [users, dispatch])
82
83
    useEffect(() => {
84
        if (isRequestCompleted) {
85
            dispatch(resetIsRequestCompleted())
86
            dispatch(fetchUsers())
87
        }
88
    }, [isRequestCompleted, dispatch])
89 287652cf Schwobik
90 b523c74d Schwobik
91 287652cf Schwobik
    // Use effect to read the error and consume it
92
    useEffect(() => {
93
        if (apiError) {
94
            setDisplayError(apiError)
95
            dispatch(consumeError())
96 b523c74d Schwobik
        }
97 287652cf Schwobik
    }, [apiError, dispatch])
98 b523c74d Schwobik
99
    // Fetch the item from the api after mounting the component
100
    useEffect(() => {
101 287652cf Schwobik
        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 b523c74d Schwobik
109
    return (
110
        <Fragment>
111 bcd7951e Schwobik
            {isAdmin? <ShowErrorIfPresent err={displayError}/> : null }
112 287652cf Schwobik
            {loading && !apiError ? <ContentLoading /> : null}
113 32e3bc68 Schwobik
            {isAdmin?
114
                (!loading && users ? (
115 b523c74d Schwobik
                <Grid container justifyContent="space-around">
116 287652cf Schwobik
                    <Grid item xs={6} md={3} sx={{ px: 2 }}>
117 b523c74d Schwobik
                        <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 287652cf Schwobik
                                            selectedUserId === id
124 b523c74d Schwobik
                                                ? '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 287652cf Schwobik
                    <Grid item md={9} xs={6}>
144
                        {selectedUserId !== undefined  ?
145 fdf6c32d Schwobik
                            <UserDetail user={selectedUser as UserDto}/>
146 b523c74d Schwobik
                        : null }
147
                    </Grid>
148
                </Grid>
149 32e3bc68 Schwobik
                ) : null)
150
            : (
151 bcd7951e Schwobik
                <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 b523c74d Schwobik
        </Fragment>
173
    )
174
}
175
176
export default Administration