web-dev-qa-db-ja.com

reactstrapドロップダウンで選択したアイテムを設定するにはどうすればよいですか?

Reactstrapドロップダウンで選択したアイテムを設定するにはどうすればよいですか?

ドロップダウンの例があります: https://reactstrap.github.io/components/dropdowns/

ドロップダウンで項目を選択すると、表示されません。

*******************実用的なソリューション********************************

import React from "react";
import {ButtonDropdown, DropdownItem, DropdownMenu, DropdownToggle} from "reactstrap";
import superagent from "superagent";

class BootstrapSelect extends React.Component {

    constructor(props) {
        super(props);

        this.toggle = this.toggle.bind(this);
        this.changeValue = this.changeValue.bind(this);
        this.state = {
            actions: [],
            dropDownValue: 'Select action',
            dropdownOpen: false
        };
    }

    toggle(event) {

        this.setState({
            dropdownOpen: !this.state.dropdownOpen
        });
    }

    changeValue(e) {
        this.setState({dropDownValue: e.currentTarget.textContent});
        let id = e.currentTarget.getAttribute("id");
        console.log(id);
    }


    componentDidMount() {
        superagent
            .get('/getActions')
            .type('application/json; charset=utf-8')
            .end(function (err, res) {
                console.log(res.body);
                this.setState({actions: res.body});
            }.bind(this));

    }

    render() {
        return (
            <ButtonDropdown isOpen={this.state.dropdownOpen} toggle={this.toggle}>
                <DropdownToggle caret>
                    {this.state.dropDownValue}
                </DropdownToggle>
                <DropdownMenu>
                    {this.state.actions.map(e => {
                        return <DropdownItem id={e.id} key={e.id} onClick={this.changeValue}>{e.name}</DropdownItem>
                    })}
                </DropdownMenu>

            </ButtonDropdown>
        );
    }

}

export default BootstrapSelect;
12
user657009

DropDownItemのondivを(div内に)追加して、状態を変更します。クリックイベントから「dropDownValue」を設定します。 dropDownToggleで、state.dropDownValueを取得します。

このようなもの :

changeValue(e) {
  this.setState({dropDownValue: e.currentTarget.textContent})
}

<DropdownToggle caret>
    {this.state.dropDownValue}
</DropdownToggle>
<DropdownItem>
    <div onClick={this.changeValue}>Another Action</div>
</DropdownItem>

もちろん、これを初期化し、これが機能するように関数をバインドすることを忘れないでください。

17
Nevosis

@Nevosisソリューションと同様に、値属性を追加して、「onChange」イベントで後で取得できます。

    onDropdownItem_Click = (sender) => {
    var icon = sender.currentTarget.querySelector("i");
    var newState = {
      dropDownValue: sender.currentTarget.getAttribute("dropdownvalue"),
      dropDownIcon: !!icon && icon.getAttribute("class")
    };

    this.setState(newState);
    if (!!this.props.onChange) {
      this.props.onChange(newState.dropDownValue);
    }    
}

  render = () => (
    <Dropdown isOpen={this.state.dropDownOpen} toggle={this.toggle} className={'ticket-module-selector ' + this.props.className}>
      <DropdownToggle color={this.props.color} caret>
        <i className={this.state.dropDownIcon}></i>{this.state.dropDownValue}
      </DropdownToggle>
      <DropdownMenu>
        <DropdownItem onClick={this.onDropdownItem_Click} dropDownValue="Allotments"><i className="fa fa-plane fa-fw"></i>Allotments</DropdownItem>
        <DropdownItem onClick={this.onDropdownItem_Click} dropDownValue="GeoAMS"><i className="fa fa-envelope fa-fw"></i>GeoAMS</DropdownItem>
        <DropdownItem onClick={this.onDropdownItem_Click} dropDownValue="QIS"><i className="fa fa-money fa-fw"></i>BSP</DropdownItem>
        <DropdownItem onClick={this.onDropdownItem_Click} dropDownValue="QIS"><i className="fa fa-clock-o fa-fw"></i>QIS</DropdownItem>
        <DropdownItem onClick={this.onDropdownItem_Click} dropDownValue="NO_SHOW"><i className="fa fa-car fa-fw"></i>NO SHOW</DropdownItem>
      </DropdownMenu>
    </Dropdown>
}