Socket
Socket
Sign inDemoInstall

bulma-pagination-react

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

bulma-pagination-react

Bulma pagination as a react component.


Version published
Maintainers
1
Created
Source

bulma-pagination-react

code style: prettier CircleCI npm npm

Bulma pagination as a react component.

Installation

yarn add bulma-pagination-react

Usage

To start using the pagination component all you need to do is provide how many pages there are and what page the user is on. All other properties are optional

import React from 'react';
import Pagination from 'bulma-pagination-react';

const POSTS_PER_PAGE = 10;

const Pager = ({ posts, currentPage, perPage = POSTS_PER_PAGE }) => {
  const pages = Math.ceil(posts.length / perPage);

  return (
    <Pagination
      pages={pages}
      currentPage={currentPage}
      onChange={page => console.log(`/blog?page=${page}`)}
    />
  );
};

export default Pager;

onChange

Function called when a button or page link is clicked. The only argument supplied to the function is the new page number.

visibleRadius

Modify how many page elements are visible in the pagination component. Defaults to 1.

className

bulma-pagination-react has classes that effect all elements in the component.

  • className: ClassName for the wrapper
  • prevClassName: ClassName for the previous button
  • nextClassName: ClassName for the next button
  • linkClassName: ClassName for each page link
  • listClassName: ClassName for the list of page links

FAQs

Package last updated on 24 Oct 2018

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc