New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-infinite-scroll-mixin

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-infinite-scroll-mixin

An infinite scroll mixin for React

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

Infinite scroll mixin for React

Add the mixin to the array of mixins for your component and specify a fetchNextPage function to be called when the end of the page is reached. The fetchNextPage function should accept the number of the next page to fetch as an argument.

Take a look at examples/example.js to see a quick demo.

Usage

Install:

npm install react-infinite-scroll-mixin

Note:

Version 0.3.0 is made to work with React 0.14+ and you will need to install react and react-dom alongside this package.

Use:

var InfiniteScrollMixin = require('react-infinite-scroll-mixin');

Properties

The mixin makes use of the initialPage and offset properties of your component.

The initalPage property specifies the first page number passed to your fetchNextPage function (default 1). This can be used to start paging from 0 instead of one.

The offset property specifies how far from the bottom of the page the fetchNextPage function should be triggered (default 250).

Acknowledgement

I based this off of https://github.com/guillaumervls/react-infinite-scroll which is an infinite scroll addon for React.

Keywords

react

FAQs

Package last updated on 09 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts