I am trying to get link_to to work when rendering a view outside of a controller. I've tried a couple different solutions found on the internet. You can see one attempt commented out.
It keeps resulting in: undefined method `host' for nil:NilClass
ac = ApplicationController.new
ac.class.include Rails.application.routes.url_helpers
#context = Rails.configuration.paths['app/views']
#view = ActionView::Base.new(context)
#view.class.include Rails.application.routes.url_helpers
#view.render :layout => 'layouts/pdf.html.haml', :template => 'reports/show.pdf.haml', locals: {alerts:@alerts}
ac.render_to_string(:layout => 'layouts/pdf.html.haml', :template => 'reports/show.pdf.haml', locals: {alerts:@alerts})
I also tried over riding the class. None of the ActionView::Base stuff seems to work.
class ViewRenderer < ActionView::Base
include Rails.application.routes.url_helpers
include ApplicationHelper
def default_url_options
{host: Rails.application.routes.default_url_options[:host]}
end
end