Sha256: 68abd2884473fc2ddadee6df00ff803122baf28a8923ce6ec1dd1491c737298a

Contents?: true

Size: 1.28 KB

Versions: 11

Compression:

Stored size: 1.28 KB

Contents

module Lookbook
  class PagesController < ApplicationController
    def self.controller_path
      "lookbook/pages"
    end

    def index
      landing = Lookbook.pages.find(&:landing) || Lookbook.pages.first
      if landing.present?
        redirect_to page_path landing.lookup_path
      else
        @title = "Not found"
        render "not_found"
      end
    end

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

    protected

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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
lookbook-0.8.3 app/controllers/lookbook/pages_controller.rb
lookbook-0.8.2 app/controllers/lookbook/pages_controller.rb
lookbook-0.8.1 app/controllers/lookbook/pages_controller.rb
lookbook-0.8.0 app/controllers/lookbook/pages_controller.rb
lookbook-0.8.0.beta.0 app/controllers/lookbook/pages_controller.rb
lookbook-0.7.4 app/controllers/lookbook/pages_controller.rb
lookbook-0.7.3 app/controllers/lookbook/pages_controller.rb
lookbook-0.7.2 app/controllers/lookbook/pages_controller.rb
lookbook-0.7.2.beta.5 app/controllers/lookbook/pages_controller.rb
lookbook-0.7.2.beta.4 app/controllers/lookbook/pages_controller.rb
lookbook-0.7.2.beta.3 app/controllers/lookbook/pages_controller.rb