Sha256: e61c2e8607ef36395a50e4b6e76b58179950ae1496e08102f5009099204396bb
Contents?: true
Size: 1.05 KB
Versions: 13
Compression:
Stored size: 1.05 KB
Contents
# See Pagy::Countless API documentation: https://ddnexus.github.io/pagy/docs/api/calendar # frozen_string_literal: true class Pagy # :nodoc: class Calendar # :nodoc: # Calendar month subclass class Month < Calendar DEFAULT = { order: :asc, # rubocop:disable Style/MutableConstant format: '%Y-%m' } protected # Setup the calendar variables def setup_unit_vars super @initial = @starting.beginning_of_month @final = @ending.next_month.beginning_of_month @pages = @last = (months_in(@final) - months_in(@initial)) @from = starting_time_for(@page) @to = @from.next_month end # Starting time for the page def starting_time_for(page) @initial.months_since(time_offset_for(page)) end def page_offset_at(time) months_in(time.beginning_of_month) - months_in(@initial) end private # Number of months in time def months_in(time) (time.year * 12) + time.month end end end end
Version data entries
13 entries across 13 versions & 1 rubygems