如何在 .map 中创建的一堆其他下拉菜单中只触发一个下拉菜单
How to trigger just one dropdown among bunch of others created inside .map
显然,这是一个非常菜鸟的问题,但我被卡住了,所以请帮忙!
在我的 MenuWithDropdown 组件中,我创建了一堆下拉菜单。应该使用 handleClick() 函数触发下拉菜单。我想要实现的目标通常是在 this.state.isActive 和三元运算符的帮助下完成的:
className={this.state.isActive ? "dropdown is-active" : "dropdown"}
但是,我不明白怎么可能只触发一个下拉菜单(例如数字 3)。我应该制作 state.isActive1、state.isActive2、state.isActive3 并稍后在 handleClick(key) 中以某种方式访问它们吗?或者我应该访问下拉菜单的键 属性,它通过地图获取,例如 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
});
};
}
我设计这个菜单的方式,基本上是这样的:
(看看这个工作示例:https://stackblitz.com/edit/toggling-menus)
在我的 App 组件中,我有一个 menus
状态,我在其中存储每个菜单的数据。
在 componentDidMount
我生成菜单并通过 props 将状态传递给 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 方法将它们作为道具传递给从 props.menus
.
渲染的 DropdownMenu
子级
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 将自己设置为当前菜单。
请注意,菜单将 conditionally render 其内容根据 props.currentItem
.
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>
}
}
最好和最简单的方法之一是从 .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
});
};
}
好的,解决方案,感谢 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
})
}
}
显然,这是一个非常菜鸟的问题,但我被卡住了,所以请帮忙!
在我的 MenuWithDropdown 组件中,我创建了一堆下拉菜单。应该使用 handleClick() 函数触发下拉菜单。我想要实现的目标通常是在 this.state.isActive 和三元运算符的帮助下完成的:
className={this.state.isActive ? "dropdown is-active" : "dropdown"}
但是,我不明白怎么可能只触发一个下拉菜单(例如数字 3)。我应该制作 state.isActive1、state.isActive2、state.isActive3 并稍后在 handleClick(key) 中以某种方式访问它们吗?或者我应该访问下拉菜单的键 属性,它通过地图获取,例如 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
});
};
}
我设计这个菜单的方式,基本上是这样的:
(看看这个工作示例:https://stackblitz.com/edit/toggling-menus)
在我的 App 组件中,我有一个 menus
状态,我在其中存储每个菜单的数据。
在 componentDidMount
我生成菜单并通过 props 将状态传递给 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 方法将它们作为道具传递给从 props.menus
.
DropdownMenu
子级
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 将自己设置为当前菜单。
请注意,菜单将 conditionally render 其内容根据 props.currentItem
.
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>
}
}
最好和最简单的方法之一是从 .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
});
};
}
好的,解决方案,感谢 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
})
}
}