import React from 'react'; import {Avatar, Badge, withStyles} from '@material-ui/core/'; import { makeStyles } from '@material-ui/core/styles'; import Button from '@material-ui/core/Button/Button'; import { User } from 'which-types'; import CameraAltIcon from '@material-ui/icons/CameraAlt'; interface PropTypes { user: User | undefined; logOut: () => void; } const useStyles = makeStyles({ avatar: { width: 150, height: 150, margin: '0 auto' }, name: { fontSize: 20, textAlign: 'center', margin: '10px 0' }, profileMenu: { display: 'flex', width: '100%', height: 50, borderBottom: '1px solid lightgray', margin: '50px 0' }, menuButton: { width: 200, height: 50, paddingTop: 15, textAlign: 'center' }, badge: { backgroundColor: 'lightgray' }, avatarContainer: { position: 'relative', textAlign: 'center' } }); const StyledBadge = withStyles((theme) => ({ badge: { backgroundColor: 'lightgray', width: 40, height: 40, borderRadius: '50%', cursor: 'pointer' }, }))(Badge); const ProfileInfo: React.FC = ({ user, logOut }) => { const classes = useStyles(); return (
{ user?._id === localStorage.getItem('userId') ?
} >
: }
{user?.username}
Polls
Followers
Following
{ user?._id === localStorage.getItem('userId') ? : null }
); }; export default ProfileInfo;