Sha256: ea1c639aa3ca932086a5464831afc87d328092ebeb560f4b07a3998c055f8251
Contents?: true
Size: 1.16 KB
Versions: 7
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true class Pagy # Provide the helpers to handle the url in frontend and backend module UrlHelpers # Return the URL for the page, relying on the params method and Rack by default. # It supports all Rack-based frameworks (Sinatra, Padrino, Rails, ...). # For non-rack environments you can use the standalone extra def pagy_url_for(pagy, page, absolute: false, fragment: nil, **_) vars = pagy.vars query_params = request.GET.clone query_params.merge!(vars[:params].transform_keys(&:to_s)) if vars[:params].is_a?(Hash) pagy_set_query_params(page, vars, query_params) query_params = vars[:params].(query_params) if vars[:params].is_a?(Proc) query_string = "?#{Rack::Utils.build_nested_query(query_params)}" "#{request.base_url if absolute}#{vars[:request_path] || request.path}#{query_string}#{fragment}" end # Add the page and limit params # Overridable by the jsonapi extra def pagy_set_query_params(page, vars, query_params) query_params[vars[:page_param].to_s] = page query_params[vars[:limit_param].to_s] = vars[:limit] if vars[:limit_extra] end end end
Version data entries
7 entries across 7 versions & 1 rubygems