mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
247 lines
8.7 KiB
Ruby
247 lines
8.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Kaminari
|
|
module Helpers
|
|
|
|
# The Kaminari::Helpers::UrlHelper module provides useful methods for
|
|
# generating a path or url to a particular page. A class must implement the
|
|
# following methods:
|
|
#
|
|
# * <tt>url_for</tt>: A method that generates an actual path
|
|
# * <tt>params</tt>: A method that returns query string parameters
|
|
# * <tt>request</tt>: A method that returns a Rack::Request object
|
|
#
|
|
# A normal Rails controller implements all the methods, which make it
|
|
# trivial to use this module:
|
|
#
|
|
# ==== Examples
|
|
#
|
|
# class UsersController < ApplicationController
|
|
# include Kaminari::Helpers::UrlHelper
|
|
#
|
|
# def index
|
|
# @users = User.page(1)
|
|
#
|
|
# path_to_next_page(@items)
|
|
# # => /items?page=2
|
|
# end
|
|
# end
|
|
#
|
|
module UrlHelper
|
|
|
|
# A helper that calculates the url to the next page.
|
|
#
|
|
# ==== Examples
|
|
# Basic usage:
|
|
#
|
|
# <%= next_page_url @items %>
|
|
# #-> http://www.example.org/items?page=2
|
|
#
|
|
# It will return `nil` if there is no next page.
|
|
def next_page_url(scope, options = {})
|
|
"#{request.base_url}#{next_page_path(scope, options)}" if scope.next_page
|
|
end
|
|
alias url_to_next_page next_page_url
|
|
|
|
def path_to_next_url(scope, options = {})
|
|
ActiveSupport::Deprecation.warn 'path_to_next_url is deprecated. Use next_page_url or url_to_next_page instead.'
|
|
next_page_url(scope, options)
|
|
end
|
|
|
|
# A helper that calculates the url to the previous page.
|
|
#
|
|
# ==== Examples
|
|
# Basic usage:
|
|
#
|
|
# <%= prev_page_url @items %>
|
|
# #-> http://www.example.org/items
|
|
#
|
|
# It will return `nil` if there is no previous page.
|
|
def prev_page_url(scope, options = {})
|
|
"#{request.base_url}#{prev_page_path(scope, options)}" if scope.prev_page
|
|
end
|
|
alias previous_page_url prev_page_url
|
|
alias url_to_prev_page prev_page_url
|
|
alias url_to_previous_page prev_page_url
|
|
|
|
# A helper that calculates the path to the next page.
|
|
#
|
|
# ==== Examples
|
|
# Basic usage:
|
|
#
|
|
# <%= path_to_next_page @items %>
|
|
# #-> /items?page=2
|
|
#
|
|
# It will return `nil` if there is no next page.
|
|
def next_page_path(scope, options = {})
|
|
Kaminari::Helpers::NextPage.new(self, **options.reverse_merge(current_page: scope.current_page)).url if scope.next_page
|
|
end
|
|
alias path_to_next_page next_page_path
|
|
|
|
# A helper that calculates the path to the previous page.
|
|
#
|
|
# ==== Examples
|
|
# Basic usage:
|
|
#
|
|
# <%= path_to_prev_page @items %>
|
|
# #-> /items
|
|
#
|
|
# It will return `nil` if there is no previous page.
|
|
def prev_page_path(scope, options = {})
|
|
Kaminari::Helpers::PrevPage.new(self, **options.reverse_merge(current_page: scope.current_page)).url if scope.prev_page
|
|
end
|
|
alias previous_page_path prev_page_path
|
|
alias path_to_previous_page prev_page_path
|
|
alias path_to_prev_page prev_page_path
|
|
end
|
|
|
|
module HelperMethods
|
|
include UrlHelper
|
|
|
|
# A helper that renders the pagination links.
|
|
#
|
|
# <%= paginate @articles %>
|
|
#
|
|
# ==== Options
|
|
# * <tt>:window</tt> - The "inner window" size (4 by default).
|
|
# * <tt>:outer_window</tt> - The "outer window" size (0 by default).
|
|
# * <tt>:left</tt> - The "left outer window" size (0 by default).
|
|
# * <tt>:right</tt> - The "right outer window" size (0 by default).
|
|
# * <tt>:params</tt> - url_for parameters for the links (:controller, :action, etc.)
|
|
# * <tt>:param_name</tt> - parameter name for page number in the links (:page by default)
|
|
# * <tt>:remote</tt> - Ajax? (false by default)
|
|
# * <tt>:paginator_class</tt> - Specify a custom Paginator (Kaminari::Helpers::Paginator by default)
|
|
# * <tt>:template</tt> - Specify a custom template renderer for rendering the Paginator (receiver by default)
|
|
# * <tt>:ANY_OTHER_VALUES</tt> - Any other hash key & values would be directly passed into each tag as :locals value.
|
|
def paginate(scope, paginator_class: Kaminari::Helpers::Paginator, template: nil, **options)
|
|
options[:total_pages] ||= scope.total_pages
|
|
options.reverse_merge! current_page: scope.current_page, per_page: scope.limit_value, remote: false
|
|
|
|
paginator = paginator_class.new (template || self), **options
|
|
paginator.to_s
|
|
end
|
|
|
|
# A simple "Twitter like" pagination link that creates a link to the previous page.
|
|
#
|
|
# ==== Examples
|
|
# Basic usage:
|
|
#
|
|
# <%= link_to_previous_page @items, 'Previous Page' %>
|
|
#
|
|
# Ajax:
|
|
#
|
|
# <%= link_to_previous_page @items, 'Previous Page', remote: true %>
|
|
#
|
|
# By default, it renders nothing if there are no more results on the previous page.
|
|
# You can customize this output by passing a block.
|
|
#
|
|
# <%= link_to_previous_page @users, 'Previous Page' do %>
|
|
# <span>At the Beginning</span>
|
|
# <% end %>
|
|
def link_to_previous_page(scope, name, **options)
|
|
prev_page = path_to_prev_page(scope, options)
|
|
|
|
options.except! :params, :param_name
|
|
options[:rel] ||= 'prev'
|
|
|
|
if prev_page
|
|
link_to name, prev_page, options
|
|
elsif block_given?
|
|
yield
|
|
end
|
|
end
|
|
alias link_to_prev_page link_to_previous_page
|
|
|
|
# A simple "Twitter like" pagination link that creates a link to the next page.
|
|
#
|
|
# ==== Examples
|
|
# Basic usage:
|
|
#
|
|
# <%= link_to_next_page @items, 'Next Page' %>
|
|
#
|
|
# Ajax:
|
|
#
|
|
# <%= link_to_next_page @items, 'Next Page', remote: true %>
|
|
#
|
|
# By default, it renders nothing if there are no more results on the next page.
|
|
# You can customize this output by passing a block.
|
|
#
|
|
# <%= link_to_next_page @users, 'Next Page' do %>
|
|
# <span>No More Pages</span>
|
|
# <% end %>
|
|
def link_to_next_page(scope, name, **options)
|
|
next_page = path_to_next_page(scope, options)
|
|
|
|
options.except! :params, :param_name
|
|
options[:rel] ||= 'next'
|
|
|
|
if next_page
|
|
link_to name, next_page, options
|
|
elsif block_given?
|
|
yield
|
|
end
|
|
end
|
|
|
|
# Renders a helpful message with numbers of displayed vs. total entries.
|
|
# Ported from mislav/will_paginate
|
|
#
|
|
# ==== Examples
|
|
# Basic usage:
|
|
#
|
|
# <%= page_entries_info @posts %>
|
|
# #-> Displaying posts 6 - 10 of 26 in total
|
|
#
|
|
# By default, the message will use the humanized class name of objects
|
|
# in collection: for instance, "project types" for ProjectType models.
|
|
# The namespace will be cut out and only the last name will be used.
|
|
# Override this with the <tt>:entry_name</tt> parameter:
|
|
#
|
|
# <%= page_entries_info @posts, entry_name: 'item' %>
|
|
# #-> Displaying items 6 - 10 of 26 in total
|
|
def page_entries_info(collection, entry_name: nil)
|
|
entry_name = if entry_name
|
|
entry_name.pluralize(collection.size, I18n.locale)
|
|
else
|
|
collection.entry_name(count: collection.size).downcase
|
|
end
|
|
|
|
if collection.total_pages < 2
|
|
t('helpers.page_entries_info.one_page.display_entries', entry_name: entry_name, count: collection.total_count)
|
|
else
|
|
from = collection.offset_value + 1
|
|
to = collection.offset_value + (collection.respond_to?(:records) ? collection.records : collection.to_a).size
|
|
|
|
t('helpers.page_entries_info.more_pages.display_entries', entry_name: entry_name, first: from, last: to, total: collection.total_count)
|
|
end.html_safe
|
|
end
|
|
|
|
# Renders rel="next" and rel="prev" links to be used in the head.
|
|
#
|
|
# ==== Examples
|
|
# Basic usage:
|
|
#
|
|
# In head:
|
|
# <head>
|
|
# <title>My Website</title>
|
|
# <%= yield :head %>
|
|
# </head>
|
|
#
|
|
# Somewhere in body:
|
|
# <% content_for :head do %>
|
|
# <%= rel_next_prev_link_tags @items %>
|
|
# <% end %>
|
|
#
|
|
# #-> <link rel="next" href="/items/page/3"><link rel="prev" href="/items/page/1">
|
|
#
|
|
def rel_next_prev_link_tags(scope, options = {})
|
|
next_page = path_to_next_page(scope, options)
|
|
prev_page = path_to_prev_page(scope, options)
|
|
|
|
output = String.new
|
|
output << %Q|<link rel="next" href="#{next_page}">| if next_page
|
|
output << %Q|<link rel="prev" href="#{prev_page}">| if prev_page
|
|
output.html_safe
|
|
end
|
|
end
|
|
end
|
|
end
|