Class: Redmine::Helpers::Calendar
- Inherits:
-
Object
- Object
- Redmine::Helpers::Calendar
- Includes:
- Redmine::I18n
- Defined in:
- lib/redmine/helpers/calendar.rb
Overview
Simple class to compute the start and end dates of a calendar
Instance Attribute Summary
-
- (Object) enddt
readonly
Returns the value of attribute enddt.
-
- (Object) startdt
readonly
Returns the value of attribute startdt.
Instance Method Summary
-
- (Object) events(events)
Sets calendar events.
-
- (Object) events_on(day)
Returns events for the given day.
-
- (Object) first_wday
Return the first day of week 1 = Monday …
-
- (Calendar) initialize(date, lang = current_language, period = :month)
constructor
A new instance of Calendar.
- - (Object) last_wday
-
- (Object) month
Calendar current month.
Methods included from Redmine::I18n
#current_language, #day_name, #find_language, #format_date, #format_time, included, #l, #l_hours, #l_or_humanize, #ll, #month_name, #set_language_if_valid, #valid_languages
Constructor Details
- (Calendar) initialize(date, lang = current_language, period = :month)
A new instance of Calendar
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/redmine/helpers/calendar.rb', line 26 def initialize(date, lang = current_language, period = :month) @date = date @events = [] @ending_events_by_days = {} @starting_events_by_days = {} set_language_if_valid lang case period when :month @startdt = Date.civil(date.year, date.month, 1) @enddt = (@startdt >> 1)-1 # starts from the first day of the week @startdt = @startdt - (@startdt.cwday - first_wday)%7 # ends on the last day of the week @enddt = @enddt + (last_wday - @enddt.cwday)%7 when :week @startdt = date - (date.cwday - first_wday)%7 @enddt = date + (last_wday - date.cwday)%7 else raise 'Invalid period' end end |
Instance Attribute Details
- (Object) enddt (readonly)
Returns the value of attribute enddt
24 25 26 |
# File 'lib/redmine/helpers/calendar.rb', line 24 def enddt @enddt end |
- (Object) startdt (readonly)
Returns the value of attribute startdt
24 25 26 |
# File 'lib/redmine/helpers/calendar.rb', line 24 def startdt @startdt end |
Instance Method Details
- (Object) events=(events)
Sets calendar events
49 50 51 52 53 |
# File 'lib/redmine/helpers/calendar.rb', line 49 def events=(events) @events = events @ending_events_by_days = @events.group_by {|event| event.due_date} @starting_events_by_days = @events.group_by {|event| event.start_date} end |
- (Object) events_on(day)
Returns events for the given day
56 57 58 |
# File 'lib/redmine/helpers/calendar.rb', line 56 def events_on(day) ((@ending_events_by_days[day] || []) + (@starting_events_by_days[day] || [])).uniq end |
- (Object) first_wday
Return the first day of week 1 = Monday … 7 = Sunday
67 68 69 70 71 72 73 74 75 76 |
# File 'lib/redmine/helpers/calendar.rb', line 67 def first_wday case Setting.start_of_week.to_i when 1 @first_dow ||= (1 - 1)%7 + 1 when 7 @first_dow ||= (7 - 1)%7 + 1 else @first_dow ||= (l(:general_first_day_of_week).to_i - 1)%7 + 1 end end |
- (Object) last_wday
78 79 80 |
# File 'lib/redmine/helpers/calendar.rb', line 78 def last_wday @last_dow ||= (first_wday + 5)%7 + 1 end |
- (Object) month
Calendar current month
61 62 63 |
# File 'lib/redmine/helpers/calendar.rb', line 61 def month @date.month end |