Skip to content

Instantly share code, notes, and snippets.

@imajes
Created October 14, 2014 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imajes/997c160842e0077dd242 to your computer and use it in GitHub Desktop.
Save imajes/997c160842e0077dd242 to your computer and use it in GitHub Desktop.
module CMS::Orderable
extend ActiveSupport::Concern
def order_scope
if self.class.order_scope && (scoped = send(self.class.order_scope))
scoped.send(self.class.model_name.collection)
else
self.class
end
end
module ClassMethods
def orderable name, options = {}
default_scope { order(name) }
after_save :"order_#{name}"
if options[:order_scope] then order_scope(options[:order_scope]) end
define_method :"order_#{name}" do
order_scope.where("#{name} >= #{send(name)}").where("id != #{id}").select(:id).select(name).inject(send(name)) do |i, record|
record.update_column name, (i += 1) ; i
end
order_scope.all.inject(1) do |i, record|
record.update_column name, i ; i + 1
end
end
end
def order_scope scope = false
if scope then @order_scope = scope else @order_scope end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment