2014-04-19 00:00:40 -04:00
|
|
|
module Positionable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2014-05-16 11:33:44 -04:00
|
|
|
included do
|
|
|
|
before_save do
|
|
|
|
self.position ||= self.class.count
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-19 00:00:40 -04:00
|
|
|
def move_to(position_arg)
|
|
|
|
|
|
|
|
position = [[position_arg, 0].max, self.class.count - 1].min
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
if self.position.nil? || position > (self.position)
|
2014-04-19 00:00:40 -04:00
|
|
|
self.exec_sql "
|
|
|
|
UPDATE #{self.class.table_name}
|
|
|
|
SET position = position - 1
|
|
|
|
WHERE position > :current_position and position <= :new_position",
|
2017-07-27 21:20:09 -04:00
|
|
|
current_position: self.position, new_position: position
|
2014-04-19 00:00:40 -04:00
|
|
|
elsif position < self.position
|
|
|
|
self.exec_sql "
|
|
|
|
UPDATE #{self.class.table_name}
|
|
|
|
SET position = position + 1
|
|
|
|
WHERE position >= :new_position and position < :current_position",
|
2017-07-27 21:20:09 -04:00
|
|
|
current_position: self.position, new_position: position
|
2014-04-19 00:00:40 -04:00
|
|
|
else
|
|
|
|
# Not moving to a new position
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
self.exec_sql "
|
|
|
|
UPDATE #{self.class.table_name}
|
|
|
|
SET position = :position
|
2017-07-27 21:20:09 -04:00
|
|
|
WHERE id = :id", id: id, position: position
|
2014-04-19 00:00:40 -04:00
|
|
|
end
|
|
|
|
end
|