react-stay-scrolled
Keep your component, such as message boxes, scrolled down.
Install
$ npm install --save react-stay-scrolled
Usage
react-stay-scrolled
injects methods stayScrolled
and scrollBottom
to its children through the scrolled
higher order component:
The methods can also be called from the parent element:
Another use case is notifying users when there is a new message down the window that they haven't read:
Props
component
Type: a React component
, default: "div"
Passed to React.createElement
, used to wrap the children
debug
Type: function(msg)
, default () => {}
Used to log debug messages in StayScrolled, usually (msg) => { console.log(msg); }
stayInaccuracy
Type: number
, default: 0
Defines an error margin, in pixels, under which stayScrolled
will still scroll to the bottom
provideControllers
Type: function({ stayScrolled, scrollBottom })
, default: null
Used for getting scroll controllers to the parent elements, see the controller API below
onStayScrolled
Type: function(scrolled)
Fires after executing stayScrolled
, notifies back whether or not the component is scrolled down. Useful to know if you need to notify the user about new messages
scrolled
Type: boolean
True if the call to stayScrolled
performed a scroll to bottom, false otherwise
onScrolled
Type: function()
Fires when the element scrolls down, useful to remove the new message notification
runScroll
Type: function(dom, offset)
, default: (dom, offset) => { dom.scrollTop = offset; }
Used for animating dom scrolling. You can use dynamic.js, Velocity, jQuery, or your favorite animation library. Here are examples of possible, tested runScroll
values:
Controllers
Two methods used for controlling scroll behavior.
Can be accessed by children by injecting into props with scrolled
higher order component, or via context.
Can be accessed by parents by passing provideControllers
prop to StayScrolled
.
stayScrolled
Type: function(notify = true)
Scrolls down the element if it was already scrolled down - useful for when a user is reading previous messages, and you don't want to interrupt
notify
Type: boolean
optional, default true
.
If true
, it fires an onStayScrolled
event after execution, notifying whether or not the component stayed scrolled
scrollDown
Type: function()
Scrolls down the wrapper element, regardless of current position
Higher order component
scrolled
Injects the above controllers, stayScrolled
and scrollBottom
to the props of a child element of StayScrolled
TODO
- Try to automate scrolling on some of the use-cases
- Improve examples