react-auto-scroll
v1.1.0
Published
A HOC that will auto-scroll to the bottom when a property changes
Downloads
26
Readme
react-auto-scroll
A HOC that will auto-scroll to the bottom when a property changes.
It'll track a property and scroll to the bottom whenever it changes. If the user has scrolled up, it preserves the user's scroll position when the property changes.
Installation
$ npm i react-auto-scroll
Example
var React = require('react')
var AutoScroll = require('react-auto-scroll')
var Component = AutoScroll({
property: 'propertyName'
})(React.createClass(/* ... */))
API
AutoScroll(options)(Component)
options.property
(string) Property to track for scrolling
License
MIT