Sha256: 8f34f7b2dd6940b7620b60761fb04a4f92ff4b6ecba977e02e30902ffe4d44d8

Contents?: true

Size: 863 Bytes

Versions: 7

Compression:

Stored size: 863 Bytes

Contents

# frozen_string_literal: true
module Decidim
  # Helper to paginate collections.
  module PaginateHelper
    # Displays pagination links for the given collection, setting the correct
    # theme. This mostly acts as a proxy for the underlying pagination engine.
    #
    # collection - a collection of elements that need to be paginated
    # paginate_params - a Hash with options to delegate to the pagination helper.
    def decidim_paginate(collection, paginate_params)
      # Kaminari uses url_for to generate the url, but this doesn't play nice with our engine system
      # and unless we remove these params they are added again as query string :(
      default_params = {
        participatory_process_id: nil,
        feature_id: nil
      }

      paginate collection, theme: "decidim", params: paginate_params.merge(default_params)
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
decidim-core-0.1.0 app/helpers/decidim/paginate_helper.rb
decidim-core-0.0.8.1 app/helpers/decidim/paginate_helper.rb
decidim-core-0.0.7 app/helpers/decidim/paginate_helper.rb
decidim-core-0.0.6 app/helpers/decidim/paginate_helper.rb
decidim-core-0.0.5 app/helpers/decidim/paginate_helper.rb
decidim-core-0.0.3 app/helpers/decidim/paginate_helper.rb
decidim-core-0.0.2 app/helpers/decidim/paginate_helper.rb