You are here

class SuggestionSearchForm in Autocomplete Search Suggestions 3.0.x

Same name and namespace in other branches
  1. 8.2 src/Form/SuggestionSearchForm.php \Drupal\suggestion\Form\SuggestionSearchForm
  2. 8 src/Form/SuggestionSearchForm.php \Drupal\suggestion\Form\SuggestionSearchForm

Ngram search form.

Hierarchy

Expanded class hierarchy of SuggestionSearchForm

1 string reference to 'SuggestionSearchForm'
suggestion.routing.yml in ./suggestion.routing.yml
suggestion.routing.yml

File

src/Form/SuggestionSearchForm.php, line 19

Namespace

Drupal\suggestion\Form
View source
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: “@ngram”', [
        '@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.'));
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 3
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::config protected function Retrieves a configuration object.
FormBase::configFactory protected function Gets the config factory for this form. 3
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route.
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 72
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
SuggestionSearchForm::$dbh protected property
SuggestionSearchForm::$pagerMgr protected property
SuggestionSearchForm::$redirect protected property
SuggestionSearchForm::buildForm public function The suggestion search form. Overrides FormInterface::buildForm
SuggestionSearchForm::create public static function Instantiates a new instance of this class. Overrides FormBase::create
SuggestionSearchForm::getFormId public function The form ID. Overrides FormInterface::getFormId
SuggestionSearchForm::submitForm public function Ngram search submission function. Overrides FormInterface::submitForm
SuggestionSearchForm::submitUpdateForm public function Ngram update submission function.
SuggestionSearchForm::validateUpdateForm public function Validation function for the suggestion edit form.
SuggestionSearchForm::__construct public function Class constructor.