Sha256: a58a7c27df604945ff80e9fad48bf27b489123f5cb0a37b1fd78656797f95cba

Contents?: true

Size: 1.9 KB

Versions: 1

Compression:

Stored size: 1.9 KB

Contents

# See the Pagy documentation: https://ddnexus.github.io/pagy/extras/standalone
# frozen_string_literal: true

require 'uri'
class Pagy
  module StandaloneExtra
    # Extracted from Rack::Utils and reformatted for rubocop
    module QueryUtils
      module_function

      def escape(str)
        URI.encode_www_form_component(str)
      end

      def build_nested_query(value, prefix = nil)
        case value
        when Array
          value.map { |v| build_nested_query(v, "#{prefix}[]") }.join('&')
        when Hash
          value.map do |k, v|
            build_nested_query(v, prefix ? "#{prefix}[#{escape(k)}]" : escape(k))
          end.delete_if(&:empty?).join('&')
        when nil
          prefix
        else
          raise ArgumentError, 'value must be a Hash' if prefix.nil?

          "#{prefix}=#{escape(value)}"
        end
      end
    end

    # Without any :url var it works exactly as the regular #pagy_url_for;
    # with a defined :url variable it does not use rack/request
    def pagy_url_for(pagy, page, absolute: nil)
      p_vars = pagy.vars
      return super unless (url = p_vars[:url])

      params                            = p_vars[:params]
      params[p_vars[:page_param].to_s]  = page
      params[p_vars[:items_param].to_s] = p_vars[:items] if defined?(ItemsExtra)
      # no Rack required in standalone mode
      query_string = "?#{QueryUtils.build_nested_query(pagy_massage_params(params))}" unless params.empty?
      "#{url}#{query_string}#{p_vars[:fragment]}"
    end
  end
  # In ruby 3+ we could just use `UrlHelpers.prepend StandaloneExtra` instead of using the next 2 lines
  Frontend.prepend StandaloneExtra
  Backend.prepend StandaloneExtra

  # Define a dummy params method if it's not already defined in the including module
  module Backend
    def self.included(controller)
      controller.define_method(:params) { {} } unless controller.method_defined?(:params)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pagy-5.0.0 lib/pagy/extras/standalone.rb