Sha256: 67f8321d931a03e29a0f878526593a0dd7286c252c9f546cb1c77d89c181ee11
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
# frozen_string_literal: true require "forwardable" module Phlex::Rails # A decorator that buffers all missing method calls and captures the blocks passed to them. # @api private class Buffered < BasicObject extend ::Forwardable # @api private def self.define_builder_yielding_method(method_name, builder) class_eval(<<-RUBY, __FILE__, __LINE__ + 1) # frozen_string_literal: true def #{method_name}(*args, **kwargs, &block) output = if block @object.#{method_name}(*args, **kwargs) { |builder| @view.capture do yield( ::#{builder.name}.new(builder, view: @view ) ) end } else @object.#{method_name}(*args, **kwargs) end case output when ::ActiveSupport::SafeBuffer @view.instance_variable_get(:@_context).buffer << output end nil end RUBY end # @api private def initialize(object, view:) @object = object @view = view end def respond_to_missing?(...) @object.respond_to?(...) end def method_missing(*, **, &block) output = if block @object.public_send(*, **) { |*a| @view.capture(*a, &block) } else @object.public_send(*, **) end if ::ActiveSupport::SafeBuffer === output @view.instance_variable_get(:@_context).buffer << output end nil end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
phlex-rails-2.0.0.beta2 | lib/phlex/rails/buffered.rb |
phlex-rails-2.0.0.beta1 | lib/phlex/rails/buffered.rb |