javascript - React render based on OR operator - Stack Overflow

I'm creating a menu that shows items based on user roles. Some items must show if role is A OR B,

I'm creating a menu that shows items based on user roles.

Some items must show if role is A OR B, but I cant make this work.

Code example :

      {
       (this.props.currentUser.role === 'admin') || ( this.props.currentUser.role === 'contra')  &&
        <Dropdown item text='ADMIN'>
          <Dropdown.Menu>
            {
              this.props.currentUser.role === 'admin' &&
            <div>
              <Dropdown.Item>
                <Link to="/panies/list">Companies</Link>
              </Dropdown.Item>
              <Dropdown.Item>
                <Link to="/obs-report">Obs Report</Link>
              </Dropdown.Item>
            </div>
            }
            <Dropdown.Item>
              <Link to="/users/list">Users</Link>
            </Dropdown.Item>
          </Dropdown.Menu>
        </Dropdown>
      }

This shows properly items only for "contra" role, not sure about why is not working with 'admin' role.

Tried with this too with no success :

this.props.currentUser.role === ('admin' || 'contra')

I'm creating a menu that shows items based on user roles.

Some items must show if role is A OR B, but I cant make this work.

Code example :

      {
       (this.props.currentUser.role === 'admin') || ( this.props.currentUser.role === 'contra')  &&
        <Dropdown item text='ADMIN'>
          <Dropdown.Menu>
            {
              this.props.currentUser.role === 'admin' &&
            <div>
              <Dropdown.Item>
                <Link to="/panies/list">Companies</Link>
              </Dropdown.Item>
              <Dropdown.Item>
                <Link to="/obs-report">Obs Report</Link>
              </Dropdown.Item>
            </div>
            }
            <Dropdown.Item>
              <Link to="/users/list">Users</Link>
            </Dropdown.Item>
          </Dropdown.Menu>
        </Dropdown>
      }

This shows properly items only for "contra" role, not sure about why is not working with 'admin' role.

Tried with this too with no success :

this.props.currentUser.role === ('admin' || 'contra')
Share Improve this question edited May 28, 2024 at 16:34 Pavel Fedotov 8851 gold badge8 silver badges35 bronze badges asked Mar 14, 2018 at 6:09 llermalyllermaly 2,5103 gold badges19 silver badges35 bronze badges 3
  • check by enclosing (this.props.currentUser.role === 'admin') || ( this.props.currentUser.role === 'contra') with another paranthesis like ((this.props.currentUser.role === 'admin') || ( this.props.currentUser.role === 'contra')) && .... – G_S Commented Mar 14, 2018 at 6:14
  • Yes!, just noted that. Thanks for your answer – llermaly Commented Mar 14, 2018 at 6:15
  • happy that you noted that – G_S Commented Mar 14, 2018 at 6:15
Add a ment  | 

1 Answer 1

Reset to default 10

Forgot to wrap :)

((this.props.currentUser.role == 'admin') || ( this.props.currentUser.role == 'contra'))  &&

hope it helps somebody

Thanks!

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743626267a4480586.html

相关推荐

  • javascript - React render based on OR operator - Stack Overflow

    I'm creating a menu that shows items based on user roles. Some items must show if role is A OR B,

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信