gpt4 book ai didi

javascript - 如何向 React Material UI 扩展面板添加动态内容,同时一次只保留一个事件选项卡功能

转载 作者:行者123 更新时间:2023-12-03 13:52:54 27 4
gpt4 key购买 nike

我有一个 WebGL/React 项目,可以通过点击模拟数据生成用户列表。

我希望此内容出现在 Accordion 中,因为在我认为我会使用他们的扩展面板之前,我已经在 Material ui 方面拥有了良好的经验。

它可以直接从演示页面运行良好,但是如果我想映射我的用户数据库并用它填充扩展面板,它似乎摆脱了方便的功能。

我希望第一个扩展面板默认打开,然后当您单击一个面板时,任何其他面板都会关闭,这是示例中的默认行为。

Material ui example

当我传入 Prop 时

      <ExpansionPanel
square
expanded={expanded === "panel1"}
onChange={handleChange("panel1")}
>
<ExpansionPanelSummary
aria-controls="panel1d-content"
id="panel1d-header"
>
{props.country}
</ExpansionPanelSummary>
<ExpansionPanelDetails>{props.children}</ExpansionPanelDetails>
</ExpansionPanel>
</div>

然后在这里使用它......

              {users &&
users.map(user => (
<Accordion title={user.name} key={user.name}>
<div className="overlay-container">
<div className="overlay overlay-anim">
<div className="overlay-content-container">
<div className="name-container">
<h1 key={user.id} className="user_name">
{user.name}
</h1>
</div>
</div>
</div>
</div>
</Accordion>
))}

它默认打开所有面板,并且当其中一个面板处于事件状态时不会关闭其他面板。 (同样不是真实数据,gif 使它有点问题,但我无法生成示例,因为代码库太大)。

enter image description here

有人可以提供一些如何实现这一目标的想法或示例吗?

编辑

按照下面的建议,在映射函数中添加了一个 id 并调整了扩展组件,不幸的是得到了相同的效果/问题

  const [expanded, setExpanded] = React.useState("panel" + props.id);

const handleChange = panel => (event, newExpanded) => {
setExpanded(newExpanded ? panel : false);
};

return (
<div>
<ExpansionPanel
expanded={expanded === "panel" + props.i}
onChange={handleChange("panel" + props.i)}
>
<ExpansionPanelSummary
aria-controls={"panel" + props.id + "d" + "-content"}
id={"panel" + props.id + "d" + "-header"}
>
{props.country}
</ExpansionPanelSummary>
<ExpansionPanelDetails>{props.children}</ExpansionPanelDetails>
</ExpansionPanel>
</div>
);
}```

最佳答案

很难说您正在使用 ExpansionPanel 做什么,但看起来您也有相同的

<ExpansionPanel expanded={expanded === 'panel1'} onChange={handleChange('panel1')}>

对于每个面板,您都需要有唯一的名称(panel1、panel2、panel3)。

编辑:

您可以将迭代器添加到 map 函数中:

users.map((user, i) => (

我是否已传递给 ExpansionPanel 作为

的支柱
<ExpansionPanel expanded={expanded === 'panel' + props.i} onChange={handleChange('panel' + props.i)}>

编辑#2:使用工作代码更新了答案以及您的代码不起作用的原因。

主函数,注意你应该在这里添加useState并将它们交给CustomizedExpansionPanels子项。

example.jsx

import React, { useState } from 'react'
import { withStyles } from '@material-ui/core/styles'
import CustomizedExpansionPanels from './TestTab.jsx'

const styles = (theme) => ({
/* ... your styles... */
})

const users = [
{ name: '5001', color: 'green', type: 'None' },
{ name: '5002', color: 'blue', type: 'Glazed' },
{ name: '5003', color: 'red', type: 'Chocolate' },
{ name: '5004', color: 'orange', type: 'Maple' }
]

function Example(props) {
const [expanded, setExpanded] = useState('panel_0') // change 0 to the number u want to be open by default
return (
<div>
{users.map((user, i) => CustomizedExpansionPanels(user, i, expanded, setExpanded))}
<div/>
)

export default withStyles(styles, { withTheme: true })(Example)

TestTab.jsx

import React from 'react'
import { withStyles } from '@material-ui/core/styles'
import MuiExpansionPanel from '@material-ui/core/ExpansionPanel'
import MuiExpansionPanelSummary from '@material-ui/core/ExpansionPanelSummary'
import MuiExpansionPanelDetails from '@material-ui/core/ExpansionPanelDetails'
import Typography from '@material-ui/core/Typography'

const ExpansionPanel = withStyles({
root: {
border: '1px solid rgba(0, 0, 0, .125)',
boxShadow: 'none',
'&:not(:last-child)': {
borderBottom: 0,
},
'&:before': {
display: 'none',
},
'&$expanded': {
margin: 'auto',
},
},
expanded: {},
})(MuiExpansionPanel)

const ExpansionPanelDetails = withStyles((theme) => ({
root: {
padding: theme.spacing(2),
},
}))(MuiExpansionPanelDetails)

const ExpansionPanelSummary = withStyles({
root: {
backgroundColor: 'rgba(0, 0, 0, .03)',
borderBottom: '1px solid rgba(0, 0, 0, .125)',
marginBottom: -1,
minHeight: 56,
'&$expanded': {
minHeight: 56,
},
},
content: {
'&$expanded': {
margin: '12px 0',
},
},
expanded: {},
})(MuiExpansionPanelSummary)

export default function CustomizedExpansionPanels(user, id, expanded, setExpanded) {
const handleChange = (panel) => (event, newExpanded) => {
setExpanded(newExpanded ? panel : false)
}
const { name, color, type } = user

return (
<div>
<ExpansionPanel square expanded={expanded === `panel_${id}`} onChange={handleChange(`panel_${id}`)}>
<ExpansionPanelSummary aria-controls={`panel_${id}d-content`} id={`panel_${id}d-header`}>
<Typography style={{ color }}>{`Collapsible Group Item #${id}`}</Typography>
</ExpansionPanelSummary>
<ExpansionPanelDetails>
<Typography>
{`name: ${name} type: ${type}`}
</Typography>
</ExpansionPanelDetails>
</ExpansionPanel>
</div>
)
}

很难肯定地说,但看起来您正在循环创建同一个面板,其中每个面板中都存在扩展钩子(Hook),并且具有其自己的面板的值 id => 与其他面板不相关打开和关闭。您需要使用自己的变量创建每个 ExpansionPanel,并使用 1 个 Hook 来控制它们。

关于javascript - 如何向 React Material UI 扩展面板添加动态内容,同时一次只保留一个事件选项卡功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60074457/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com