我尝试使用带有 react-grid-layout 的自定义组件。但是,我无法让它工作。当我将组件放在 div 中时,我可以调整该 div 的大小,但组件本身不会随之调整大小。当我将组件直接放在网格标签内时,我根本无法调整大小或移动它,并且网格的边框也不匹配组件的边框。
这是我的 index.js 的代码:
function App() {
return (
<div className="App" style={{ background: "grey" }}>
<GridLayout className="layout" cols={16} rowHeight={10} width={500}>
<div key="a" data-grid={{ x: 0, y: 0, w: 5, h: 10 }}>
<TestComponent
style={{
color: "green",
height: "auto",
width: "auto",
background: "red"
}}
/>
</div>
<div
key="b"
data-grid={{ x: 5, y: 0, w: 3, h: 3 }}
style={{ background: "green" }}
>
this works fine
</div>
<TestComponent
key="c"
data-grid={{ x: 1, y: 0, w: 2, h: 2 }}
style={{
color: "blue",
height: "auto",
width: "auto",
background: "black"
}}
/>
</GridLayout>
</div>
);
}
我已经在代码沙箱上上传了完整的示例,包括 TestComponent: https ://codesandbox.io/s/7zl7mm90m0
如何在网格上正确实现自定义组件?
此致,
W。