Sha256: 634e34c036c6c25880e714ca4238ebb487a2ce978db7d5f32c5e600062358237

Contents?: true

Size: 1.36 KB

Versions: 8

Compression:

Stored size: 1.36 KB

Contents

module Lookbook
  module PreviewControllerActions
    extend ActiveSupport::Concern

    included do
      helper PreviewHelper
      prepend_view_path Engine.root.join("app/views")

      def render_scenario_to_string(preview, scenario_name)
        prepend_application_view_paths
        prepend_preview_examples_view_path

        @preview = preview
        @scenario_name = scenario_name
        @render_args = @preview.render_args(@scenario_name, params: params.permit!)
        template = @render_args[:template]
        locals = @render_args[:locals]
        opts = {}
        opts[:layout] = nil
        opts[:locals] = locals if locals.present?

        with_optional_action_view_annotations do
          render html: render_to_string(template, **opts)
        end
      end

      def render_in_layout_to_string(template, locals, opts = {})
        with_optional_action_view_annotations do
          html = render_to_string(template, locals: locals, **determine_layout(opts[:layout]))
          if opts[:append_html].present?
            html += opts[:append_html]
          end
          render html: html
        end
      end

      protected

      def with_optional_action_view_annotations(&block)
        disable = Lookbook.config.preview_disable_action_view_annotations
        ActionViewAnnotationsHandler.call(disable_annotations: disable, &block)
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
lookbook-2.0.0.beta.8 lib/lookbook/preview_controller_actions.rb
lookbook-2.0.0.beta.7 lib/lookbook/preview_controller_actions.rb
lookbook-2.0.0.beta.6 lib/lookbook/preview_controller_actions.rb
lookbook-2.0.0.beta.5 lib/lookbook/preview_controller_actions.rb
lookbook-2.0.0.beta.4 lib/lookbook/preview_controller_actions.rb
lookbook-2.0.0.beta.3 lib/lookbook/preview_controller_actions.rb
lookbook-2.0.0.beta.2 lib/lookbook/preview_controller_actions.rb
lookbook-2.0.0.beta.1 lib/lookbook/preview_controller_actions.rb