私は、タスク/トードを検出してビューに渡すことを目的としたコントローラーに関する懸念があります。私はここでは、それらのタスクコントローラーでの表示内容の提供
<%= yield(:tasks) if content_for?(:tasks) %>
をレンダリングするために予約されたスペースを持っている私のアプリケーションのレイアウトで
は、私はApplicationControllerにに含めるモジュールです。私がbyebugに確認しなかった
module TaskControl
extend ActiveSupport::Concern
included do
before_action :check_tasks
def check_tasks
if user_signed_in? and current_user.tasks.todos.any?
# TODO : better task strategy afterwards
view_context.provide(:tasks,
view_context.cell(:tasks, current_user.tasks.todos.first)
)
end
view_context.content_for?(:tasks) # => false :'(
end
end
end
注意、
view_context.cell(:tasks, current_user.tasks.todos.first).blank? # => false, so there is something to render