custom_field-1.0.x-dev/src/Plugin/DataType/CustomFieldStringLong.php
src/Plugin/DataType/CustomFieldStringLong.php
<?php
declare(strict_types=1);
namespace Drupal\custom_field\Plugin\DataType;
use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Render\RendererInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\TypedData\Attribute\DataType;
use Drupal\custom_field\TypedData\CustomFieldDataDefinition;
use Drupal\filter\FilterProcessResult;
use Drupal\filter\Render\FilteredMarkup;
/**
* The "custom_field_string_long" data type.
*
* The "custom_field_string_long" data type provides a mechanism to return the
* processed value for "string_long" custom_field types that we can normalize
* for jsonapi.
*/
#[DataType(
id: 'custom_field_string_long',
label: new TranslatableMarkup('String long'),
definition_class: CustomFieldDataDefinition::class,
)]
class CustomFieldStringLong extends CustomFieldDataTypeBase implements CacheableDependencyInterface, CustomFieldStringLongInterface {
/**
* Cached processed text.
*
* @var \Drupal\filter\FilterProcessResult|null
*/
protected ?FilterProcessResult $processed = NULL;
/**
* {@inheritdoc}
*/
public function getProcessed(): mixed {
$format = $this->getFormat();
if (!$format) {
return $this->getValue();
}
if ($this->processed !== NULL) {
return FilteredMarkup::create($this->processed->getProcessedText());
}
$item = $this->getParent();
$build = [
'#type' => 'processed_text',
'#text' => $this->getValue(),
'#format' => $format,
'#filter_types_to_skip' => [],
'#langcode' => $item->getLangcode(),
];
// Capture the cacheability metadata associated with the processed text.
$processed_text = $this->getRenderer()->renderInIsolation($build);
$this->processed = FilterProcessResult::createFromRenderArray($build)->setProcessedText((string) $processed_text);
return FilteredMarkup::create($this->processed->getProcessedText());
}
/**
* A helper function to return the format type from field settings.
*
* @return mixed|null
* The specified format from widget setting, otherwise NULL.
*/
protected function getFormat(): mixed {
$parent = $this->getParent();
$settings = $parent->getFieldDefinition()->getSetting('field_settings')[$this->name] ?? [];
return ($settings['formatted'] ?? FALSE) ? $settings['default_format'] : NULL;
}
/**
* {@inheritdoc}
*/
public function getCacheContexts(): array {
return ($this->processed) ? $this->processed->getCacheContexts() : [];
}
/**
* {@inheritdoc}
*/
public function getCacheTags(): array {
return ($this->processed) ? $this->processed->getCacheTags() : [];
}
/**
* {@inheritdoc}
*/
public function getCacheMaxAge(): int {
return ($this->processed) ? $this->processed->getCacheMaxAge() : 0;
}
/**
* Returns the renderer service.
*
* @return \Drupal\Core\Render\RendererInterface
* The renderer service.
*/
protected function getRenderer(): RendererInterface {
return \Drupal::service('renderer');
}
/**
* {@inheritdoc}
*/
public function getCastedValue() {
return $this->getString();
}
}
