我有两个下拉菜单作为组件传递给组件。我可以用单独的状态来控制两者,但我认为这可以用一个状态来完成?
标题
import React from 'react';
import DarkLabel from './DarkLabel';
import HeaderDropdown from './HeaderDropdown';
export default class Header extends React.Component {
componentWillMount() {
this.setState({
listOpen: false
})
}
render() {
...
return (
<div className="row header">
<div className="col-xs-10">
<DarkLabel classExtra="dark-label-lg" icon="/images/system-icons/document_empty.png"
content={taskCode}/>
<DarkLabel classExtra="dark-label-2x dark-label-lg" icon="/images/system-icons/building.png"
dropdown=<HeaderDropdown data={this.props.enquiry.entity ? this.props.enquiry.entity : null}/>
content={this.props.enquiry.entity ? this.props.enquiry.entity.name : 'ERROR'}
right_icon="/images/system-icons/bullet_arrow_down.png"/>
<DarkLabel classExtra="dark-label-md" icon="/images/system-icons/ceo.png"
dropdown=<HeaderDropdown data={this.props.enquiry.contact ? this.props.enquiry.contact : null}/>
content={this.props.enquiry.contact ? this.props.enquiry.contact.firstName + ' ' + this.props.enquiry.contact.lastName : '-'}
right_icon="/images/system-icons/bullet_arrow_down.png"/>
<DarkLabel classExtra="flag"
content={'/images/flags/large/'+this.props.enquiry.entity.country.countryCode+'.png'}
right_icon="/images/system-icons/cog.png" right_icon_callback={this.handleAddressModal.bind(this)}/>
</div>
</div>
)
}
}
HeaderDropdown
从“反应”导入反应;
export default class HeaderDropdown extends React.Component {
componentWillMount() {
}
render() {
return (
<div>
<div className="dark-label-dropdown">
Test
</div>
</div>
);
}
}
我怎样才能使它一次只能打开一个并在单击另一个时关闭所有其他?当我将点击事件绑定到 HeaderDropdown 时,是否需要存储“this”中的某些内容?
我错过了这个问题的一些东西。这需要在用户单击 DarkLabel 中的 right_icon 时发生。
暗标
import React from 'react';
export default class DarkLabel extends React.Component {
componentWillMount() {
}
truncate(limit) {
...
}
render() {
var icon = '', content = '';
var rightIcon = '';
...
return (
<div className={'pull-left dark-label-wrapper '+this.props.classExtra}>
{icon}
<div>{content}</div>
{rightIcon}
{this.props.dropdown}
</div>
);
}
}