RailsCast #213 カレンダー (改訂版)published_on
は、ブログ投稿の日付を示すカレンダーの作成に関するものです。ではviews/articles/index.html
、作成者は次のコードを挿入します。
<%= calendar @date do |date| %>
<%= date.day %>
<% end %>
これは、彼が に組み込んだヘルパー メソッドを呼び出しますcalendar_helper.rb
。これは Rails 3.2 アプリでは機能しますが、Rails 4 アプリで使用しようとすると、空白のページしか表示されません。puts
メソッドにステートメントを入れtable
ます:
def table
content_tag :table, class: "calendar" do
puts header
puts week_rows
header + week_rows
end
end
カレンダーはサーバー ログに出力されますが、ページにはまだ何も表示されません。Ruby 2 を使用する Rails 4 でこのコードが廃止される理由はありますか?
module CalendarHelper
def calendar(date = Date.today, &block)
Calendar.new(self, date, block).table
end
class Calendar < Struct.new(:view, :date, :callback)
HEADER = %w[Sunday Monday Tuesday Wednesday Thursday Friday Saturday]
START_DAY = :sunday
delegate :content_tag, to: :view
def table
content_tag :table, class: "calendar" do
header + week_rows
end
end
def header
content_tag :tr do
HEADER.map { |day| content_tag :th, day }.join.html_safe
end
end
def week_rows
weeks.map do |week|
content_tag :tr do
week.map { |day| day_cell(day) }.join.html_safe
end
end.join.html_safe
end
def day_cell(day)
content_tag :td, view.capture(day, &callback), class: day_classes(day)
end
def day_classes(day)
classes = []
classes << "today" if day == Date.today
classes << "notmonth" if day.month != date.month
classes.empty? ? nil : classes.join(" ")
end
def weeks
first = date.beginning_of_month.beginning_of_week(START_DAY)
last = date.end_of_month.end_of_week(START_DAY)
(first..last).to_a.in_groups_of(7)
end
end
end