javascript – 关闭React语义UI模式与按钮和关闭图标

前端之家收集整理的这篇文章主要介绍了javascript – 关闭React语义UI模式与按钮和关闭图标前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个模态,用户需要填写一些表格,并通过模态中的按钮保存填写的内容.当用户保存时,我希望关闭模态.通过使用Modal组件上的open prop,我可以完成这项工作.但是,如果我这样做,当我尝试通过closeIcon时,模态不会关闭.

我该怎么做才能让用户通过这两种方法关闭Modal?

这是我目前的模态代码

  1. handleCreateButton (evt) {
  2. evt.preventDefault()
  3. // ...
  4. // code to save whatever was typed in the form
  5. // ...
  6.  
  7. this.setState({showModal: false})
  8. }
  9.  
  10. renderModalForm () {
  11. const {
  12. something,showModal
  13. } = this.state
  14.  
  15. // if I have the open props,I get to close the Modal after the button is clicked
  16. // however,when using the icon or clicking on dimmer it wont work anymore.
  17. return (
  18. <Modal closeIcon cloSEOnDimmerClick open={showModal} trigger={<Button onClick={() => this.setState({showModal: true})}><Icon className='plus'/>New Challenge</Button>}>
  19. <Modal.Header>My Modal</Modal.Header>
  20. <Modal.Content>
  21. <Form>
  22. <Form.Input
  23. label='Something'
  24. value={something}
  25. onChange={(evt) => this.handleChangeForms('something',evt.target.value)}
  26. />
  27. <Button onClick={(evt) => this.handleCreateButton(evt)}>Save</Button>
  28. </Form>
  29. </Modal.Content>
  30. </Modal>
  31. )
  32. }

解决方法

当你使用open prop时,你也需要使用onClose处理程序prop.
顺便说一下,cloSEOnDimmerClick默认设置为true.

这是一个运行的例子:

  1. const { Modal,Form,Button,Icon } = semanticUIReact;
  2.  
  3. class App extends React.Component {
  4.  
  5. constructor(props) {
  6. super(props);
  7. this.state = {
  8. something: '',showModal: false
  9. }
  10. }
  11.  
  12. handleChangeForms = (e,{ value }) => {
  13. this.setState({ something: value });
  14. }
  15.  
  16. handleCreateButton(evt) {
  17. evt.preventDefault()
  18. this.closeModal();
  19. }
  20.  
  21. closeModal = () => {
  22. this.setState({ showModal: false })
  23. }
  24.  
  25. render() {
  26. const {
  27. something,showModal
  28. } = this.state
  29.  
  30. return (
  31. <Modal closeIcon onClose={this.closeModal} open={showModal} trigger={<Button onClick={() => this.setState({ showModal: true })}><Icon className='plus' />New Challenge</Button>}>
  32. <Modal.Header>My Modal</Modal.Header>
  33. <Modal.Content>
  34. <Form>
  35. <Form.Input
  36. label='Something'
  37. value={something}
  38. onChange={this.handleChangeForms}
  39. />
  40. <Button onClick={(evt) => this.handleCreateButton(evt)}>Save</Button>
  41. </Form>
  42. </Modal.Content>
  43. </Modal>
  44. )
  45. }
  46. }
  47.  
  48. ReactDOM.render(<App />,document.getElementById("root"));
  1. <link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.9/semantic.min.css" rel="stylesheet"/>
  2. <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
  3. <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
  4. <script src="https://cdn.jsdelivr.net/npm/semantic-ui-react@0.77.1/dist/umd/semantic-ui-react.min.js"></script>
  5. <div id="root"></div>

猜你在找的JavaScript相关文章