固定数据表调整大小示例:无法调整列

时间:2017-02-09 12:56:28

标签: javascript facebook reactjs fixed-data-table

我正在使用Facebook在这里可视化的示例:https://facebook.github.io/fixed-data-table/example-resize.html

源代码(我使用“旧”样式,使用React.createClass)在这里:https://github.com/facebook/fixed-data-table/blob/master/examples/old/ResizeExample.js#L35

我稍微修改了我的代码。我可以将我的数组解析成细胞。但是,能够拖动列的整个功能都不起作用:鼠标正确地执行拖动列线的动画(如第一个示例中所示),但它从不“粘住”。是什么给了什么?

以下是一些示例代码。也许我在处理状态方面做错了什么?

var FixedDataTable = require('fixed-data-table');
var React = require('react');

var Column = FixedDataTable.Column;
var Table = FixedDataTable.Table;
var Cell = FixedDataTable.Cell;

var isColumnResizing;

var columnWidths = {
    firstName: 100,
    lastName: 100,
    address: 100,
};
const TextCell = ({rowIndex, data, col, ...props}) => (
    <Cell {...props}>
        {data[rowIndex][col] ? data[rowIndex][col] : " "}
    </Cell>
);


var peopleTable = React.createClass({
    getInitialState() {
        return {
            columnWidths: columnWidths
        }
    },

    _onColumnResizeEndCallback(newColumnWidth, dataKey) {
        var columnWidths = this.state.columnWidths;
        columnWidths[dataKey] = newColumnWidth;
        isColumnResizing = false;
        this.setState({
            columnWidths
        })
    },

    render() {
        if (!this.props.data || !this.props.data.peopleInfo) {
            return <div>No people found</div>;
        }

        var peopleMap = this.props.data.peopleInfo;

        var peopleMapArr = Object.values(peopleMap).map(function(people) {
            return people;
        });

       // Here, it will print the array just fine. So it isn't related to that. 


        return (
            <div>
                <Table
                    height={35 + ((peopleMapArr.length) * 80)}
                    width={750}
                    rowsCount={peopleMapArr.length}
                    rowHeight={80}
                    isColumnResizing={isColumnResizing}
                    onColumnResizeEndCallback={this._onColumnResizeEndCallback}
                    headerHeight={30}
                    {...this.props}>
                    <Column
                        header={<Cell>First Name</Cell>}
                        cell={<TextCell data={peopleMapArr} col="firstName" />}
                        fixed={true}
                        width={columnWidths['firstName']}
                        isResizable={true}
                        minWidth={100}
                        maxWidth={250}
                    />
                    <Column
                        header={<Cell>Last Name</Cell>}
                        cell={<TextCell data={peopleMapArr} col="lastName" />}
                        width={columnWidths['lastName']}
                        isResizable={true}
                        minWidth={100}
                        maxWidth={250}
                    />
                    <Column
                        header={<Cell>Address</Cell>}
                        cell={<TextCell data={peopleMapArr} col="address" />}
                        width={columnWidths['address']}
                        isResizable={true}
                        minWidth={100}
                        maxWidth={250}
                    />
                </Table>
            </div>
        );
    }
});

module.exports = peopleTable;

(这是一个样本)

我修改了一些内容,使其在从后端收集数据方面起作用,但它可以正常显示。唯一不起作用的功能是拖动列(作为facebook调整大小的示例)。原因是什么?

1 个答案:

答案 0 :(得分:1)

您需要将 dataKey 属性添加到每个列,或将 _onColumnResizeEndCallback 函数中的 dataKey 更改为 col