Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 1.63 KB

WindowScroller.md

File metadata and controls

41 lines (35 loc) · 1.63 KB

WindowScroller

High-order component that enables a FlexTable or VirtualScroll component to be scrolled based on the window's scroll positions. This can be used to create layouts similar to Facebook or Twitter news feeds.

Note that this HOC does not currently work with a horizontally-scrolling Grid as horizontal scrolls reset the internal scrollTop. This may change with a future release but for the time being this HOC is should be used with FlexTable or VirtualScroll only.

Prop Types

Property Type Required? Description
children Function Function responsible for rendering children. This function should implement the following signature: ({ height: number, isScrolling: boolean, scrollTop: number }) => PropTypes.element
onResize Function Callback to be invoked on-resize; it is passed the following named parameters: ({ height: number }).
onScroll Function Callback to be invoked on-scroll; it is passed the following named parameters: ({ scrollTop: number }).

Examples

import React from 'react';
import ReactDOM from 'react-dom';
import { VirtualScroll, WindowScroller } from 'react-virtualized';
import 'react-virtualized/styles.css'; // only needs to be imported once

ReactDOM.render(
  <WindowScroller>
    {({ height, isScrolling, scrollTop }) => (
      <VirtualScroll
        autoHeight
        height={height}
        rowCount={...}
        rowHeight={...}
        rowRenderer={...}
        scrollTop={scrollTop}
        width={...}
      />
    )}
  </WindowScroller>,
  document.getElementById('example')
);