/* eslint-disable react/display-name */ import React, { memo } from "react"; import PropTypes from "prop-types"; import CustomScrollbarsVirtualList from "../scrollbar/custom-scrollbars-virtual-list"; import { FixedSizeList as List, areEqual } from "react-window"; import AutoSizer from "react-virtualized-auto-sizer"; import StyledRowContainer from "./styled-row-container"; class RowContainer extends React.PureComponent { renderRow = memo(({ data, index, style }) => { return
{data[index]}
; }, areEqual); render() { const { manualHeight, itemHeight, children, useReactWindow, id, className, style, } = this.props; const renderList = ({ height, width }) => ( {this.renderRow} ); return ( {useReactWindow ? {renderList} : children} ); } } RowContainer.propTypes = { /** Height of one Row element. Required for scroll to work properly */ itemHeight: PropTypes.number, /** Allows you to set fixed block height for Row */ manualHeight: PropTypes.string, /** Child elements */ children: PropTypes.any.isRequired, /** Use react-window for efficiently rendering large lists */ useReactWindow: PropTypes.bool, /** Accepts class */ className: PropTypes.string, /** Accepts id */ id: PropTypes.string, /** Accepts css style */ style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]), }; RowContainer.defaultProps = { itemHeight: 50, useReactWindow: true, id: "rowContainer", }; export default RowContainer;