很明显,这是一个非常菜鸟的问题,但是我被卡住了,所以请帮忙!
在我的MenuWithDropdown组件中,创建了许多下拉菜单。下拉菜单应使用handleClick()函数触发。我想要实现的目标通常是借助this.state.isActive和三元运算符实现的:
className={this.state.isActive ? "dropdown is-active" : "dropdown"}
但是,我不知道如何仅触发一个下拉菜单(例如3)。我应该让state.isActive1,state.isActive2,state.isActive3以及稍后以handleClick(key)方式访问它们吗?或者我应该访问通过地图获取的dropdown的关键属性,例如if(Dropdown.key === 3)setState(isActive:true)
class MenuWithDropdown extends React.Component {
state = {
isActive: false
};
render() {
const { Menu } = this.props;
const items = Menu.map((menuitem, key) => (
<Fragment key={key}>
<hr className="dropdown-divider" />
<div key={key} className="dropdown is-left">
<div className="dropdown-header">
<NavLink to={menuitem.url}>
<span>{this.context.t(menuitem.name)}</span>
</NavLink>
<FontAwesomeIcon icon="chevron-down" size="2x" />
</div>
<div className="dropdown-menu">
<DropdownItem children={menuitem.children} />
</div>
</div>
</Fragment>
));
return <Fragment>{items}</Fragment>;
}
handleClick = (e, key) => {
e.preventDefault();
this.setState({
isActive: true
});
};
}
答案 0 :(得分:1)
我设计此菜单的方式基本上是这样的:
(查看此工作示例:https://stackblitz.com/edit/toggling-menus)
在我的App组件内部,我处于menus
状态,在其中存储每个菜单的数据。
在componentDidMount
上,我生成菜单,并通过道具将状态传递给MenusContainer。
class App extends Component {
constructor() {
super();
this.state = {
menus: []
};
}
componentDidMount(){
const menus = [
{
id: 1,
title: 'Menu one',
content: 'some content for menu 1'
},
{
id: 2,
title: 'Menu two',
content: 'some content for menu 2'
},
{
id: 3,
title: 'Menu three',
content: 'some content for menu 3'
}
];
this.setState({menus})
}
render() {
return (
<div>
<MenusContainer menus={this.state.menus}/>
</div>
);
}
}
MenusContainer将负责呈现菜单,迭代其menus
属性并设置当前菜单。
为此,它将具有currentMenu
状态和setMenu方法,将它们作为道具传递给从DropdownMenu
渲染的props.menus
子代。
export default class MenusContainer extends React.Component {
constructor(props) {
super();
this.state = {
currentMenu: -1,
}
}
setMenu = (id) => {
if(id === this.state.currentMenu) {
this.setState({currentMenu: -1})
} else {
this.setState({currentMenu: id})
}
}
render() {
return <div id='container'>
{this.props.menus.map((menu, i) => {
return <DropdownMenu
key={i}
data={menu}
currentItem={this.state.currentMenu}
setMenuCallback={this.setMenu}
/>
})}
</div>
}
}
DropdownMenu将(从props中)知道当前正在请求哪个菜单,并将触发一种方法以从其props中将其自身设置为当前菜单。
请注意,菜单将根据props.currentItem
conditionally render的内容。
export default class DropdownMenu extends React.Component {
toggleSelf = () => {
const {id} = this.props.data;
this.props.setMenuCallback(id)
}
render() {
return <div className='menu-item' onClick={this.toggleSelf}>
<h1>{this.props.data.title}</h1>
{
this.props.currentItem === this.props.data.id ?
<div>{this.props.data.content}</div> : null
}
</div>
}
}
答案 1 :(得分:1)
执行此操作的最好和最简单的方法之一是存储从.map函数在menuWithDropDown状态中单击的DropDownItem的索引(键),然后为DropDownItem提供一个道具,以便它检查是否根据与菜单状态项索引(您之前存储的)具有相同索引的条件,它应该打开还是不打开。 这是您的代码版本,可完成与上述相同的操作:(希望有帮助)
class MenuWithDropdown extends React.Component {
state = {
activeItemKey: '',
};
render() {
const { Menu } = this.props;
const items = Menu.map((menuitem, key) => (
<Fragment key={key}>
<hr className="dropdown-divider" />
<div key={key} className="dropdown is-left">
<div className="dropdown-header">
<NavLink to={menuitem.url}>
<span>{this.context.t(menuitem.name)}</span>
</NavLink>
<FontAwesomeIcon icon="chevron-down" size="2x" />
</div>
<div className="dropdown-menu">
<DropdownItem shouldOpen={this.state.activeItemKey === key} onClick={()=>{this.handleClick(key)}} children={menuitem.children} />
</div>
</div>
</Fragment>
));
return <Fragment>{items}</Fragment>;
}
handleClick = (key) => {
this.setState({
activeItemKey: key
});
};
}
答案 2 :(得分:0)
好的,感谢Mehrnaz.sa,解决方案非常简单,可以将活动密钥存储在状态中,而不是用于打开或关闭下拉列表的true-false布尔值。
工作代码:
class MenuWithDropdown extends React.Component {
state = {
activeKey: 0
}
render() {
const { Menu } = this.props
const items = Menu.map((menuitem, key) =>
<Fragment key={key}>
<hr className="dropdown-divider" />
<div key={key}
className={this.state.activeKey === key ? "dropdown is-left is-active" : "dropdown is-left"}>
<div className="dropdown-header">
<NavLink to={menuitem.url}>
<span>{this.context.t(menuitem.name)}</span>
</NavLink>
//clicking on this icon trigger the dropdown
<FontAwesomeIcon icon="chevron-down" size="2x" onClick={e => {this.handleClick(e, key)}}/>
</div>
<div className="dropdown-menu">
// this is just a text, links to other parts of an app
<DropdownItem children={menuitem.children} />
</div>
</div>
</Fragment>
)
return (
<Fragment>
{items}
</Fragment>
)
}
handleClick = (e, key) => {
e.preventDefault()
this.setState({
activeKey: key
})
}
}