Sha256: 19faf38fe49e9412379569f11edf740b44b52dd3b896bc226588935bd4522bf4

Contents?: true

Size: 761 Bytes

Versions: 14

Compression:

Stored size: 761 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 LastPageLinkForHelper
    include Pagination::CurrentPageForHelper
    include Pagination::TotalPagesForHelper
    include Pagination::PathForHelper

    def pagination_last_page_link_for(set)
      current_page = pagination_current_page_for(set)
      total_pages = pagination_total_pages_for(set)

      if current_page != total_pages && current_page <= total_pages
        link_to('Last »',  pagination_path_for(total_pages), class: 'page-link page-last')
      else
        content_tag(:span, 'Last »', class: 'page-link page-last 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/last_page_link_for_helper.rb
actionset-0.10.0 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.9.2 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.9.1 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.8.2 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.8.1 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.8.0 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.7.0 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.6.0 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.5.4 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.5.3 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.5.2 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.5.1 lib/action_set/helpers/pagination/last_page_link_for_helper.rb
actionset-0.5.0 lib/action_set/helpers/pagination/last_page_link_for_helper.rb