Sha256: 33fcb0206dbaa4734a30c7fea68622459c51baf1f7ee021033dac87cbcbe53ec

Contents?: true

Size: 737 Bytes

Versions: 14

Compression:

Stored size: 737 Bytes

Contents

# frozen_string_literal: true

require_relative './current_page_for_helper'
require_relative './total_pages_for_helper'
require_relative './path_for_helper'

module Pagination
  module PrevPageLinkForHelper
    include Pagination::CurrentPageForHelper
    include Pagination::TotalPagesForHelper
    include Pagination::PathForHelper

    def pagination_prev_page_link_for(set)
      current_page = pagination_current_page_for(set)

      if current_page > 1 && current_page <= pagination_total_pages_for(set)
        link_to('‹ Prev', pagination_path_for(current_page - 1), rel: 'prev', class: 'page-link page-prev')
      else
        content_tag(:span, '‹ Prev', class: 'page-link page-prev disabled')
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
actionset-0.11.0 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.10.0 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.9.2 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.9.1 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.8.2 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.8.1 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.8.0 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.7.0 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.6.0 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.5.4 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.5.3 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.5.2 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.5.1 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb
actionset-0.5.0 lib/action_set/helpers/pagination/prev_page_link_for_helper.rb