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 'lib/gitlab/graphql/present.rb')
-rw-r--r--lib/gitlab/graphql/present.rb23
1 files changed, 21 insertions, 2 deletions
diff --git a/lib/gitlab/graphql/present.rb b/lib/gitlab/graphql/present.rb
index 6d86d632ab4..fdaf075eb25 100644
--- a/lib/gitlab/graphql/present.rb
+++ b/lib/gitlab/graphql/present.rb
@@ -12,11 +12,30 @@ module Gitlab
def self.presenter_class
@presenter_class
end
+
+ def self.present(object, attrs)
+ klass = @presenter_class
+ return object if !klass || object.is_a?(klass)
+
+ @presenter_class.new(object, **attrs)
+ end
+ end
+
+ def unpresented
+ unwrapped || object
end
- def self.use(schema_definition)
- schema_definition.instrument(:field, ::Gitlab::Graphql::Present::Instrumentation.new)
+ def present(object_type, attrs)
+ return unless object_type.respond_to?(:present)
+
+ self.unwrapped ||= object
+ # @object belongs to Schema::Object, which does not expose a writer.
+ @object = object_type.present(unwrapped, attrs) # rubocop: disable Gitlab/ModuleWithInstanceVariables
end
+
+ private
+
+ attr_accessor :unwrapped
end
end
end