Sha256: 9107d5a9db26c92a405c17ce589964a798ef4c03c5cdcc2a8c1cc7b2556394c9
Contents?: true
Size: 1.68 KB
Versions: 1
Compression:
Stored size: 1.68 KB
Contents
# frozen_string_literal: true require_relative './unit' module TimeBoss class Calendar module Support # Units that are built off of month-granularities (months, quarters, etc). # Days and weeks are not built from these. class MonthlyUnit < Unit attr_reader :year_index, :index def initialize(calendar, year_index, index, start_date, end_date) super(calendar, start_date, end_date) @year_index = year_index @index = index end # Get a stringified representation of this unit. # @return [String] (e.g. "2020Q3: 2020-06-29 thru 2020-09-27") def to_s "#{name}: #{start_date} thru #{end_date}" end # Get a list of weeks contained within this period. # @return [Array<Week>] def weeks base = calendar.year(year_index) num_weeks = (((base.end_date - base.start_date) + 1) / 7.0).to_i num_weeks.times.map { |i| Week.new(calendar, base.start_date + (i * 7).days, base.start_date + ((i * 7) + 6).days) } .select { |w| w.start_date.between?(start_date, end_date) } end private def max_index 12 / self.class::NUM_MONTHS end def up if index == max_index calendar.send(self.class.type, year_index + 1, 1) else calendar.send(self.class.type, year_index, index + 1) end end def down if index == 1 calendar.send(self.class.type, year_index - 1, max_index) else calendar.send(self.class.type, year_index, index - 1) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
timeboss-0.1.0 | lib/timeboss/calendar/support/monthly_unit.rb |