Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | import React, { Component } from "react"; import { TableRow } from "@material-ui/core"; import { connect } from "react-redux"; import { rowPropType } from "../../proptypes/proptypes"; import CellBuilder from "./CellBuilder"; class Row extends Component { cellBuilder = (val, columnId) => { const { columns } = this.props; const column = columns.find(col => col.id === columnId); return <CellBuilder val={val} column={column} key={val} />; }; render() { const { row, columnsOrder } = this.props; return ( <TableRow> {columnsOrder.map(columnId => { return this.cellBuilder(row[columnId], columnId); })} </TableRow> ); } } // Row.propTypes = { // row: rowPropType // }; const mapStateToProps = state => { return { columns: state.datatableReducer.data.columns, columnsOrder: state.datatableReducer.features.userConfiguration.columnsOrder }; }; export default connect(mapStateToProps)(Row); |