
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-component-scrollload
Advanced tools
A dummy React component to implement continuous load on scroll for modern browser.
var ScrollLoad = require('react-component-scrollload');
<ScrollLoad className="via transferPropsTo" loadMore={this.loadMore} hasMore={!!this.state.meta.next} isLoading={this.state.loading} loader={<div className="loading"><img src="/img/loading.svg" /></div>}>
{items}
</ScrollLoad>
npm install react-component-scroll --save
propTypes: {
hasMore: React.PropTypes.bool.isRequired, // if there is more to load
loadMore: React.PropTypes.func.isRequired, // callback to load more
isLoading: React.PropTypes.bool.isRequired, // indicate if a loading is ongoing
useDocument: React.PropTypes.bool, // if true, the scrolling is calculated based on the document and not the element, default false
threshold: React.PropTypes.number, // pixel threshold, default 1000
loader: React.PropTypes.component, // displayed loader component, default React.DOM.div(null, 'Loading...')
// disable pointer to improve scrolling perf
disablePointer: React.PropTypes.number, // ms delay until disablePointerClass class is removed after last scroll event, default 0 (feature disabled)
disablePointerClass: React.PropTypes.string // default class added to child wrapper div, default 'disable-pointer'
}
A dummy way to improve scrolling performance.
Add to your css a disable-pointer definition, default name defined by disablePointerClass.
.disable-pointer {
pointer-events: none !important;
}
Add disablePointer prop with a delay in milliseconds.
<ScrollLoad disablePointer={100}>...
MIT
FAQs
React component to implement continuous load on scroll
We found that react-component-scrollload demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.