Projekt

Obecné

Profil

Stáhnout (5.64 KB) Statistiky
| Větev: | Tag: | Revize:
1 b523c74d Schwobik
import {
2
    Button,
3 287652cf Schwobik
    Grid,
4 b523c74d Schwobik
    Checkbox,
5
    Paper,
6 287652cf Schwobik
    Typography,
7
    FormGroup,
8 fdf6c32d Schwobik
    FormControlLabel
9 b523c74d Schwobik
} from '@mui/material'
10 287652cf Schwobik
import React, {Fragment, useEffect, useState} from 'react'
11 b523c74d Schwobik
import axiosInstance from "../../api/api"
12
import 'react-quill/dist/quill.snow.css'
13
import {PermissionDto, UserDto} from "../../swagger/data-contracts"
14
import ClearIcon from "@mui/icons-material/Clear"
15 287652cf Schwobik
import CheckIcon from '@mui/icons-material/Check';
16
import {useDispatch, useSelector} from "react-redux"
17 fdf6c32d Schwobik
import {deleteUser, savePermissions} from "./userDetailThunks"
18 287652cf Schwobik
import {RootState} from "../redux/store"
19
import {setSelectedUserPermissions} from "./userDetailSlice"
20 bcd7951e Schwobik
import AddIcon from "@mui/icons-material/Add"
21
import {Link as RouterLink} from "react-router-dom"
22
import ManageAccountsIcon from '@mui/icons-material/ManageAccounts';
23 b523c74d Schwobik
24
export interface UserDetailProps {
25 fdf6c32d Schwobik
    user: UserDto
26 b523c74d Schwobik
}
27
28
const UserDetail = (props: UserDetailProps) => {
29 fdf6c32d Schwobik
    const selectedUser: UserDto | undefined = useSelector((state: RootState) => state.usersDetail.selectedUser)
30 287652cf Schwobik
    const [canRead, setCanRead] = useState(selectedUser?.permissions?.canRead)
31
    const [canWrite, setCanWrite] = useState(selectedUser?.permissions?.canWrite)
32
    const [canDelete, setCanDelete] = useState(selectedUser?.permissions?.canDelete)
33 b523c74d Schwobik
34 287652cf Schwobik
    const dispatch = useDispatch()
35
36
    useEffect(()=> {
37
        setCanRead(selectedUser?.permissions?.canRead)
38
        setCanWrite(selectedUser?.permissions?.canWrite)
39
        setCanDelete(selectedUser?.permissions?.canDelete)
40
    }, [selectedUser]);
41 b523c74d Schwobik
42
    // Maps user property to corresponding table row
43
    const mapToRow = (rowName: string, item: string) => (
44
        <Fragment>
45
            <Grid sx={{my: 2}} container justifyContent="space-around">
46 7282f38a Schwobik
                <Grid item xs={4} md={3} lg={2} sx={{px: 1}}>
47 b523c74d Schwobik
                    <Typography fontWeight={500}>{rowName}</Typography>
48
                </Grid>
49 7282f38a Schwobik
                <Grid item xs={8} md={9} lg={10} sx={{ml: 'auto'}}>
50 b523c74d Schwobik
                    <Typography key={item}>{item}</Typography>
51
                </Grid>
52
            </Grid>
53
        </Fragment>
54
    )
55
56
    const rows = [
57
        {
58
            rowName: 'Name:',
59
            item: [props.user?.name],
60
        },
61
        {
62
            rowName: 'E-mail:',
63 287652cf Schwobik
            item: selectedUser?.email,
64 b523c74d Schwobik
        }
65
    ]
66
    const rights = {
67
        canWrite: 'Add and edit locations',
68
        canDelete: 'Delete locations',
69
        canRead: 'Access to tracking tool',
70
    }
71
72
73 fdf6c32d Schwobik
    const prepareDeleteUser = async () => {
74
        dispatch(deleteUser())
75 b523c74d Schwobik
    }
76
77 287652cf Schwobik
    const prepareSavePermissions = () => {
78
        dispatch(setSelectedUserPermissions({canRead: canRead, canWrite: canWrite, canDelete: canDelete}))
79
        dispatch(savePermissions())
80
    }
81
82 b523c74d Schwobik
    return (
83
        <Fragment>
84
            <Paper style={{minHeight: '80vh'}} variant="outlined">
85
                <Grid container justifyContent="space-around">
86 7282f38a Schwobik
                    <Grid item xs={12} md={7} sx={{p: 2}}>
87 b523c74d Schwobik
                        <Typography fontWeight={800}>Information</Typography>
88
                        {rows.map((row) => (
89
90
                            <Fragment>
91
                                {mapToRow(
92
                                    row.rowName as string,
93
                                    row.item as string
94
                                )}
95
                            </Fragment>
96
                        ))}
97
                    </Grid>
98 7282f38a Schwobik
                    <Grid item xs={12} md={5} sx={{p: 2}}>
99 287652cf Schwobik
                        <Typography fontWeight={800}>Rights</Typography>
100
                        <FormGroup>
101
                            <FormControlLabel
102
                                control={
103
                                    <Checkbox
104
                                        checked={canWrite}
105
                                        onChange={e => setCanWrite(e.target.checked)}
106
                                    />}
107
                                label={rights.canWrite}/>
108
                            <FormControlLabel
109
                                control={
110
                                    <Checkbox
111
                                        checked={canRead}
112
                                        onChange={e => setCanRead(e.target.checked)}
113
                                    />}
114
                                label={rights.canRead}/>
115
                            <FormControlLabel
116
                                control={
117
                                    <Checkbox
118
                                        checked={canDelete}
119
                                        onChange={e => setCanDelete(e.target.checked)}
120
                                    />}
121
                                label={rights.canDelete}/>
122
                        </FormGroup>
123 b523c74d Schwobik
                    </Grid>
124
                </Grid>
125 287652cf Schwobik
                <Button startIcon={<CheckIcon />}
126
                        variant="contained"
127
                        color="primary"
128
                        onClick={prepareSavePermissions}
129
                        sx={{ m: 2 }} >
130
                    Save
131
                </Button>
132 b523c74d Schwobik
                <Button startIcon={<ClearIcon />}
133
                        variant="contained"
134
                        color="primary"
135 fdf6c32d Schwobik
                        onClick={prepareDeleteUser}
136 b523c74d Schwobik
                        sx={{ m: 2 }} >
137
                    Delete
138
                </Button>
139 bcd7951e Schwobik
                <Button startIcon={<ManageAccountsIcon />}
140
                        variant="contained"
141
                        component={RouterLink}
142
                        to="/changePassword"
143
                        color="primary"
144
                        sx={{ m: 2 }} >
145
                    Change Password
146
                </Button>
147 b523c74d Schwobik
            </Paper>
148
        </Fragment>
149
    )
150
}
151
152
export default UserDetail