Sha256: 53599118b17c00d84b747b4a7e4128ca9418f7f73d7d780bb7cf6cfd20b2c14c
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
# See Pagy::Countless API documentation: https://ddnexus.github.io/pagy/api/calendar # frozen_string_literal: true class Pagy # :nodoc: class Calendar # :nodoc: # Calendar quarter subclass class Quarter < Calendar DEFAULT = { order: :asc, # rubocop:disable Style/MutableConstant format: '%Y-Q%q' } # '%q' token # The label for any page, with the substitution of the '%q' token def label_for(page, opts = {}) starting_time = starting_time_for(page.to_i) # page could be a string opts[:format] = (opts[:format] || @vars[:format]).gsub('%q') { (starting_time.month / 3.0).ceil } localize(starting_time, opts) end protected # Setup the calendar variables def setup_unit_vars super @initial = @starting.beginning_of_quarter @final = @ending.next_quarter.beginning_of_quarter @pages = @last = (months_in(@final) - months_in(@initial)) / 3 @from = starting_time_for(@page) @to = @from.next_quarter end # Starting time for the page def starting_time_for(page) @initial.months_since(time_offset_for(page) * 3) end def page_offset_at(time) (months_in(time.beginning_of_quarter) - months_in(@initial)) / 3 end private # Number of months in time def months_in(time) (time.year * 12) + time.month end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pagy-6.0.0 | lib/pagy/calendar/quarter.rb |