gitlab-ce/app/models/work_items/widget_definition.rb

80 lines
2.2 KiB
Ruby

# frozen_string_literal: true
module WorkItems
class WidgetDefinition < ApplicationRecord
self.table_name = 'work_item_widget_definitions'
belongs_to :work_item_type, class_name: 'WorkItems::Type', inverse_of: :widget_definitions
validates :name, presence: true
validates :name, custom_uniqueness: { unique_sql: 'TRIM(BOTH FROM lower(?))', scope: :work_item_type_id }
validates :name, length: { maximum: 255 }
validates :widget_options, if: :weight?,
json_schema: { filename: 'work_item_weight_widget_options', hash_conversion: true }
validates :widget_options, absence: true, unless: :weight?
scope :enabled, -> { where(disabled: false) }
scope :by_enabled_widget_type, ->(widget_type) { enabled.where(widget_type: widget_type) }
enum :widget_type, {
assignees: 0,
description: 1,
hierarchy: 2,
labels: 3,
milestone: 4,
notes: 5,
start_and_due_date: 6,
health_status: 7, # EE-only
weight: 8, # EE-only
iteration: 9, # EE-only
progress: 10, # EE-only
verification_status: 11, # EE-only
requirement_legacy: 12, # EE-only
test_reports: 13, # EE-only
notifications: 14,
current_user_todos: 15,
award_emoji: 16,
linked_items: 17,
color: 18, # EE-only
participants: 20,
time_tracking: 21,
designs: 22,
development: 23,
crm_contacts: 24,
email_participants: 25,
status: 26, # EE-only
linked_resources: 27,
custom_fields: 28, # EE-only
error_tracking: 29,
vulnerabilities: 30 # EE-only
}
attribute :widget_options, ::Gitlab::Database::Type::IndifferentJsonb.new
def self.available_widgets
enabled.filter_map(&:widget_class).uniq
end
def self.widget_classes
WorkItems::WidgetDefinition.widget_types.keys.filter_map do |type|
WorkItems::Widgets.const_get(type.camelize, false)
rescue NameError
nil
end
end
def widget_class
return unless widget_type
WorkItems::Widgets.const_get(widget_type.camelize, false)
rescue NameError
nil
end
def build_widget(work_item)
widget_class.new(work_item, widget_definition: self)
end
end
end