Sha256: dd718e2bebe307325045b20c67f034134b0c720822ec21f74ff677e1a4c31160
Contents?: true
Size: 1.56 KB
Versions: 4
Compression:
Stored size: 1.56 KB
Contents
module RailsCoreExtensions class Sortable # params is either: # SIMPLE: # model_body (where model is the model name) # SCOPED: # scope (name of the scope, e.g. category_id) # category_id (or whatever the name of scope is) # model_1_body (or whatever id of scope id) def initialize(params, controller_name) @params = params.symbolize_keys @controller_name = controller_name @klass = controller_name.classify.constantize end def sort scope = @params[:scope].try(:to_sym) @params[scope] = nil if @params[scope].blank? body_key = @controller_name.singularize + (@params[scope] ? "_#{@params[scope]}" : '') sorted_id_list = @params["#{body_key}_body".to_sym] if sorted_id_list.blank? sorted_id_list = @params["#{scope.to_s.gsub('_id', '')}_#{@params[scope]}_body".to_sym] end collection = @klass.reorder(:position) collection = collection.where(@params.slice(scope)) unless scope.blank? sort_collection(collection.find(sorted_id_list.map(&:to_i)), sorted_id_list.map(&:to_i)) end private def sort_collection(collection_old, collection_new_ids) @klass.transaction do collection_old.each.with_index do |object, index| next if object.id == collection_new_ids[index] new_position = collection_new_ids.index(object.id) + 1 update(object, new_position) end end end def update(object, new_position) @klass.where(id: object.id).limit(1).update_all(position: new_position) end end end
Version data entries
4 entries across 4 versions & 1 rubygems