web-dev-qa-db-fra.com

Comment définir l'élément sélectionné dans la liste déroulante de Reactrap?

Comment définir l'élément sélectionné dans la liste déroulante de Reactrap?

Voici un exemple de liste déroulante: https://reactstrap.github.io/components/dropdowns/

Lorsque je sélectionne un élément dans la liste déroulante, il ne s'affiche pas.

******************** Solution de travail ****************************

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;
6
user657009

Ajoutez un onclick sur votre DropDownItem (à l'intérieur d'un div?) Pour changer votre état. Définissez une "dropDownValue" à partir de votre événement click. Dans votre dropDownToggle, obtenez votre state.dropDownValue.

Quelque chose comme ça :

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

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

Bien sûr, n'oubliez pas de l'initialiser et de lier la fonction pour que cela fonctionne.

10
Nevosis

Semblable à la solution @Nevosis, vous pouvez ajouter un attribut value et l’obtenir ensuite à l’événement "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>
}