April 2020
Intermediate to advanced
716 pages
18h 55m
English
The actions section will contain an interactive "like" option with a display of the total number of likes on the post and a comment icon with the total number of comments on the post. The code to display these actions will be as follows.
mern-social/client/post/Post.js:
<CardActions> { values.like ? <IconButton onClick={clickLike} className={classes.button} aria-label="Like" color="secondary"> <FavoriteIcon /> </IconButton> : <IconButton onClick={clickLike} className={classes.button} aria-label="Unlike" color="secondary"> <FavoriteBorderIcon /> </IconButton> } <span>{values.likes}</span> <IconButton className={classes.button} aria-label="Comment" color="secondary"> <CommentIcon/> </IconButton> <span>{values.comments.length}</span> ...