2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 09:17:42 -04:00
|
|
|
class List < ApplicationRecord
|
2016-07-27 15:32:32 -04:00
|
|
|
belongs_to :board
|
|
|
|
belongs_to :label
|
|
|
|
|
2018-08-07 13:29:06 -04:00
|
|
|
enum list_type: { backlog: 0, label: 1, closed: 2, assignee: 3, milestone: 4 }
|
2016-07-27 15:32:32 -04:00
|
|
|
|
2016-07-28 18:26:16 -04:00
|
|
|
validates :board, :list_type, presence: true
|
|
|
|
validates :label, :position, presence: true, if: :label?
|
2016-08-03 13:21:22 -04:00
|
|
|
validates :label_id, uniqueness: { scope: :board_id }, if: :label?
|
2018-06-07 16:54:24 -04:00
|
|
|
validates :position, numericality: { only_integer: true, greater_than_or_equal_to: 0 }, if: :movable?
|
2016-07-31 19:45:56 -04:00
|
|
|
|
2016-08-16 10:31:21 -04:00
|
|
|
before_destroy :can_be_destroyed
|
|
|
|
|
2018-06-07 16:54:24 -04:00
|
|
|
scope :destroyable, -> { where(list_type: list_types.slice(*destroyable_types).values) }
|
|
|
|
scope :movable, -> { where(list_type: list_types.slice(*movable_types).values) }
|
2018-09-10 13:26:33 -04:00
|
|
|
scope :preload_associations, -> { preload(:board, :label) }
|
2019-06-26 18:32:51 -04:00
|
|
|
scope :ordered, -> { order(:list_type, :position) }
|
2018-06-07 16:54:24 -04:00
|
|
|
|
|
|
|
class << self
|
|
|
|
def destroyable_types
|
|
|
|
[:label]
|
|
|
|
end
|
|
|
|
|
|
|
|
def movable_types
|
|
|
|
[:label]
|
|
|
|
end
|
|
|
|
end
|
2016-08-16 10:31:21 -04:00
|
|
|
|
|
|
|
def destroyable?
|
2018-08-07 13:29:06 -04:00
|
|
|
self.class.destroyable_types.include?(list_type&.to_sym)
|
2016-08-16 10:31:21 -04:00
|
|
|
end
|
2016-07-31 19:48:00 -04:00
|
|
|
|
2016-08-16 13:38:43 -04:00
|
|
|
def movable?
|
2018-08-07 13:29:06 -04:00
|
|
|
self.class.movable_types.include?(list_type&.to_sym)
|
2016-08-16 13:38:43 -04:00
|
|
|
end
|
|
|
|
|
2016-07-31 19:45:56 -04:00
|
|
|
def title
|
2016-08-15 22:07:59 -04:00
|
|
|
label? ? label.name : list_type.humanize
|
2016-07-31 19:45:56 -04:00
|
|
|
end
|
2016-07-31 19:48:00 -04:00
|
|
|
|
2016-10-14 19:51:41 -04:00
|
|
|
def as_json(options = {})
|
|
|
|
super(options).tap do |json|
|
2017-06-02 13:11:26 -04:00
|
|
|
if options.key?(:label)
|
2016-10-14 19:51:41 -04:00
|
|
|
json[:label] = label.as_json(
|
|
|
|
project: board.project,
|
2018-05-14 16:40:48 -04:00
|
|
|
only: [:id, :title, :description, :color],
|
|
|
|
methods: [:text_color]
|
2016-10-14 19:51:41 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-31 19:48:00 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def can_be_destroyed
|
2019-01-03 13:23:37 -05:00
|
|
|
throw(:abort) unless destroyable?
|
2016-07-31 19:48:00 -04:00
|
|
|
end
|
2016-07-27 15:32:32 -04:00
|
|
|
end
|