Sha256: feedd9080aa6a78375d4980fae91be4649d629a867304a945416afc388e67c6f

Contents?: true

Size: 978 Bytes

Versions: 125

Compression:

Stored size: 978 Bytes

Contents

module Admin::RegionsHelper
  def render_region(region, options={}, &block)
    lazy_initialize_region_set
    default_partials = TrustyCms::AdminUI::RegionPartials.new(self)
    if block_given?
      block.call(default_partials)
      (options[:locals] ||= {}).merge!(:defaults => default_partials)
    end
    output = @region_set[region].compact.map do |partial|
      begin
        render options.merge(:partial => partial)
      rescue ::ActionView::MissingTemplate # couldn't find template
        default_partials[partial]
      rescue ::ActionView::TemplateError => e # error in template
        raise e
      end
    end.join.html_safe
    Rails.logger.error(output)
    block_given? ? concat(output) : output
  end

  def lazy_initialize_region_set
    unless @region_set
      @controller_name ||= @_controller.controller_name
      @template_name ||= @_controller.template_name
      @region_set = admin.send(@controller_name).send(@template_name)
    end
  end
end

Version data entries

125 entries across 125 versions & 1 rubygems

Version Path
trusty-cms-4.1.2 app/helpers/admin/regions_helper.rb
trusty-cms-4.1.1 app/helpers/admin/regions_helper.rb
trusty-cms-4.1.0 app/helpers/admin/regions_helper.rb
trusty-cms-4.0.2 app/helpers/admin/regions_helper.rb
trusty-cms-3.9.7 app/helpers/admin/regions_helper.rb
trusty-cms-3.9.6 app/helpers/admin/regions_helper.rb
trusty-cms-3.9.5 app/helpers/admin/regions_helper.rb
trusty-cms-4.0.1 app/helpers/admin/regions_helper.rb
trusty-cms-3.9.4 app/helpers/admin/regions_helper.rb
trusty-cms-3.9.3 app/helpers/admin/regions_helper.rb
trusty-cms-3.9.2 app/helpers/admin/regions_helper.rb
trusty-cms-4.0.0 app/helpers/admin/regions_helper.rb
trusty-cms-3.9.1 app/helpers/admin/regions_helper.rb
trusty-cms-3.9.0 app/helpers/admin/regions_helper.rb
trusty-cms-3.8.4 app/helpers/admin/regions_helper.rb
trusty-cms-3.8.3 app/helpers/admin/regions_helper.rb
trusty-cms-3.8.2 app/helpers/admin/regions_helper.rb
trusty-cms-3.8.1 app/helpers/admin/regions_helper.rb
trusty-cms-3.8.0 app/helpers/admin/regions_helper.rb
trusty-cms-3.7.1 app/helpers/admin/regions_helper.rb