From 476cd347c29a973b4d2c1e7da77115c6a8e6da5a Mon Sep 17 00:00:00 2001 From: Sascha Grossenbacher Date: Fri, 29 Apr 2022 11:33:49 +0200 Subject: [PATCH] Support file_entity metadata for width/height --- .../Entity/Fields/Image/ImageDerivative.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Plugin/GraphQL/DataProducer/Entity/Fields/Image/ImageDerivative.php b/src/Plugin/GraphQL/DataProducer/Entity/Fields/Image/ImageDerivative.php index bb9b2064f..efc776390 100644 --- a/src/Plugin/GraphQL/DataProducer/Entity/Fields/Image/ImageDerivative.php +++ b/src/Plugin/GraphQL/DataProducer/Entity/Fields/Image/ImageDerivative.php @@ -7,6 +7,7 @@ use Drupal\Core\Render\RenderContext; use Drupal\Core\Render\RendererInterface; use Drupal\file\FileInterface; +use Drupal\file_entity\FileEntityInterface; use Drupal\graphql\Plugin\GraphQL\DataProducer\DataProducerPluginBase; use Drupal\image\Entity\ImageStyle; use Symfony\Component\DependencyInjection\ContainerInterface; @@ -100,6 +101,15 @@ public function resolve(FileInterface $entity = NULL, $style, RefinableCacheable $width = $entity->width; $height = $entity->height; + // Optionally support the extra data from file_entity. + if ($entity instanceof FileEntityInterface) { + if (empty($width)) { + $width = $entity->getMetadata('width'); + } + if (empty($height)) { + $height = $entity->getMetadata('height'); + } + } // @todo Not sure why PHPStan complains here, this should be refactored to // check the entity properties first.