1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support/option_merger.rb
Sean Doyle 8dc27b59c5 Support Object#with_options without a block
When the block argument is omitted, the decorated Object instance is returned:

```ruby
 # app/helpers/my_styled_helpers.rb
 module MyStyledHelpers
   def styled
     with_options style: "color: red;"
   end
 end

 # styled.link_to "I'm red", "/"
 # #=> <a href="/" style="color: red;">I'm red</a>

 # styled.button_tag "I'm red too!"
 # #=> <button style="color: red;">I'm red too!</button>
```
2021-11-15 17:00:36 -05:00

38 lines
1 KiB
Ruby

# frozen_string_literal: true
require "active_support/core_ext/hash/deep_merge"
module ActiveSupport
class OptionMerger # :nodoc:
instance_methods.each do |method|
undef_method(method) unless method.start_with?("__", "instance_eval", "class", "object_id")
end
def initialize(context, options)
@context, @options = context, options
end
private
def method_missing(method, *arguments, &block)
options = nil
if arguments.first.is_a?(Proc)
proc = arguments.pop
arguments << lambda { |*args| @options.deep_merge(proc.call(*args)) }
elsif arguments.last.respond_to?(:to_hash)
options = @options.deep_merge(arguments.pop)
else
options = @options
end
if options
@context.__send__(method, *arguments, **options, &block)
else
@context.__send__(method, *arguments, &block)
end
end
def respond_to_missing?(*arguments)
@context.respond_to?(*arguments)
end
end
end