Module: JustPaginate

Defined in:
lib/just_paginate.rb

Overview

– The MIT License (MIT)

Copyright © 2013 Gitorious AS

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++

Constant Summary collapse

VERSION =
"0.1.1"

Class Method Summary collapse

Class Method Details

.index_range(curr_page, per_page, total_entry_count) ⇒ Object



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/just_paginate.rb', line 49

def self.index_range(curr_page, per_page, total_entry_count)
  start_index = ((curr_page-1)*per_page)
  end_index = (start_index+per_page)-1

  if total_entry_count == 0
    return 0..0
  end

  if(start_index>(total_entry_count-1))
    start_index = total_entry_count-per_page
    end_index = total_entry_count-1
  end

  if end_index>total_entry_count
    end_index = total_entry_count
  end

  Range.new(start_index, end_index)
end

.page_labels(current, total) ⇒ Object



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/just_paginate.rb', line 148

def self.page_labels(current, total)
  max_visible = 10
  labels = []

  if total <= max_visible
    1.upto(total).each {|n| labels.push(n.to_s)}
  else
    if current > max_visible
      labels = ["<", "1", "..."]
    else
      current = 1
    end

    if (current > (total-max_visible))
      current = (total-max_visible)+1
    end

    current.upto(current+(max_visible-1)).each {|n| labels.push(n.to_s)}

    if (current <= (total-max_visible))
      labels.concat ["...", "#{total}", ">"]
    end
  end

  return labels
end

Depends on Bootstrap styling/widgets



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/just_paginate.rb', line 89

def self.page_links(curr_page, total_page_count, &page_link_constructor)
  page_labels(curr_page, total_page_count).map do |label|
    page_element = ""

    if label == "..."
      page_element = "<li class='disabled'><a>#{label}</a></li>"
    elsif label == "<"
      page_url = yield(curr_page-1)
      page_element = "<li><a rel='prev' href='#{page_url}'>#{label}</a></li>"
    elsif label == ">"
      page_url = yield(curr_page+1)
      page_element = "<li><a rel='next' href='#{page_url}'>#{label}</a></li>"
    else
      page_url = yield(label)
      if label.to_i == curr_page
        page_element = "<li class='active'><a>#{label}</a></li>"
      else
        page_element = "<li><a href='#{page_url}'>#{label}</a></li>"
      end
    end

  end.join(" ")
end

Not dependent on bootstrap styling/widgets



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/just_paginate.rb', line 124

def self.page_links_non_bootstrap(curr_page, total_page_count, &page_link_constructor)
  page_labels(curr_page, total_page_count).map do |label|
    page_element = ""

    if label == "..."
      page_element = "<span class='gap'>#{label}</span>"
    elsif label == "<"
      page_url = yield(curr_page-1)
      page_element = "<a rel='prev' href='#{page_url}'>#{label}</a>"
    elsif label == ">"
      page_url = yield(curr_page+1)
      page_element = "<a rel='next' href='#{page_url}'>#{label}</a>"
    else
      page_url = yield(label)
      if label.to_i == curr_page
        page_element = "<span class='current'>#{label}</span>"
      else
        page_element = "<a href='#{page_url}'>#{label}</a>"
      end
    end

  end.join(" ")
end


79
80
81
82
83
84
85
86
# File 'lib/just_paginate.rb', line 79

def self.page_navigation(curr_page, total_page_count, &page_link_constructor)
  links = page_links(curr_page.to_i, total_page_count, &page_link_constructor)
  if total_page_count > 1
    "<div class='pagination'><ul>#{links}</ul></div>"
  else
    ""
  end
end

Not dependent on bootstrap styling/widgets



114
115
116
117
118
119
120
121
# File 'lib/just_paginate.rb', line 114

def self.page_navigation_non_bootstrap(curr_page, total_page_count, &page_link_constructor)
  if total_page_count > 1
    links = page_links_non_bootstrap(curr_page.to_i, total_page_count, &page_link_constructor)
    return "<div class='pagination'>#{links}</div>"
  else
    ""
  end
end

.page_out_of_bounds?(curr_page, per_page, total_entry_count) ⇒ Boolean

Returns:

  • (Boolean)


69
70
71
72
73
74
75
76
77
# File 'lib/just_paginate.rb', line 69

def self.page_out_of_bounds?(curr_page, per_page, total_entry_count)
  if curr_page < 1
    true
  else
    start_index = ((curr_page-1)*per_page)
    end_index = (start_index+per_page)-1
    start_index > total_entry_count
  end
end

.page_value(page) ⇒ Object

TODO make sure negative numbers, non-integers etc are just converted to page 1.



30
31
32
33
34
35
36
# File 'lib/just_paginate.rb', line 30

def self.page_value(page)
  if page.nil?
    1
  else
    page.to_i
  end
end

.paginate(curr_page, per_page, total_entry_count, &selection_strategy) ⇒ Object



38
39
40
41
42
43
# File 'lib/just_paginate.rb', line 38

def self.paginate(curr_page, per_page, total_entry_count,  &selection_strategy)
  raise "Pagination just supplies index range, expects a selection strategy" if selection_strategy.nil?

  entries = yield(index_range(curr_page, per_page, total_entry_count)) || []
  return entries, total_page_number(total_entry_count, per_page)
end

.total_page_number(total_entry_count, per_page) ⇒ Object



45
46
47
# File 'lib/just_paginate.rb', line 45

def self.total_page_number(total_entry_count, per_page)
  (total_entry_count.to_f / per_page).ceil
end