Sha256: 0adb1e6b6ac53ce3b8a284d775ee44a7efce923a67b0aa384e0541a540ef323f
Contents?: true
Size: 869 Bytes
Versions: 34
Compression:
Stored size: 869 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
34 entries across 34 versions & 2 rubygems