Socket
Socket
Sign inDemoInstall

infinite-scroll-action

Package Overview
Dependencies
3
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    infinite-scroll-action

This package use to call function from specific position your web


Version published
Weekly downloads
82
increased by28.13%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Features

  • Scroll to loadmore api call;
  • Scroll to action function specific position your web ;

####React js

import InfiniteScrollAction from 'infinite-scroll-action'
import { useEffect, useState } from 'react'

function App() {
  const [product, setProduct] = useState([])
  const [limit, setLimit] = useState(20)
  const [loading, setLoading] = useState(false)

  useEffect(() => {
    const apiCall = async () => {
      setLoading(true)
      const res = await fetch(`https://dummyjson.com/products?limit=${limit}&skip=0`)
      const data = await res.json()
      setProduct(data.products)
      setLoading(false)
    }
    apiCall()
  }, [limit])

  const callback = () => {
    setLimit(limit + 10)
  }

  return (
    <div className='App'>
      <InfiniteScrollAction
        // If use this API call to past this realtime get data length else don't need
        ifApiCallPastChangeableDataLength={product.length}
        //Function call from bottom to top pixel position
        bottomToActionPosition={20}
        callback={callback}
      >
        <div
          style={{
            display: 'flex',
            flexDirection: 'row',
            flexWrap: 'wrap',
          }}
        >
          {!product.length && loading ? (
            <div
              style={{
                height: '100vh',
                width: '100%',
                display: 'flex',
                justifyContent: 'center',
                alignItems: 'center',
              }}
            >
              <h4>First time Loading........</h4>
            </div>
          ) : (
            product.map((item) => (
              <div key={item.id} style={{ width: '20%' }}>
                <div
                  style={{
                    background: 'tomato',
                    height: '200px',
                    margin: '5px',
                  }}
                >
                  <h4>{item.title}</h4>
                  <h4>{item.id}</h4>
                </div>
              </div>
            ))
          )}

          {/* GET More Data -scroll- Loading  */}
          {product.length && loading ? (
            <div
              style={{
                height: '100px',
                display: 'flex',
                justifyContent: 'center',
                alignItems: 'center',
              }}
            >
              <h4>Get more -- Loading........</h4>
            </div>
          ) : null}
        </div>
      </InfiniteScrollAction>
    </div>
  )
}

export default App

###Props

PropsData typeRequired
callbackfunctionyes
bottomToActionPositionnumberno
ifApiCallPastChangeableDataLengthnumberno

###End>>=====@=====<<End

Keywords

FAQs

Last updated on 20 Jan 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc