// NPM imports import React, { Component, PropTypes } from "react"; import { Link } from "react-router"; import CSSModules from "react-css-modules"; import { defineMessages, injectIntl, intlShape, FormattedMessage, FormattedHTMLMessage } from "react-intl"; // Local imports import { computePaginationBounds, filterInt, messagesMap } from "../../utils"; // Translations import commonMessages from "../../locales/messagesDescriptors/common"; import messages from "../../locales/messagesDescriptors/elements/Pagination"; // Styles import css from "../../styles/elements/Pagination.scss"; // Define translations const paginationMessages = defineMessages(messagesMap(Array.concat([], commonMessages, messages))); /** * Pagination button bar */ class PaginationCSSIntl extends Component { constructor (props) { super (props); // Bind this this.goToPage = this.goToPage.bind(this); this.dotsOnClick = this.dotsOnClick.bind(this); this.dotsOnKeyDown = this.dotsOnKeyDown.bind(this); this.cancelModalBox = this.cancelModalBox.bind(this); } /** * Handle click on the "go to page" button in the modal. */ goToPage(e) { e.preventDefault(); // Parse and check page number const pageNumber = filterInt(this.refs.pageInput.value); if (pageNumber && !isNaN(pageNumber)) { // Hide the modal and go to page $(this.refs.paginationModal).modal("hide"); this.props.goToPage(pageNumber); } } /** * Handle click on the ellipsis dots. */ dotsOnClick() { // Show modal $(this.refs.paginationModal).modal(); } /** * Bind key down events on ellipsis dots for a11y. */ dotsOnKeyDown(e) { e.preventDefault; const code = e.keyCode || e.which; if (code == 13 || code == 32) { // Enter or Space key this.dotsOnClick(); // Fire same event as onClick } } /** * Handle click on "cancel" in the modal box. */ cancelModalBox() { // Hide modal $(this.refs.paginationModal).modal("hide"); } render () { const { formatMessage } = this.props.intl; // Get bounds const { lowerLimit, upperLimit } = computePaginationBounds(this.props.currentPage, this.props.nPages); // Store buttons let pagesButton = []; let key = 0; // key increment to ensure correct ordering // If lower limit is above 1, push 1 and ellipsis if (lowerLimit > 1) { pagesButton.push(