我想在React中使用React Grid Layout实现可调整大小的组件。我花了一点时间了解它的工作原理,然后将其安装到我的项目中,但由于子组件甚至没有class react-grid-item,所以我似乎无法使其工作。
我正在使用数据网格将网格道具传递给我的子组件。我看不到我做错了什么。
import React, {Component} from 'react';
import ChartHolder from '../components/charts/chart-holder';
import RGL, { WidthProvider } from "react-grid-layout";
const ReactGridLayout = WidthProvider(RGL);
class TabContent extends Component {
constructor(props){
super(props);
}
handleChartResize = (layout) => {
console.log('this is the layout', layout);
}
render(){
let tabsChartData = this.props.tabsData.currentActiveTabData[0].data;
let chartData = tabsChartData.map((data, index)=>{
return(
<ChartHolder
key={`${this.props.tabsData.currentActiveTabData[0].tab.id}_${index}`}
id={index}
position={data.position}
/>);
});
return (
<div
className="tab-content"
>
<ReactGridLayout
cols={2}
rowHeight={450}
width={1000}
onLayoutChange={this.handleChartResize}
isDraggable={false}
isResizeable={true}
>
{chartData}
</ReactGridLayout>
</div>
);
}
}
这是chartHolder组件,在其中添加了数据网格:
import React, {Component} from 'react';
import {css} from 'react-emotion';
import GridLoader from '../spinners/grid-loader';
import Plot from 'react-plotly.js';
import _ from 'lodash';
import Chart from './Chart';
import styled from 'styled-components';
const ChartChildGrid = styled.div`
background-color: white;
padding: 5px;
margin: 5px;
`;
class ChartHolder extends Component {
render() {
return(
<ChartChildGrid
index={this.props.id}
draggable={true}
onDragStart={this.handleDragStart}
onDragEnd={this.handleDragEnd}
onDragOver={this.handleDragOver}
onDragLeave={this.handleDragLeave}
onDrop={this.handleDragDrop}
data-grid={this.props.position}
>
<div
className="chart-holder-header"
>
<span
onClick={()=>this.props.handleRemoveChart(this.props.id)}
className="close-tab"
>
×
</span>
</div>
<div className="chart-holder-body" >
{_.isEmpty(this.props.data) && <GridLoader/>}
{
!_.isEmpty(this.props.data) &&
<Chart
data={this.props.data}
width={this.props.width}
/>
}
</div>
</ChartChildGrid>
);
}
}
export default ChartHolder;
我已经删除了代码的大部分专有部分,但是这无法按预期工作,因为我无法调整chartHolder组件的大小,并且甚至没有像cssTransforms这样的类,也没有像我在示例中看到的react-resizable类。 它确实可以按我期望的方式控制正确的布局,但似乎无法调整大小。
答案 0 :(得分:0)
我设法使其正常运行。如果有人面临同样的挑战,那么问题就在于,由于某种原因,react-grid-layout不接受定制组件。您必须将其包裹在div上。
https://github.com/STRML/react-grid-layout/issues/576上面的链接帮助我发现了这个问题。
答案 1 :(得分:0)
您实际上可以使用自定义组件,但是您必须将一些必需的道具传递给它。问题#299
中已解决在GridLayout内部使用您的自定义组件,就像这样...
<GridLayout>
<div key="1">...</div>
<div key="2">...</div>
<CustomComponent key="3" />
</GridLayout>
您需要在customComponent
内渲染以下道具。
<div {...this.props} className={this.props.className}>
content goes here...
</div>