Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations/work_items/update.rb')
-rw-r--r--app/graphql/mutations/work_items/update.rb35
1 files changed, 34 insertions, 1 deletions
diff --git a/app/graphql/mutations/work_items/update.rb b/app/graphql/mutations/work_items/update.rb
index 04c63d8e876..db6af38d82e 100644
--- a/app/graphql/mutations/work_items/update.rb
+++ b/app/graphql/mutations/work_items/update.rb
@@ -22,8 +22,10 @@ module Mutations
spam_params = ::Spam::SpamParams.new_from_request(request: context[:request])
widget_params = extract_widget_params!(work_item.work_item_type, attributes)
+ interpret_quick_actions!(work_item, current_user, widget_params, attributes)
+
update_result = ::WorkItems::UpdateService.new(
- project: work_item.project,
+ container: work_item.project,
current_user: current_user,
params: attributes,
widget_params: widget_params,
@@ -43,6 +45,37 @@ module Mutations
def find_object(id:)
GitlabSchema.find_by_gid(id)
end
+
+ def interpret_quick_actions!(work_item, current_user, widget_params, attributes = {})
+ return unless work_item.work_item_type.widgets.include?(::WorkItems::Widgets::Description)
+
+ description_param = widget_params[::WorkItems::Widgets::Description.api_symbol]
+ return unless description_param
+
+ original_description = description_param.fetch(:description, work_item.description)
+
+ description, command_params = QuickActions::InterpretService
+ .new(work_item.project, current_user, {})
+ .execute(original_description, work_item)
+
+ description_param[:description] = description if description && description != original_description
+
+ # Widgets have a set of quick action params that they must process.
+ # Map them to widget_params so they can be picked up by widget services.
+ work_item.work_item_type.widgets
+ .filter { |widget| widget.respond_to?(:quick_action_params) }
+ .each do |widget|
+ widget.quick_action_params
+ .filter { |param_name| command_params.key?(param_name) }
+ .each do |param_name|
+ widget_params[widget.api_symbol] ||= {}
+ widget_params[widget.api_symbol][param_name] = command_params.delete(param_name)
+ end
+ end
+
+ # The command_params not processed by widgets (e.g. title) should be placed in 'attributes'.
+ attributes.merge!(command_params || {})
+ end
end
end
end