Sha256: 3f0b232783eb704881d8ab60c053a93340261aba5d6d376df2fd6ff6ce5cad8a

Contents?: true

Size: 1.28 KB

Versions: 2

Compression:

Stored size: 1.28 KB

Contents

# The PathRenderer is a simple way to render a string of the contents of a view
# at the passed in path.

require 'volt/page/bindings/view_binding/view_lookup_for_path'
require 'volt/page/bindings/view_binding/controller_handler'
require 'volt/page/string_template_renderer'

module Volt
  class ViewLookupException < Exception ; end
  class PathStringRenderer
    attr_reader :html
    def initialize(path, attrs=nil, page=nil, render_from_path=nil)
      # use the global page if one is not passed in
      page ||= $page

      # where to do the path lookup from
      render_from_path ||= "main/main/main/body"

      # Make path into a full path
      @view_lookup = Volt::ViewLookupForPath.new(page, render_from_path)
      full_path, controller_path = @view_lookup.path_for_template(path, nil)

      if full_path == nil
        raise ViewLookupException, "Unable to find view at `#{path}`"
      end

      controller_class, action = ControllerHandler.get_controller_and_action(controller_path)

      controller = controller_class.new#(SubContext.new(attrs, nil, true))
      controller.model = SubContext.new(attrs, nil, true)

      renderer = StringTemplateRenderer.new(page, controller, full_path)

      @html = renderer.html

      # remove when done
      renderer.remove
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
volt-0.9.1 lib/volt/page/path_string_renderer.rb
volt-0.9.1.pre5 lib/volt/page/path_string_renderer.rb