我正在学习使用Material-ui和React创建一个网站。
我想创建一个可折叠的网格,其中某些行根据页面的状态折叠/展开。
当我在Grid布局中添加折叠组件时,Grid布局已损坏。
我在此处(https://codesandbox.io/embed/jolly-golick-3lwt5)创建了示例代码进行演示。
在这里,您会看到折叠的部分(当前状态为“展开”的部分未按预期显示。
我在这里做错什么了吗?
答案 0 :(得分:0)
这对我有用:
import MuiCollapse from '@material-ui/core/Collapse'
import Grid from '@material-ui/core/Grid'
const GridItemXs12 = (props) => <Grid item xs={12} {...props} />
const Collapse = (props) => {
const classes = useCollapseStyles()
return (
<MuiCollapse
component={GridItemXs12}
classes={{
hidden: classes.hidden,
}}
{...props}
>
{/* This spacing has to match with the one in the container
outside the collapse */}
<Grid container spacing={2}>
{props.children}
</Grid>
</MuiCollapse>
)
}
const useCollapseStyles = makeStyles({
hidden: {
// The grid item's padding normally balances with the negative padding
// of the container outside the Collapse.
// But when the collapse hides its content, the padding of the item
// is still taking up space, creating an unwanted space.
// The 'hidden' style rule is only applied when the collapse finishes
// hiding its content
padding: '0 !important',
},
})
然后使用此自定义Collapse
作为Grid container
的直接后代
const MyComponent = () => {
return (
<Grid container spacing={2}>
<Collapse in={/* your controlled variable */}>
<Grid item xs={12}>
The content inside this grid item looks as if the item were
directly inside the container
</Grid>
</Collapse>
</Grid>
)
}
这里是使用此方法https://codesandbox.io/s/exciting-hodgkin-rk2wv的示例代码的修改版本,我在主div中添加了onClick处理程序,以便单击其中的任何位置都可以切换折叠。
此解决方案假定您要折叠一些占用容器整个宽度的东西。它还假定您在该容器中需要一些间距(实际上,没有间距的话,网格根本不会破裂)。此外,当应用填充样式时,动画中会有一些杂音,间距越大,则越明显。
答案 1 :(得分:0)
这要简单得多,但只显示折叠动画。
<Grid item xs={3} style={{ display: showCollapse ? "block" : "none" }}>
<Collapse in={showCollapse}>
<Button>Button</Button>
</Collapse>
</Grid>