debian-mirror-gitlab/app/graphql/resolvers/todo_resolver.rb

63 lines
1.6 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
module Resolvers
class TodoResolver < BaseResolver
2021-01-29 00:20:46 +05:30
type Types::TodoType.connection_type, null: true
2019-12-21 20:55:43 +05:30
2020-10-24 23:57:45 +05:30
alias_method :target, :object
2019-12-21 20:55:43 +05:30
argument :action, [Types::TodoActionEnum],
required: false,
2021-03-08 18:12:59 +05:30
description: 'The action to be filtered.'
2019-12-21 20:55:43 +05:30
argument :author_id, [GraphQL::ID_TYPE],
required: false,
2021-03-08 18:12:59 +05:30
description: 'The ID of an author.'
2019-12-21 20:55:43 +05:30
argument :project_id, [GraphQL::ID_TYPE],
required: false,
2021-03-08 18:12:59 +05:30
description: 'The ID of a project.'
2019-12-21 20:55:43 +05:30
argument :group_id, [GraphQL::ID_TYPE],
required: false,
2021-03-08 18:12:59 +05:30
description: 'The ID of a group.'
2019-12-21 20:55:43 +05:30
argument :state, [Types::TodoStateEnum],
required: false,
2021-03-08 18:12:59 +05:30
description: 'The state of the todo.'
2019-12-21 20:55:43 +05:30
argument :type, [Types::TodoTargetEnum],
required: false,
2021-03-08 18:12:59 +05:30
description: 'The type of the todo.'
2019-12-21 20:55:43 +05:30
def resolve(**args)
2020-10-24 23:57:45 +05:30
return Todo.none unless current_user.present? && target.present?
return Todo.none if target.is_a?(User) && target != current_user
2019-12-21 20:55:43 +05:30
2021-08-04 16:29:09 +05:30
TodosFinder.new(current_user, todo_finder_params(args)).execute.with_entity_associations
2019-12-21 20:55:43 +05:30
end
private
def todo_finder_params(args)
{
2020-01-01 13:55:28 +05:30
state: args[:state],
type: args[:type],
group_id: args[:group_id],
author_id: args[:author_id],
action_id: args[:action],
project_id: args[:project_id]
2020-10-24 23:57:45 +05:30
}.merge(target_params)
end
def target_params
return {} unless TodosFinder::TODO_TYPES.include?(target.class.name)
{
type: target.class.name,
target_id: target.id
2019-12-21 20:55:43 +05:30
}
end
end
end