Class: Ransack::Helpers::FormHelper::SortLink

Inherits:
Object
  • Object
show all
Defined in:
lib/ransack/helpers/form_helper.rb

Instance Method Summary collapse

Constructor Details

#initialize(search, attribute, args, params) ⇒ SortLink

Returns a new instance of SortLink.



89
90
91
92
93
94
95
96
97
98
99
# File 'lib/ransack/helpers/form_helper.rb', line 89

def initialize(search, attribute, args, params)
  @search         = search
  @params         = params
  @field          = attribute.to_s
  @sort_fields    = extract_sort_fields_and_mutate_args!(args).compact
  @current_dir    = existing_sort_direction
  @label_text     = extract_label_and_mutate_args!(args)
  @options        = extract_options_and_mutate_args!(args)
  @hide_indicator = @options.delete :hide_indicator
  @default_order  = @options.delete :default_order
end

Instance Method Details

#html_options(args) ⇒ Object



114
115
116
117
118
119
120
# File 'lib/ransack/helpers/form_helper.rb', line 114

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

#nameObject



101
102
103
104
105
106
# File 'lib/ransack/helpers/form_helper.rb', line 101

def name
  [ERB::Util.h(@label_text), order_indicator]
  .compact
  .join(Constants::NON_BREAKING_SPACE)
  .html_safe
end

#url_optionsObject



108
109
110
111
112
# File 'lib/ransack/helpers/form_helper.rb', line 108

def url_options
  @params.merge(
    @options.merge(
      @search.context.search_key => search_and_sort_params))
end