Profile.js 13.6 KB
Newer Older
Giang Tran committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
import React, { useState, useEffect } from 'react'
import {
    Box,
    Container,
    Button,
    Card,
    CardContent,
    CardHeader,
    Divider,
    Grid,
    TextField,
    Avatar,
    User,
    Typography,
    CardActions,
    InputLabel,
    MenuItem,
    Select,
    FormControl,
} from '@material-ui/core'
import { useForm } from 'react-hook-form'
import { makeStyles } from '@material-ui/core/styles'
import { KeyboardDatePicker } from '@material-ui/pickers'
import PickerAvatar from '../../components/Input/PickerAvatar'
import PickerImage from '../../components/Input/PickerImage'
import { ValidatorForm, TextValidator } from 'react-material-ui-form-validator'
import { useHistory, Link } from 'react-router-dom'
import { Breadcrumb, SimpleCard } from 'app/components'
import { trimObject } from 'app/config/Function'
import { toast } from 'react-toastify'
import { apiGetInfor, apiUploadUser } from 'app/apis/Functions/users'
import { connect } from 'react-redux'
import { showLoading, hideLoading } from 'app/redux/actions/loadingAction'
import { useDispatch, useSelector } from 'react-redux'

const useStyles = makeStyles((theme) => ({
    btn: {
        width: 100,
        color: 'white',
    },
    btnLeft: {
        width: 100,
        color: 'white',
        marginRight: 20,
    },
    formControl: {
        margin: theme.spacing(1),
        minWidth: 120,
    },
}))

