UNPKG

@streetscape.gl/monochrome

Version:

A toolkit of React components for streetscape.gl

72 lines (66 loc) 2.58 kB
// Copyright (c) 2019 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import React, {PureComponent} from 'react'; import PropTypes from 'prop-types'; import {TableRowComponent, TableCell} from './styled-components'; /** * A stateless component that renders a data row in the Table component */ export default class TableRow extends PureComponent { static propTypes = { id: PropTypes.string, data: PropTypes.shape({ data: PropTypes.array }), style: PropTypes.object, renderCell: PropTypes.func, columns: PropTypes.array }; render() { const {id, index, data, theme, userStyle, columns, style, renderCell} = this.props; return ( <div style={style}> <TableRowComponent theme={theme} index={index} userStyle={userStyle.row}> {data.data.map((colValue, colIndex) => { const column = columns[colIndex]; return ( <TableCell key={colIndex} index={colIndex} style={{width: column.width}} title={`${column.name}: ${colValue}`} theme={theme} userStyle={userStyle.cell} > {renderCell({ value: colValue, column: column.srcObject, columnIndex: colIndex, row: data.srcObject, rowId: id })} </TableCell> ); })} </TableRowComponent> </div> ); } }