You are here

SuggestionSearchForm.php in Autocomplete Search Suggestions 3.0.x

File

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

namespace Drupal\suggestion\Form;

use Drupal\Core\Database\Connection;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Link;
use Drupal\Core\Pager\PagerManagerInterface;
use Drupal\Core\Routing\RedirectDestinationInterface;
use Drupal\Core\Url;
use Drupal\suggestion\SuggestionHelper as Helper;
use Drupal\suggestion\SuggestionStorage as Storage;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Ngram search form.
 */
class SuggestionSearchForm extends FormBase {
  protected $dbh;
  protected $pagerMgr;
  protected $redirect;

  /**
   * Class constructor.
   *
   * @param \Drupal\Core\Routing\RedirectDestinationInterface $redirect
   *   The redirect destination.
   * @param \Drupal\Core\Pager\PagerManagerInterface $pager_mgr
   *   The language manager dependency injection.
   * @param \Drupal\Core\Database\Connection $dbh
   *   The language manager dependency injection.
   */
  public function __construct(RedirectDestinationInterface $redirect, PagerManagerInterface $pager_mgr, Connection $dbh) {
    $this->dbh = $dbh;
    $this->pagerMgr = $pager_mgr;
    $this->redirect = $redirect;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('redirect.destination'), $container
      ->get('pager.manager'), $container
      ->get('database'));
  }

  /**
   * The suggestion search form.
   *
   * @param array $form
   *   A drupal form array.
   * @param Drupal\Core\Form\FormStateInterface $form_state
   *   A Drupal form state object.
   * @param string $ngram
   *   The search string.
   *
   * @return array
   *   A Drupal form array.
   */
  public function buildForm(array $form, FormStateInterface $form_state, $ngram = '') {
    $ngram = trim($ngram);
    $opts = [
      'query' => $this->redirect
        ->getAsArray(),
    ];
    $rows = [];
    $rpp = Helper::getConfig('rpp');
    $header = [
      $this
        ->t('N-Gram'),
      $this
        ->t('Source'),
      $this
        ->t('Atoms'),
      $this
        ->t('Quantity'),
      $this
        ->t('Density'),
      $this
        ->t('Edit'),
    ];
    if ($ngram) {
      $pattern = '%' . $this->dbh
        ->escapeLike($ngram) . '%';
      $page = $this->pagerMgr
        ->createPager(Storage::getCount($pattern), $rpp);
      $suggestions = Storage::search($pattern, $page
        ->getCurrentPage() * $rpp, $rpp);
    }
    else {
      $page = $this->pagerMgr
        ->createPager(Storage::getCount(), $rpp);
      $suggestions = Storage::getAllSuggestions($page
        ->getCurrentPage() * $rpp, $rpp);
    }
    foreach ($suggestions as $obj) {
      $rows[$obj->ngram] = [
        $obj->ngram,
        $obj->src,
        $obj->atoms,
        $obj->qty,
        $obj->density,
        Link::fromTextAndUrl($this
          ->t('Edit'), Url::fromUri("internal:/admin/config/suggestion/edit/{$obj->ngram}", $opts)),
      ];
    }
    $form['ngram'] = [
      '#type' => 'textfield',
      '#autocomplete_route_name' => 'suggestion.autocomplete',
      '#default_value' => $ngram,
      '#weight' => 10,
    ];
    $form['search'] = [
      '#type' => 'submit',
      '#name' => 'search',
      '#value' => $this
        ->t('Search'),
      '#submit' => [
        '::submitForm',
      ],
      '#weight' => 20,
    ];
    $form['list'] = [
      '#type' => 'tableselect',
      '#header' => $header,
      '#options' => $rows,
      '#empty' => $this
        ->t('Nothing found.'),
      '#weight' => 60,
    ];
    if (count($rows)) {
      $form['src'] = [
        '#title' => $this
          ->t('Source'),
        '#type' => 'select',
        '#options' => Storage::getSrcOptions(),
        '#multiple' => TRUE,
        '#weight' => 30,
      ];
      $form['update'] = [
        '#type' => 'submit',
        '#name' => 'update',
        '#value' => $this
          ->t('Update'),
        '#submit' => [
          '::submitUpdateForm',
          '::submitForm',
        ],
        '#validate' => [
          '::validateUpdateForm',
        ],
        '#weight' => 40,
      ];
      $form['pager_head'] = [
        '#type' => 'pager',
        '#weight' => 50,
      ];
      $form['pager_foot'] = [
        '#type' => 'pager',
        '#weight' => 70,
      ];
    }
    return $form;
  }

  /**
   * The form ID.
   *
   * @return string
   *   The form ID.
   */
  public function getFormId() {
    return 'suggestion_search';
  }

  /**
   * Ngram search submission function.
   *
   * @param array $form
   *   A drupal form array.
   * @param Drupal\Core\Form\FormStateInterface $form_state
   *   A Drupal form state object.
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $form_state
      ->setRedirectUrl(Url::fromUri('internal:/admin/config/suggestion/search/' . $form_state
      ->getValue('ngram')));
  }

  /**
   * Ngram update submission function.
   *
   * @param array $form
   *   A drupal form array.
   * @param Drupal\Core\Form\FormStateInterface $form_state
   *   A Drupal form state object.
   */
  public function submitUpdateForm(array &$form, FormStateInterface $form_state) {
    $src = Helper::optionBits((array) $form_state
      ->getValue('src'));
    foreach ((array) $form_state
      ->getValue('list') as $ngram => $val) {
      if (!$val) {
        continue;
      }
      Helper::updateSrc($ngram, $src);
      $this
        ->messenger()
        ->addStatus($this
        ->t('Updated: &ldquo;@ngram&rdquo;', [
        '@ngram' => $ngram,
      ]));
    }
  }

  /**
   * Validation function for the suggestion edit form.
   *
   * @param array $form
   *   A drupal form array.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   A Drupal FormStateInterface object.
   */
  public function validateUpdateForm(array &$form, FormStateInterface $form_state) {
    $suxs = FALSE;
    if (!count((array) $form_state
      ->getValue('src'))) {
      $form_state
        ->setErrorByName('src', $this
        ->t('The source must have a value.'));
    }
    elseif (isset($form_state
      ->getValue('src')[0]) && count((array) $form_state
      ->getValue('src')) > 1) {
      $form_state
        ->setErrorByName('src', $this
        ->t('The disabled option cannot be combined with other options.'));
    }
    foreach ((array) $form_state
      ->getValue('list') as $val) {
      if ($val) {
        $suxs = TRUE;
        break;
      }
    }
    if (!$suxs) {
      $form_state
        ->setErrorByName('list', $this
        ->t('You must select an ngram to perform the update to.'));
    }
  }

}

Classes

Namesort descending Description
SuggestionSearchForm Ngram search form.