const Profile = (props) => {
    const classes = useStyles()
    const [uriImg, setUriImg] = useState('')
    const [data, setData] = useState()
    const [state, setState] = useState({})
    const dispatch = useDispatch()

    const history = useHistory()
    useEffect(() => {
        getData()
    }, [])

    const getData = async () => {
        props.showLoading()
        const res = await apiGetInfor({})
        props.hideLoading()
        if (res.data.code == 200 && res.data.data) {
            setUriImg(res.data.data.avatar)
            setState(res.data.data)
        } else if (res.data.code == 401) {
            setTimeout(() => {
                history.push('/')
            }, 100)
        } else {
            toast.error('Lấy thông tin thất bại!', {
                theme: 'colored',
            })
        }
    }

    const handleSubmit = async (value) => {
        if (value) {
            const newValue = trimObject(state)
            props.showLoading()
            const res = await apiUploadUser({
                ...newValue,
                avatar: uriImg,
            })
            props.hideLoading()
            if (res.data.code == 200) {
                const response = await apiGetInfor({})
                if (response.data.code == 200 && response.data.data) {
                    dispatch({
                        type: 'LOGIN',
                        payload: {
                            user: res.data.data,
                        },
                    })
                }
                toast.success('Cập nhật thông tin thành công!', {
                    theme: 'colored',
                })

                history.push('/dashboard')
            } else {
                toast.error('Cập nhật thông tin thất bại!', {
                    theme: 'colored',
                })
            }
        }
    }

    const handleChange = (event) => {
        event.persist()
        setState({
            ...state,
            [event.target.name]: event.target.value,
        })
    }

    const onFileChange = (link) => {
        setUriImg(link)
    }
    const { full_name, email, phone, address } = state
    return (
        <div className="m-sm-30">
            <div className="mb-sm-30">
                <div className="mb-sm-30">
                    <Breadcrumb routeSegments={[{ name: 'Tài khoản' }]} />
                </div>
                <Box
                    style={{
                        backgroundColor: 'background.default',
                        minHeight: '100%',
                        paddingTop: '5em',
                        py: 3,
                    }}
                >
                    <Container maxWidth="lg">
                        <Grid container spacing={3}>
                            <Grid item lg={4} md={6} xs={12}>
                                <Card {...props}>
                                    <CardContent>
                                        <Box
                                            style={{
                                                alignItems: 'center',
                                                display: 'flex',
                                                flexDirection: 'column',
                                            }}
                                        >
                                            <PickerAvatar
                                                onFileChange={onFileChange}
                                                image={uriImg}
                                            />
                                            <Typography variant={'h6'}>
                                                {state.user_group_name}
                                            </Typography>
                                        </Box>
                                    </CardContent>
                                    <Divider />
                                </Card>
                            </Grid>
                            <Grid item lg={8} md={6} xs={12}>
                                <SimpleCard>
                                    <ValidatorForm
                                        onSubmit={handleSubmit}
                                        onError={() => null}
                                    >
                                        <CardContent>
                                            <Grid container spacing={3}>
                                                <Grid item md={6} xs={12}>
                                                    <TextValidator
                                                        variant="outlined"
                                                        className="mb-4 w-full"
                                                        label="Họ và tên *"
                                                        onChange={handleChange}
                                                        type="text"
                                                        name="full_name"
                                                        value={full_name || ''}
                                                        validators={[
                                                            'required',
                                                        ]}
                                                        errorMessages={[
                                                            'Không được để trống trường này',
                                                        ]}
                                                    />
                                                </Grid>
                                                <Grid item md={6} xs={12}>
                                                    <TextValidator
                                                        variant="outlined"
                                                        className="mb-4 w-full"
                                                        label="Email *"
                                                        onChange={handleChange}
                                                        type="text"
                                                        name="email"
                                                        value={email || ''}
                                                        validators={[
                                                            'required',
                                                            'isEmail',
                                                        ]}
                                                        errorMessages={[
                                                            'Không được để trống trường này',
                                                            'Email không hợp lệ',
                                                        ]}
                                                    />
                                                </Grid>
                                                <Grid item md={6} xs={12}>
                                                    <TextValidator
                                                        variant="outlined"
                                                        className="mb-4 w-full"
                                                        label="Số điện thoại *"
                                                        onChange={handleChange}
                                                        type="text"
                                                        name="phone"
                                                        value={phone || ''}
                                                        validators={[
                                                            'required',
                                                            'isNumber',
                                                            'minStringLength:10',
                                                            'maxStringLength:15',
                                                        ]}
                                                        errorMessages={[
                                                            'Không được để trống trường này',
                                                            'Trường này phải nhập số ',
                                                            'Số điện thoại phải có ít nhất 10 chữ số',
                                                            'Số điện thoại nhiều nhất chỉ có 15 chữ số',
                                                        ]}
                                                    />
                                                </Grid>
                                                <Grid item md={6} xs={12}>
                                                    <TextValidator
                                                        variant="outlined"
                                                        className="mb-4 w-full"
                                                        label="Địa chỉ *"
                                                        onChange={handleChange}
                                                        type="text"
                                                        name="address"
                                                        value={address || ''}
                                                        validators={[
                                                            'required',
                                                        ]}
                                                        errorMessages={[
                                                            'Không được để trống trường này',
                                                        ]}
                                                    />
                                                </Grid>
                                                <Grid
                                                    container
                                                    justify={'flex-end'}
                                                    item
                                                    xs={12}
                                                >
                                                    <Link to="/dashboard">
                                                        <Button
                                                            style={{
                                                                marginRight: 20,
                                                            }}
                                                            color="inherit"
                                                            variant="contained"
                                                        >
                                                            <span className="capitalize">
                                                                Quay li
                                                            </span>
                                                        </Button>
                                                    </Link>
                                                    <Button
                                                        color="primary"
                                                        variant="contained"
                                                        type="submit"
                                                    >
                                                        <span className="capitalize">
                                                            Lưu
                                                        </span>
                                                    </Button>
                                                </Grid>
                                            </Grid>
                                        </CardContent>
                                    </ValidatorForm>
                                </SimpleCard>
                            </Grid>
                        </Grid>
                    </Container>
                </Box>
            </div>
        </div>
    )
}

const mapStateToProps = (state) => {
    return {}
}
export default connect(mapStateToProps, { showLoading, hideLoading })(Profile)