2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-04-19 00:00:40 -04:00
|
|
|
module Positionable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2014-05-16 11:33:44 -04:00
|
|
|
included { before_save { self.position ||= self.class.count } }
|
|
|
|
|
2014-04-19 00:00:40 -04: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 02:13:14 -04:00
|
|
|
DB.exec "
|
2014-04-19 00:00:40 -04: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 02:13:14 -04:00
|
|
|
DB.exec "
|
2014-04-19 00:00:40 -04: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 02:13:14 -04:00
|
|
|
DB.exec "
|
2014-04-19 00:00:40 -04:00
|
|
|
UPDATE #{self.class.table_name}
|
|
|
|
SET position = :position
|
|
|
|
WHERE id = :id",
|
|
|
|
id: id,
|
|
|
|
position: position
|
|
|
|
end
|
|
|
|
end
|