2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-04-19 12:00:40 +08:00
|
|
|
module Positionable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2014-05-16 23:33:44 +08:00
|
|
|
included { before_save { self.position ||= self.class.count } }
|
|
|
|
|
2014-04-19 12:00:40 +08:00
|
|
|
def move_to(position_arg)
|
|
|
|
position = [[position_arg, 0].max, self.class.count - 1].min
|
|
|
|
|
|
|
|
if self.position.nil? || position > (self.position)
|
2018-06-19 14:13:14 +08:00
|
|
|
DB.exec "
|
2014-04-19 12:00:40 +08:00
|
|
|
UPDATE #{self.class.table_name}
|
|
|
|
SET position = position - 1
|
|
|
|
WHERE position > :current_position and position <= :new_position",
|
|
|
|
current_position: self.position,
|
|
|
|
new_position: position
|
|
|
|
elsif position < self.position
|
2018-06-19 14:13:14 +08:00
|
|
|
DB.exec "
|
2014-04-19 12:00:40 +08:00
|
|
|
UPDATE #{self.class.table_name}
|
|
|
|
SET position = position + 1
|
|
|
|
WHERE position >= :new_position and position < :current_position",
|
|
|
|
current_position: self.position,
|
|
|
|
new_position: position
|
|
|
|
else
|
|
|
|
# Not moving to a new position
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2018-06-19 14:13:14 +08:00
|
|
|
DB.exec "
|
2014-04-19 12:00:40 +08:00
|
|
|
UPDATE #{self.class.table_name}
|
|
|
|
SET position = :position
|
|
|
|
WHERE id = :id",
|
|
|
|
id: id,
|
|
|
|
position: position
|
|
|
|
end
|
|
|
|
end
|