3

Whenever I'm trying to post new Screams in my page. I'm not getting the image, title and content of the card. I need to reload to get that.

It is saying failed prop types means after posting a scream I'm not getting the value from prop types but after a reload, everything seems to be fine. I don't know what is wrong is going. Please have a look at my code.

This is my Screams.js from where i'm showing my Screams

Scream.js

    const styles = {
      card: {
        position: "relative",
        display: "flex",
        marginBottom: 20,
      },
      image: {
        minWidth: 150,
      },
      content: {
        padding: 25,
        objectFit: "cover",
      },
    };
    class Scream extends Component {
      render() {
        dayjs.extend(relativeTime);
        const {
          classes,
          scream: {
            body,
            createdAt,
            userImage,
            userHandle,
            screamId,
            likeCount,
            commentCount,
          },
          user: {
            authenticated,
            credentials: { handle },
          },
        } = this.props;
    
        const deleteButton =
          authenticated && userHandle === handle ? (
            <DeleteScream screamId={screamId} />
          ) : null;
    
        const likeButton = !authenticated ? (
          <Link to="/login">
            <MyButton tip="Like">
              <FavoriteBorder color="primary" />
            </MyButton>
          </Link>
        ) : this.likedScream() ? (
          <MyButton tip="Undo like" onClick={this.unlikeScream}>
            <FavoriteIcon color="primary" />
          </MyButton>
        ) : (
          <MyButton tip="Like" onClick={this.likeScream}>
            <FavoriteBorder color="primary" />
          </MyButton>
        );
    
        return (
          <Card className={classes.card}>
            <CardMedia
              image={userImage}
              title="Profile Image"
              className={classes.image}
            />
            <CardContent className={classes.content}>
              <Typography variant="h5" component={Link} to={`/users/${userHandle}`}>
                {userHandle}
              </Typography>
              {deleteButton}
              <Typography variant="body2" color="textSecondary">
                {dayjs(createdAt).fromNow()}
              </Typography>
              <Typography variant="body1">{body}</Typography>
              {likeButton}
              <span> {likeCount} Likes </span>
              <MyButton tip="comments">
                <ChatIcon color="primary" />
              </MyButton>
              <span> {commentCount} Comments </span>
            </CardContent>
          </Card>
        );
      }
    }
    
    Scream.propTypes = {
      likeScream: PropTypes.func.isRequired,
      unlikeScream: PropTypes.func.isRequired,
      user: PropTypes.object.isRequired,
      scream: PropTypes.object.isRequired,
      classes: PropTypes.object.isRequired,
    };
    
    const mapStateToprops = (state) => ({
      user: state.user,
    });
    
    const mapActionToProps = {
      likeScream,
      unlikeScream,
    };
    
    export default connect(
      mapStateToprops,
      mapActionToProps
    )(withStyles(styles)(Scream));

As u can see i have userImage, userHandle and body of the card in the props and it is showing it on my page.

But after posting a new Scream, i'm not getting the image, userHandle and body of the new Scream unless and until reload it.

PostScream.js

class PostScream extends Component {
    state = {
        open: false,
        body: "",
        errors: {}
    }

    componentWillReceiveProps(nextProps) {
        if(nextProps.UI.errors) {
            this.setState({
                errors: nextProps.UI.errors
            });
        }
        if(!nextProps.UI.errors && !nextProps.UI.loading) {
            this.setState({
                body: "",
                open: false,
                errors: {}
            })
        }
    }

    handleOpen = () => {
        this.setState({ open: true })
    };

    handleClose = () => {
        this.props.clearErrors();
        this.setState({ open: false, errors: {} });
    };

    handleChange = (event) => {
        this.setState({ [event.target.name]: event.target.value })
    }

    handleSubmit = (event) => {
        event.preventDefault();
        this.props.postScream({ body: this.state.body })
    }

    render() {
        const { errors } = this.state;
        const { classes, UI: { loading }} = this.props;
        return (
            <Fragment>
                <MyButton onClick= { this.handleOpen } tip="Post a Scream!">
                    <AddIcon />
                </MyButton>

                <Dialog
                    open= { this.state.open } 
                    onClose= { this.handleClose }
                    fullWidth
                    maxWidth = "sm"
                >
                    <MyButton
                        tip="Close"
                        onClick={this.handleClose}
                        tipClassName={classes.closeButton}
                    >
                        <CloseIcon />
                    </MyButton>

                    <DialogTitle> Post a new Scream </DialogTitle>
                    <DialogContent>
                        <form onSubmit= { this.handleSubmit }>
                            <TextField
                                name="body"
                                type="text"
                                label="SCREAM!"
                                multiline
                                rows="3"
                                placeholder= "What's on your mind!"
                                error={ errors.body ? true: false }
                                helperText={ errors.body }
                                className={classes.TextField}
                                onChange={ this.handleChange }
                                fullWidth
                            />

                            <Button 
                                type="submit"
                                variant="contained"
                                color="primary"
                                className={classes.submitButton}
                                disabled={ loading }
                            >   
                                Submit
                                {loading && ( 
                                    <CircularProgress size={30} className={ classes.progressSpinner } />
                                )}
                            </Button>
                        </form>
                    </DialogContent>
                </Dialog>
            </Fragment>
        )
    }
}

PostScream.propTypes = {
    postScream: PropTypes.func.isRequired,
    clearErrors: PropTypes.func.isRequired,
    UI: PropTypes.object.isRequired
}

const mapStateToProps = (state) => ({
    UI: state.UI
});

export default connect(
    mapStateToProps,
    { postScream, clearErrors }
)(withStyles(styles)(PostScream));

After posting a new Scream, i am getting Scream like this:- After Posting a new Scream

2 Answers 2

8

I was having the same issue, I was able to fix it by adding component='img' to my CardMedia.

<CardMedia
image={userImage}
title="Profile Image"
className={classes.image}
component='img'
/>
1

Specifying the component as an img "Hides" the images since CardMedia is a div and your css is applied to the div. Add component = "div" to CardMedia.

<CardMedia
image={userImage}
title="Profile Image"
className={classes.image}
component='div'
/>

Not the answer you're looking for? Browse other questions tagged or ask your own question.