Sha256: 504c999486e23e1c609218b15dea2f4174313e7f9a455ec7d08971ce8e317619

Contents?: true

Size: 1.54 KB

Versions: 12

Compression:

Stored size: 1.54 KB

Contents

module Lookbook
  class PagesController < ApplicationController
    layout "lookbook/page"
    helper_method :page_controller
    helper Lookbook::PageHelper

    def self.controller_path
      "lookbook/pages"
    end

    def index
      landing = Lookbook.pages.find(&:landing) || Lookbook.pages.first
      if landing.present?
        redirect_to lookbook_page_path landing.lookup_path
      else
        show_404
      end
    end

    def show
      @page = @pages.find_by_path(params[:path])
      if @page
        @next_page = @pages.find_next(@page)
        @previous_page = @pages.find_previous(@page)
        if @page.errors.any?
          render_in_layout "lookbook/error",
            layout: "lookbook/page",
            error: @page.errors.first
        else
          begin
            @page_content = page_controller.render_page(@page)
            @title = @page.title
          rescue => exception
            render_in_layout "lookbook/error",
              layout: "lookbook/page",
              error: Lookbook::Error.new(exception, file_path: @page.full_path, source_code: @page.content)
          end
        end
      else
        show_404
      end
    end

    protected

    def show_404
      render "lookbook/404", locals: {
        message: "Page not found",
        description: "The page may have been removed or renamed."
      }
    end

    def page_controller
      controller_class = Lookbook.config.page_controller.constantize
      controller = controller_class.new
      controller.request = request
      controller
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
lookbook-1.3.4 app/controllers/lookbook/pages_controller.rb
lookbook-1.3.3 app/controllers/lookbook/pages_controller.rb
lookbook-1.3.1 app/controllers/lookbook/pages_controller.rb
lookbook-1.3.0 app/controllers/lookbook/pages_controller.rb
lookbook-1.2.1 app/controllers/lookbook/pages_controller.rb
lookbook-1.2.0 app/controllers/lookbook/pages_controller.rb
lookbook-1.1.1 app/controllers/lookbook/pages_controller.rb
lookbook-1.1.0 app/controllers/lookbook/pages_controller.rb
lookbook-1.0.8 app/controllers/lookbook/pages_controller.rb
lookbook-1.0.7 app/controllers/lookbook/pages_controller.rb
lookbook-1.0.6 app/controllers/lookbook/pages_controller.rb
lookbook-1.0.5 app/controllers/lookbook/pages_controller.rb