You are here

PanelsBlockConfigureFormBase.php in Panels 8.4

Same filename and directory in other branches
  1. 8.3 src/Form/PanelsBlockConfigureFormBase.php

Namespace

Drupal\panels\Form

File

src/Form/PanelsBlockConfigureFormBase.php
View source
<?php

namespace Drupal\panels\Form;

use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormState;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContextAwarePluginAssignmentTrait;
use Drupal\Core\Plugin\ContextAwarePluginInterface;
use Drupal\panels\CachedValuesGetterTrait;
use Drupal\Core\TempStore\SharedTempStoreFactory;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Provides a base form for configuring a block as part of a variant.
 */
abstract class PanelsBlockConfigureFormBase extends FormBase {
  use ContextAwarePluginAssignmentTrait;
  use CachedValuesGetterTrait;

  /**
   * Tempstore factory.
   *
   * @var \Drupal\Core\TempStore\SharedTempStoreFactory
   */
  protected $tempstore;

  /**
   * The tempstore id.
   *
   * @var string
   */
  protected $tempstore_id;

  /**
   * The variant plugin.
   *
   * @var \Drupal\panels\Plugin\DisplayVariant\PanelsDisplayVariant
   */
  protected $variantPlugin;

  /**
   * The plugin being configured.
   *
   * @var \Drupal\Core\Block\BlockPluginInterface
   */
  protected $block;

  /**
   * Constructs a new VariantPluginConfigureBlockFormBase.
   *
   * @param \Drupal\Core\TempStore\SharedTempStoreFactory $tempstore
   *   The tempstore factory.
   */
  public function __construct(SharedTempStoreFactory $tempstore) {
    $this->tempstore = $tempstore;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('tempstore.shared'));
  }

  /**
   * Get the tempstore id.
   *
   * @return string
   */
  protected function getTempstoreId() {
    return $this->tempstore_id;
  }

  /**
   * Get the tempstore.
   *
   * @return \Drupal\Core\TempStore\SharedTempStoreFactory
   */
  protected function getTempstore() {
    return $this->tempstore
      ->get($this
      ->getTempstoreId());
  }

  /**
   * Prepares the block plugin based on the block ID.
   *
   * @param string $block_id
   *   Either a block ID, or the plugin ID used to create a new block.
   *
   * @return \Drupal\Core\Block\BlockPluginInterface
   *   The block plugin.
   */
  protected abstract function prepareBlock($block_id);

  /**
   * Returns the text to use for the submit button.
   *
   * @return string
   *   The submit button text.
   */
  protected abstract function submitText();

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state, $tempstore_id = NULL, $machine_name = NULL, $block_id = NULL) {
    $this->tempstore_id = $tempstore_id;
    $cached_values = $this
      ->getCachedValues($this->tempstore, $tempstore_id, $machine_name);
    $this->variantPlugin = $cached_values['plugin'];
    $contexts = $this->variantPlugin
      ->getPattern()
      ->getDefaultContexts($this->tempstore, $this
      ->getTempstoreId(), $machine_name);
    $this->variantPlugin
      ->setContexts($contexts);
    $form_state
      ->setTemporaryValue('gathered_contexts', $contexts);
    $this->block = $this
      ->prepareBlock($block_id);
    $form_state
      ->set('machine_name', $machine_name);
    $form_state
      ->set('block_id', $this->block
      ->getConfiguration()['uuid']);

    // Some Block Plugins rely on the block_theme value to load theme settings.
    // @see \Drupal\system\Plugin\Block\SystemBrandingBlock::blockForm().
    $form_state
      ->set('block_theme', $this
      ->config('system.theme')
      ->get('default'));
    $form['#tree'] = TRUE;
    $form['settings'] = $this->block
      ->buildConfigurationForm([], $form_state);
    $form['settings']['id'] = [
      '#type' => 'value',
      '#value' => $this->block
        ->getPluginId(),
    ];
    $form['region'] = [
      '#title' => $this
        ->t('Region'),
      '#type' => 'select',
      '#options' => $this->variantPlugin
        ->getRegionNames(),
      '#default_value' => $this->variantPlugin
        ->getRegionAssignment($this->block
        ->getConfiguration()['uuid']),
      '#required' => TRUE,
    ];
    $form['actions']['submit'] = [
      '#type' => 'submit',
      '#value' => $this
        ->submitText(),
      '#button_type' => 'primary',
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {

    // The page might have been serialized, resulting in a new variant
    // collection. Refresh the block object.
    $this->block = $this
      ->getVariantPlugin()
      ->getBlock($form_state
      ->get('block_id'));
    $settings = (new FormState())
      ->setValues($form_state
      ->getValue('settings'));

    // Call the plugin validate handler.
    $this->block
      ->validateConfigurationForm($form, $settings);

    // Update the original form values.
    $form_state
      ->setValue('settings', $settings
      ->getValues());
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $settings = (new FormState())
      ->setValues($form_state
      ->getValue('settings'));

    // Call the plugin submit handler.
    $this->block
      ->submitConfigurationForm($form, $settings);

    // Update the original form values.
    $form_state
      ->setValue('settings', $settings
      ->getValues());
    if ($this->block instanceof ContextAwarePluginInterface) {
      $this->block
        ->setContextMapping($settings
        ->getValue('context_mapping', []));
    }
    $configuration = $this->block
      ->getConfiguration();
    $configuration['region'] = $form_state
      ->getValue('region');
    $this
      ->getVariantPlugin()
      ->updateBlock($this->block
      ->getConfiguration()['uuid'], $configuration);
    $cached_values = $this
      ->getCachedValues($this->tempstore, $this->tempstore_id, $form_state
      ->get('machine_name'));
    $cached_values['plugin'] = $this
      ->getVariantPlugin();

    // PageManager specific handling.
    if (isset($cached_values['page_variant'])) {
      $cached_values['page_variant']
        ->getVariantPlugin()
        ->setConfiguration($cached_values['plugin']
        ->getConfiguration());
    }
    $this
      ->getTempstore()
      ->set($cached_values['id'], $cached_values);
  }

  /**
   * Gets the variant plugin for this page variant entity.
   *
   * @return \Drupal\panels\Plugin\DisplayVariant\PanelsDisplayVariant
   */
  protected function getVariantPlugin() {
    return $this->variantPlugin;
  }

}

Classes

Namesort descending Description
PanelsBlockConfigureFormBase Provides a base form for configuring a block as part of a variant.