Module: Mutations::WorkItems::Widgetable

Extended by:
ActiveSupport::Concern
Included in:
Create, Update
Defined in:
app/graphql/mutations/concerns/mutations/work_items/widgetable.rb

Instance Method Summary collapse

Instance Method Details

#extract_widget_params!(work_item_type, attributes) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'app/graphql/mutations/concerns/mutations/work_items/widgetable.rb', line 8

def extract_widget_params!(work_item_type, attributes)
  # Get the list of widgets for the work item's type to extract only the supported attributes
  widget_keys = ::WorkItems::WidgetDefinition.available_widgets.map(&:api_symbol)
  widget_params = attributes.extract!(*widget_keys)

  not_supported_keys = widget_params.keys - work_item_type.widgets.map(&:api_symbol)
  if not_supported_keys.present?
    raise Gitlab::Graphql::Errors::ArgumentError,
      "Following widget keys are not supported by #{work_item_type.name} type: #{not_supported_keys}"
  end

  # Cannot use prepare to use `.to_h` on each input due to
  # https://gitlab.com/gitlab-org/gitlab/-/merge_requests/87472#note_945199865
  widget_params.transform_values(&:to_h)
end