2019-10-08 19:38:57 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RepositoryStatusValue < ApplicationRecord
|
|
|
|
belongs_to :repository_status_item
|
|
|
|
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User', optional: true,
|
2019-12-10 16:40:40 +08:00
|
|
|
inverse_of: :created_repository_status_value
|
2019-10-08 19:38:57 +08:00
|
|
|
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User', optional: true,
|
2019-12-10 16:40:40 +08:00
|
|
|
inverse_of: :modified_repository_status_value
|
2019-10-08 19:38:57 +08:00
|
|
|
has_one :repository_cell, as: :value, dependent: :destroy, inverse_of: :value
|
2019-11-06 18:44:00 +08:00
|
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
|
2020-01-10 18:09:47 +08:00
|
|
|
validates :repository_cell, :repository_status_item, presence: true
|
2019-11-06 18:44:00 +08:00
|
|
|
|
|
|
|
SORTABLE_COLUMN_NAME = 'repository_status_items.status'
|
|
|
|
SORTABLE_VALUE_INCLUDE = { repository_status_value: :repository_status_item }.freeze
|
|
|
|
|
|
|
|
def formatted
|
|
|
|
data
|
|
|
|
end
|
|
|
|
|
2019-12-08 23:53:59 +08:00
|
|
|
def data_changed?(new_data)
|
|
|
|
new_data.to_i != repository_status_item_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_data!(new_data, user)
|
|
|
|
self.repository_status_item_id = new_data.to_i
|
|
|
|
self.last_modified_by = user
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
|
2019-11-06 18:44:00 +08:00
|
|
|
def data
|
|
|
|
return nil unless repository_status_item
|
|
|
|
|
|
|
|
"#{repository_status_item.icon} #{repository_status_item.status}"
|
|
|
|
end
|
2019-12-09 20:48:24 +08:00
|
|
|
|
|
|
|
def self.new_with_payload(payload, attributes)
|
|
|
|
value = new(attributes)
|
|
|
|
value.repository_status_item = value.repository_cell
|
|
|
|
.repository_column
|
|
|
|
.repository_status_items
|
|
|
|
.find(payload)
|
|
|
|
value
|
|
|
|
end
|
2020-01-10 16:29:20 +08:00
|
|
|
|
|
|
|
alias export_formatted formatted
|
2019-10-08 19:38:57 +08:00
|
|
|
end
|