1.0.2 • Published 3 years ago

react-ig-indicator v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-ig-indicator

Node.js CI

react-ig-indicator-demo

An Instagram-like page indicator component.

Installation

# npm
npm i react-ig-indicator

# yarn
yarn add react-ig-indicator

Prerequisite

react@16.8.0 (the one with hook) and above

Quick start

import Carousel from "react-slick";
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";
import Indicator from "react-ig-indicator";

export default function MyCarousel() {
  const images = [
    "https://wallpaperaccess.com/full/2989884.jpg",
    "https://i.pinimg.com/originals/74/c6/bd/74c6bd677d433a565b2e142207623533.png",
    "https://pbs.twimg.com/profile_images/1383424793035231240/AHMq2F9e_400x400.jpg",
    "https://i.pinimg.com/originals/e9/51/fb/e951fb9ba3fa130ca4f672c29379ae88.jpg",
  ];
  const [currentPage, setCurrentPage] = useState(0);
  return (
    <div className="App">
      <Carousel
        className="slide"
        beforeChange={(_, newIndex) => setCurrentPage(newIndex)}
      >
        {images.map((imgUrl) => (
          <div>
            <img alt="" src={imgUrl} />
          </div>
        ))}
      </Carousel>
      <Indicator
        totalAmount={images.length}
        activeIndex={currentPage}
        wrapperStyleClass="dot-container"
        activeDotColor="#abc"
        dotColor="#111"
      />
    </div>
  );
}

Props

PropertyDescriptionDefault valueTypeRequired
totalAmounttotal amount of dots0numberyes
activeIndexindex of the active dot (zero based)0number
dotSizewidth and height of the dot (in pixels)6number
dotColorcolor of the dot (#hex code)"#a8a8a8"string
activeDotColorcolor of the active dot (#hex code)"#0095f6"string
dotSpacingspacing between dots4number
wrapperStyleClasscustom CSS class name for the wrapper element of Indicatorstring
renderDota render props that is called with an object containing the following dot related properties: spacing, position, scaleRatio, size and colorfunction

License

MIT © CR Jimmy