| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- 'use strict';
- function paginatorHelper(options = {}) {
- const current = options.current || this.page.current || 0;
- const total = options.total || this.page.total || 1;
- const endSize = options.hasOwnProperty('end_size') ? +options.end_size : 1;
- const midSize = options.hasOwnProperty('mid_size') ? +options.mid_size : 2;
- const space = options.hasOwnProperty('space') ? options.space : '…';
- const base = options.base || this.page.base || '';
- const format = options.format || `${this.config.pagination_dir}/%d/`;
- const prevText = options.prev_text || 'Prev';
- const nextText = options.next_text || 'Next';
- const prevNext = options.hasOwnProperty('prev_next') ? options.prev_next : true;
- const transform = options.transform;
- const self = this;
- let result = '';
- let i;
- if (!current) return '';
- const currentPage = `<span class="page-number current">${transform ? transform(current) : current}</span>`;
- function link(i) {
- return self.url_for(i === 1 ? base : base + format.replace('%d', i));
- }
- function pageLink(i) {
- return `<a class="page-number" href="${link(i)}">${transform ? transform(i) : i}</a>`;
- }
- // Display the link to the previous page
- if (prevNext && current > 1) {
- result += `<a class="extend prev" rel="prev" href="${link(current - 1)}">${prevText}</a>`;
- }
- if (options.show_all) {
- // Display pages on the left side of the current page
- for (i = 1; i < current; i++) {
- result += pageLink(i);
- }
- // Display the current page
- result += currentPage;
- // Display pages on the right side of the current page
- for (i = current + 1; i <= total; i++) {
- result += pageLink(i);
- }
- } else {
- // It's too complicated. May need refactor.
- const leftEnd = current <= endSize ? current - 1 : endSize;
- const rightEnd = total - current <= endSize ? current + 1 : total - endSize + 1;
- const leftMid = current - midSize <= endSize ? leftEnd + 1 : current - midSize;
- const rightMid = current + midSize + endSize > total ? rightEnd - 1 : current + midSize;
- const spaceHtml = `<span class="space">${space}</span>`;
- // Display pages on the left edge
- for (i = 1; i <= leftEnd; i++) {
- result += pageLink(i);
- }
- // Display spaces between edges and middle pages
- if (space && current - endSize - midSize > 1) {
- result += spaceHtml;
- }
- // Display left middle pages
- if (leftMid > leftEnd) {
- for (i = leftMid; i < current; i++) {
- result += pageLink(i);
- }
- }
- // Display the current page
- result += currentPage;
- // Display right middle pages
- if (rightMid < rightEnd) {
- for (i = current + 1; i <= rightMid; i++) {
- result += pageLink(i);
- }
- }
- // Display spaces between edges and middle pages
- if (space && total - endSize - midSize > current) {
- result += spaceHtml;
- }
- // Dispaly pages on the right edge
- for (i = rightEnd; i <= total; i++) {
- result += pageLink(i);
- }
- }
- // Display the link to the next page
- if (prevNext && current < total) {
- result += `<a class="extend next" rel="next" href="${link(current + 1)}">${nextText}</a>`;
- }
- return result;
- }
- module.exports = paginatorHelper;
|