Sha256: 6f73e79803d00d214773f21f48e2a1234c25599dbe7e7dfab6d0fd78bc707d8a

Contents?: true

Size: 953 Bytes

Versions: 3

Compression:

Stored size: 953 Bytes

Contents

module HighVoltage::StaticPage
  extend ActiveSupport::Concern

  included do
    layout ->(_) { HighVoltage.layout }

    rescue_from ActionView::MissingTemplate do |exception|
      if exception.message =~ %r{Missing template #{page_finder.content_path}}
        raise ActionController::RoutingError, "No such page: #{params[:id]}"
      else
        raise exception
      end
    end

    if respond_to?(:caches_action)
      caches_action :show, layout: HighVoltage.action_caching_layout,
        if: -> { HighVoltage.action_caching }
    end

    if respond_to?(:caches_page)
      caches_page :show, if: -> { HighVoltage.page_caching }
    end

    hide_action :current_page, :page_finder, :page_finder_factory
  end

  def show
    render template: current_page
  end

  def current_page
    page_finder.find
  end

  def page_finder
    page_finder_factory.new(params[:id])
  end

  def page_finder_factory
    HighVoltage::PageFinder
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
high_voltage-2.2.1 app/controllers/concerns/high_voltage/static_page.rb
high_voltage-2.2.0 app/controllers/concerns/high_voltage/static_page.rb
high_voltage-2.1.0 app/controllers/concerns/high_voltage/static_page.rb