简体   繁体   中英

React with Antd Component Modal Form with state issue

I can't figure out what is the right way to handle this -> I am beginner in React , so if this looks absurd, maybe I got this wrong.

I have a React component - which is a table/list with a list of Tasks


  showModal = () => {
    this.setState({
      visible: true,
    });
  };
.
render() {
return ( 
<Table />

        <Button type="primary" onClick={this.showModal}>
          Add New Task
        </Button>
<CRTaskForm
        visible={this.state.visible} />

I have another React component CRTaskForm - which is basically a Modal Form to add Tasks

Now, my issue is 1. I want to handle the onSubmit in CRTaskForm - and close the form when the Task is created - there is a separate handler in CRTaskForm onSubmit(e) { .. } which handles sending the create task via REST to the server.

How do I close the Modal form in the onSubmit .. the "visible" props is not present in the CRTaskForm.

I would create a function which closes the modal and pass it to the form as a prop:

closeModal = () => {
  this.setState({
   visible: false
})
}

...

<CRTaskForm visible={this.state.visible} closeModal={this.closeModal}/>

And just call it in your submit function.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM