Module: Tabulatr::Data::Sorting

Defined in:
lib/tabulatr/data/sorting.rb

Overview

– Copyright © 2010-2014 Peter Horn & Florian Thomas, metaminded UG

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++

Instance Method Summary collapse

Instance Method Details

#apply_sorting(sortparam) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/tabulatr/data/sorting.rb', line 26

def apply_sorting(sortparam)
  if sortparam.present?
    clname, orientation = sortparam.split(' ')
    if clname[':']
      splitted = clname.split(':')
    else
      splitted = clname.split('.')
    end
    if splitted.count == 2
      assoc_name = splitted[0].to_sym
      name = splitted[1].to_sym
      column = table_columns.find{|c| c.table_name == assoc_name && c.name == name}
    else
      name = splitted[0].to_sym
      column = table_columns.find{|c| c.name == name}
    end
    sort_by(column, orientation)
  elsif @default_order.present?
    @relation = @relation.reorder(@default_order)
  else
    @relation = @relation.reorder("#{@table_name}.#{@base.primary_key} desc")
  end
end

#sort_by(column, orientation) ⇒ Object



50
51
52
53
54
55
56
57
# File 'lib/tabulatr/data/sorting.rb', line 50

def sort_by(column, orientation)
    sort_sql = column.col_options.sort_sql
    if sort_sql.respond_to? :call
      @relation = sort_sql.call(@relation, orientation, "#{@table_name}.#{@base.primary_key}", @base)
    else
      @relation = @relation.reorder("#{sort_sql} #{orientation}")
    end
end