dates_helper.rb
2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
module DatesHelper
include GetText
MONTHS = [
N_('January'),
N_('February'),
N_('March'),
N_('April'),
N_('May'),
N_('June'),
N_('July'),
N_('August'),
N_('September'),
N_('October'),
N_('November'),
N_('December')
]
def month_name(n)
_(MONTHS[n-1])
end
# formats a date for displaying.
def show_date(date)
if date
_('%{month} %{day}, %{year}') % { :day => date.day, :month => month_name(date.month), :year => date.year }
else
''
end
end
# formats a datetime for displaying.
def show_time(time)
if time
time.strftime(_('%d %B %Y, %H:%m'))
else
''
end
end
def show_period(date1, date2 = nil)
if (date1 == date2) || (date2.nil?)
show_date(date1)
else
_('from %s to %s') % [show_date(date1), show_date(date2)]
end
end
def show_day_of_week(date)
# FIXME Date#strftime should translate this for us !!!!
_([
N_('Sunday'),
N_('Monday'),
N_('Tuesday'),
N_('Wednesday'),
N_('Thursday'),
N_('Friday'),
N_('Saturday'),
][date.wday])
end
def show_month(year, month)
if year.blank?
year = Date.today.year
end
if month.blank?
month = Date.today.month
end
_('%{month} %{year}') % { :year => year, :month => month_name(month.to_i) }
end
def link_to_previous_month(year, month)
date = (year.blank? || month.blank?) ? Date.today : Date.new(year.to_i, month.to_i, 1)
previous_month_date = date - 1.month
link_to '← ' + show_month(previous_month_date.year, previous_month_date.month), :year => previous_month_date.year, :month => previous_month_date.month
end
def link_to_next_month(year, month)
date = (year.blank? || month.blank?) ? Date.today : Date.new(year.to_i, month.to_i, 1)
next_month_date = date + 1.month
link_to show_month(next_month_date.year, next_month_date.month) + ' →', :year => next_month_date.year, :month => next_month_date.month
end
def pick_date(object, method, options = {}, html_options = {})
date_select(object, method, html_options.merge(options.merge(:use_month_names => MONTHS.map {|item| gettext(item)})))
end
end