module Ransack module Helpers module FormHelper # +search_form_for+ # # <%= search_form_for(@q) do |f| %> # def search_form_for(record, options = {}, &proc) if record.is_a? Ransack::Search search = record options[:url] ||= polymorphic_path( search.klass, format: options.delete(:format) ) elsif record.is_a? Array && (search = record.detect { |o| o.is_a? Ransack::Search }) options[:url] ||= polymorphic_path( record.map { |o| o.is_a? Ransack::Search ? o.klass : o }, format: options.delete(:format) ) else raise ArgumentError, 'No Ransack::Search object was provided to search_form_for!' end options[:html] ||= {} html_options = { :class => options[:class].present? ? "#{options[:class]}" : "#{search.klass.to_s.underscore}_search", :id => options[:id].present? ? "#{options[:id]}" : "#{search.klass.to_s.underscore}_search", :method => :get } options[:as] ||= Ransack.options[:search_key] options[:html].reverse_merge!(html_options) options[:builder] ||= FormBuilder form_for(record, options, &proc) end # +sort_link+ # # <%= sort_link(@q, :name, [:name, 'kind ASC'], 'Player Name') %> # def sort_link(search_object, attribute, *args) search, routing_proxy = extract_search_and_routing_proxy(search_object) unless Search === search raise TypeError, 'First argument must be a Ransack::Search!' end s = SortLinkParser.new(search, attribute, args) link_to( s.name, url(routing_proxy, s.options_for_url(search, params)), s.html_options(args) ) end private def extract_search_and_routing_proxy(search) if search.is_a? Array [search.second, search.first] else [search, nil] end end def url(routing_proxy, options_for_url) if routing_proxy && respond_to?(routing_proxy) send(routing_proxy).url_for(options_for_url) else url_for(options_for_url) end end class SortLinkParser def initialize(search, attribute, args) field = attribute.to_s sort_fields = extract_sort_fields_and_mutate_args!(field, args).compact @current_dir = existing_sort_direction(search, field) @label_text = extract_label_and_mutate_args!(search, field, args) @options = extract_options_and_mutate_args!(args) @hide_indicator = @options.delete :hide_indicator @default_order = @options.delete :default_order if Hash === @default_order @default_order = @default_order.with_indifferent_access end @sort_params = initialize_sort_params(search, sort_fields) @sort_params = @sort_params.first if @sort_params.size == 1 end def name [ERB::Util.h(@label_text), order_indicator] .compact.join(Constants::NON_BREAKING_SPACE).html_safe end def options_for_url(search, params) params.merge( @options.merge( search.context.search_key => search_and_sort_params(search, params) ) ) end def html_options(args) html_options = extract_options_and_mutate_args!(args) html_options.merge(class: [[Constants::SORT_LINK, @current_dir], html_options[:class]] .compact.join(Constants::SPACE) ) end private def extract_sort_fields_and_mutate_args!(field, args) if args.first.is_a? Array args.shift else [field] end end def extract_label_and_mutate_args!(search, field, args) if args.first.is_a? String args.shift else Translate.attribute(field, :context => search.context) end end def extract_options_and_mutate_args!(args) if args.first.is_a? Hash args.shift else {} end end def search_and_sort_params(search, params) search_params(search, params).merge(:s => @sort_params) end def search_params(search, params) params[search.context.search_key].presence || {}.with_indifferent_access end def initialize_sort_params(search, sort_fields) sort_fields.each_with_object([]) do |field, a| attr_name, new_dir = field.to_s.split(/\s+/) if no_sort_direction_specified?(new_dir) new_dir = detect_previous_sort_direction_and_invert_it(search, attr_name) end a << "#{attr_name} #{new_dir}" end end def detect_previous_sort_direction_and_invert_it(search, attr_name) sort_dir = existing_sort_direction(search, attr_name) if sort_dir direction_text(sort_dir) else default_sort_order(attr_name) || Constants::ASC end end def existing_sort_direction(search, attr_name) if sort = search.sorts.detect { |s| s && s.name == attr_name } sort.dir end end def default_sort_order(attr_name) Hash === @default_order ? @default_order[attr_name] : @default_order end def order_indicator if @hide_indicator || no_sort_direction_specified? nil else direction_arrow end end def no_sort_direction_specified?(dir = @current_dir) !Constants::ASC_DESC.include?(dir) end def direction_arrow if @current_dir == Constants::DESC Constants::DESC_ARROW else Constants::ASC_ARROW end end def direction_text(dir) if dir == Constants::DESC Constants::ASC else Constants::DESC end end end end end end