summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci/status_action_type.rb
blob: c0f61cf49f2f024d4a85fa8b787a5cdcc8697e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
module Types
  module Ci
    # rubocop: disable Graphql/AuthorizeTypes
    class StatusActionType < BaseObject
      graphql_name 'StatusAction'

      field :button_title, GraphQL::Types::String, null: true,
            description: 'Title for the button, for example: Retry this job.'
      field :icon, GraphQL::Types::String, null: true,
            description: 'Icon used in the action button.'
      field :id, GraphQL::Types::String, null: false,
            description: 'ID for a status action.',
            extras: [:parent]
      field :method, GraphQL::Types::String, null: true,
            description: 'Method for the action, for example: :post.',
            resolver_method: :action_method
      field :path, GraphQL::Types::String, null: true,
            description: 'Path for the action.'
      field :title, GraphQL::Types::String, null: true,
            description: 'Title for the action, for example: Retry.'

      def id(parent:)
        # parent is a SimpleDelegator
        "#{parent.subject.class.name}-#{parent.id}"
      end

      def action_method
        object[:method]
      end
    end
  end
end