Sha256: 9256a36d7367d2d3eee15930c1d2e024424cc4000287b85096b408eab23bf1a4

Contents?: true

Size: 746 Bytes

Versions: 4

Compression:

Stored size: 746 Bytes

Contents

module React
  # Recursively camelize `props`, returning a new Hash
  # @param props [Object] If it's a Hash or Array, it will be recursed. Otherwise it will be returned.
  # @return [Hash] a new hash whose keys are camelized strings
  def self.camelize_props(props)
    case props
    when Hash
      props.each_with_object({}) do |(key, value), new_props|
        new_key = key.to_s.camelize(:lower)
        new_value = camelize_props(value)
        new_props[new_key] = new_value
      end
    when Array
      props.map { |item| camelize_props(item) }
    else
      if defined?(ActionController::Parameters) && props.is_a?(ActionController::Parameters)
        camelize_props(props.to_h)
      else
        props
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
react-rails-2.6.2 lib/react.rb
react-rails-2.6.1 lib/react.rb
react-rails-2.6.0 lib/react.rb
react-rails-2.5.0 lib/react.rb