Sha256: cf9471306ea23599138b08034b01bedbb8f5eb401eb7d6748922207ed605cd43
Contents?: true
Size: 1.35 KB
Versions: 58
Compression:
Stored size: 1.35 KB
Contents
module ActiveAdmin module ViewHelpers module FormHelper # Flatten a params Hash to an array of fields. # # @param params [Hash] # @param options [Hash] :namespace and :except # # @return [Array] of [Hash] with one element. # # @example # fields_for_params(scope: "all", users: ["greg"]) # => [ {"scope" => "all"} , {"users[]" => "greg"} ] # def fields_for_params(params, options = {}) namespace = options[:namespace] except = options[:except].is_a?(Array) ? options[:except] : [options[:except]] params.map do |k, v| next if namespace.nil? && %w(controller action commit utf8).include?(k.to_s) next if except.map(&:to_s).include?(k.to_s) if namespace k = "#{namespace}[#{k}]" end case v when String { k => v } when Symbol { k => v.to_s } when Hash fields_for_params(v, :namespace => k) when Array v.map do |v| { "#{k}[]" => v } end when nil { k => '' } when TrueClass,FalseClass { k => v } else raise "I don't know what to do with #{v.class} params: #{v.inspect}" end end.flatten.compact end end end end
Version data entries
58 entries across 58 versions & 4 rubygems