How to close react native popup menu?

眉间皱痕 提交于 2019-12-11 06:20:08

问题


I'm using your react-native-popup-menu for logout button. when button clicked the authentication deleted and screen will go to login . but the menu still left.

How to close this menu when screen switched?

<Menu>
  <MenuTrigger>
    <Icon
      name='more-vert'
      color='#fff'
    />
  </MenuTrigger>
  <MenuOptions>
    <MenuOption value={1}>
      <Text onPress={() => {
        this.props.onLogout()
      }}>logout</Text>
    </MenuOption>
  </MenuOptions>
</Menu>

Originally asked by bexoss on react-native-popup-menu GitHub.


回答1:


All other answers here will work. Here is another (simpler) solution to the problem depending on what are your requirements.

You are handling logout event in Text component and therefore handlers to close menu are not triggered. Try to pass it to the onSelect property of MenuOption:

<MenuOption onSelect={() => this.props.onLogout()}>
  <Text>logout</Text>
</MenuOption>

Note: If you returned false from your handler, menu would not close.




回答2:


https://github.com/instea/react-native-popup-menu/blob/master/doc/api.md

The API document above states that there is a close() method.

So what you need to do is just declare the ref attribute to access your Menu component directly. E.g "menuRef":

<Menu uref='menuRef'>
  <MenuTrigger>
    <Icon
      name='more-vert'
      color='#fff'
    />
  </MenuTrigger>
  <MenuOptions>
    <MenuOption value={1}>
      <Text onPress={() => {
        this.props.onLogout()
      }}>logout</Text>
    </MenuOption>
  </MenuOptions>
</Menu>

and then you can simply call from any where in your current component: this.refs.menuRef.close();

This approach will also animate the closing.




回答3:


As mentioned in their documentation, you should use the visible prop in your Menu component. You will need to adapt your code like this:

<Menu opened={this.state.opened}>
  <MenuTrigger onPress={() => this.setState({ opened: true })}>
    <Icon
      name='more-vert'
      color='#fff'
    />
  </MenuTrigger>
  <MenuOptions>
    <MenuOption value={1}>
      <Text onPress={() => {
        this.props.onLogout()
        this.setState({ opened: false })
      }}>logout</Text>
    </MenuOption>
  </MenuOptions>
</Menu>

And I think you will need to define the default state of your component like this:

 constructor(props) {
   super(props)
   this.state = { opened: false }
 }

You can also find a full example here



来源:https://stackoverflow.com/questions/42780996/how-to-close-react-native-popup-menu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!