diff options
author | eug-vs <eug-vs@keemail.me> | 2020-07-04 00:35:39 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-07-04 00:35:39 +0300 |
commit | a56ed602a4149a3e19ac58c84c51e0eb108358c2 (patch) | |
tree | 0e3d9dc1507a218bfb5eccd291edd5c2e4a1703b /src/pages/ProfilePage/ProfileInfo.tsx | |
parent | 1109b6a11db65e6ef87b2590ffcc3b8df2b4de31 (diff) | |
download | which-ui-a56ed602a4149a3e19ac58c84c51e0eb108358c2.tar.gz |
fix: display skeleton correctly
Diffstat (limited to 'src/pages/ProfilePage/ProfileInfo.tsx')
-rw-r--r-- | src/pages/ProfilePage/ProfileInfo.tsx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/pages/ProfilePage/ProfileInfo.tsx b/src/pages/ProfilePage/ProfileInfo.tsx index db467a1..e4ef66a 100644 --- a/src/pages/ProfilePage/ProfileInfo.tsx +++ b/src/pages/ProfilePage/ProfileInfo.tsx @@ -16,7 +16,7 @@ interface PropTypes { totalVotes: number; userInfo: User | undefined; setUserInfo: (userInfo: User) => void; - loading: boolean; + isLoading: boolean; } const useStyles = makeStyles(theme => ({ @@ -83,7 +83,7 @@ const useStyles = makeStyles(theme => ({ const ProfileInfo: React.FC<PropTypes> = ({ - savedPolls, totalVotes, setUserInfo, userInfo, loading + savedPolls, totalVotes, setUserInfo, userInfo, isLoading }) => { const classes = useStyles(); const [input, setInput] = useState(false); @@ -105,7 +105,7 @@ const ProfileInfo: React.FC<PropTypes> = ({ return ( <div className={classes.root}> { - loading + isLoading ? <Skeleton animation="wave" variant="circle" width={150} height={150} className={classes.avatar} /> : userInfo?._id === localStorage.getItem('userId') ? ( @@ -133,7 +133,7 @@ const ProfileInfo: React.FC<PropTypes> = ({ : <Avatar className={classes.avatar} src={userInfo?.avatarUrl} /> } { - loading + isLoading ? <Skeleton animation="wave" variant="rect" width={100} height={20} className={classes.skeleton} /> : ( <Typography variant="h5" className={classes.name}> @@ -144,19 +144,19 @@ const ProfileInfo: React.FC<PropTypes> = ({ } <div className={classes.profileMenu}> { - !loading + isLoading ? ( <> - <Highlight text="Polls" value={savedPolls} /> - <Highlight text="Since" value={dateSince} /> - <Highlight text="Total votes" value={totalVotes} /> + <Skeleton animation="wave" variant="rect" width={170} height={20} className={classes.skeleton} /> + <Skeleton animation="wave" variant="rect" width={170} height={20} className={classes.skeleton} /> + <Skeleton animation="wave" variant="rect" width={170} height={20} className={classes.skeleton} /> </> ) : ( <> - <Skeleton animation="wave" variant="rect" width={170} height={20} className={classes.skeleton} /> - <Skeleton animation="wave" variant="rect" width={170} height={20} className={classes.skeleton} /> - <Skeleton animation="wave" variant="rect" width={170} height={20} className={classes.skeleton} /> + <Highlight text="Polls" value={savedPolls} /> + <Highlight text="Since" value={dateSince} /> + <Highlight text="Total votes" value={totalVotes} /> </> ) } |