metaminded/tabulatr2

View on GitHub
lib/tabulatr/data/sorting.rb

Summary

Maintainability
A
1 hr
Test Coverage
#--
# Copyright (c) 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.
#++

module Tabulatr::Data::Sorting

  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?
      if @default_order.is_a? String
        @relation = @relation.reorder(Arel.sql @default_order)
      else
        @relation = @relation.reorder(@default_order)
      end
    else
      @relation = @relation.reorder(Arel.sql "#{@table_name}.#{@base.primary_key} desc")
    end
  end

  def sort_by(column, orientation)
      sort_sql = column.col_options.sort_sql
      orientation = 'asc' unless ['asc', 'desc'].member?(orientation.downcase)
      if sort_sql.respond_to? :call
        @relation = sort_sql.call(@relation, orientation, "#{@table_name}.#{@base.primary_key}", @base)
      else
        @relation = @relation.reorder(Arel.sql "#{sort_sql} #{orientation}, #{@table_name}.id desc")
      end
  end

end

Tabulatr::Data.send :include, Tabulatr::Data::Sorting