discourse/app/models/concerns/positionable.rb

37 lines
979 B
Ruby
Raw Normal View History

2014-04-19 00:00:40 -04:00
module Positionable
extend ActiveSupport::Concern
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)
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",
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
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",
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
DB.exec "
2014-04-19 00:00:40 -04:00
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