<?php
namespace Drupal\paragraphs_collection_demo\Plugin\paragraphs\Behavior;
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Render\Element;
use Drupal\Core\Url;
use Drupal\paragraphs\Entity\Paragraph;
use Drupal\paragraphs\ParagraphsBehaviorBase;
class ParagraphsBackgroundPlugin extends ParagraphsBehaviorBase implements ContainerFactoryPluginInterface {
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$paragraphs_type = $form_state
->getFormObject()
->getEntity();
if ($paragraphs_type
->isNew()) {
return [];
}
$image_field_options = $this
->getFieldNameOptions($paragraphs_type, 'image');
if (count($image_field_options) > 0) {
$form['background_image_field'] = [
'#type' => 'select',
'#title' => $this
->t('Background field'),
'#description' => $this
->t('Image field to be used as background.'),
'#options' => $image_field_options,
'#empty_value' => '',
'#default_value' => count($image_field_options) == 1 ? key($image_field_options) : $this->configuration['background_image_field'],
];
}
else {
$form['message'] = [
'#type' => 'container',
'#markup' => $this
->t('No image field type available. Please add at least one in the <a href=":link">Manage fields</a> page.', [
':link' => Url::fromRoute("entity.{$paragraphs_type->getEntityType()->getBundleOf()}.field_ui_fields", [
$paragraphs_type
->getEntityTypeId() => $paragraphs_type
->id(),
])
->toString(),
]),
'#attributes' => [
'class' => [
'messages messages--error',
],
],
];
}
return $form;
}
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
if (!$form_state
->getValue('background_image_field')) {
$form_state
->setErrorByName('message', $this
->t('The Background plugin cannot be enabled without an image field.'));
}
}
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
$this->configuration['background_image_field'] = $form_state
->getValue('background_image_field');
}
public function view(array &$build, Paragraph $paragraphs_entity, EntityViewDisplayInterface $display, $view_mode) {
$build['#attributes']['class'][] = 'paragraphs-behavior-background';
$build['#attached']['library'][] = 'paragraphs_collection_demo/background';
foreach (Element::children($build) as $field) {
if ($field == $this->configuration['background_image_field']) {
$build[$field]['#attributes']['class'][] = 'paragraphs-behavior-background--image';
}
else {
$build[$field]['#attributes']['class'][] = 'paragraphs-behavior-background--element';
}
}
}
public function defaultConfiguration() {
return [
'background_image_field' => '',
];
}
}