-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add base class
SimpleSuggestions.php
- Loading branch information
1 parent
dc13336
commit db55a2a
Showing
1 changed file
with
162 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
<?php | ||
|
||
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */ | ||
|
||
namespace Icinga\Data; | ||
|
||
use ipl\Html\Attributes; | ||
use ipl\Html\BaseHtmlElement; | ||
use ipl\Html\FormattedString; | ||
use ipl\Html\FormElement\ButtonElement; | ||
use ipl\Html\FormElement\InputElement; | ||
use ipl\Html\HtmlElement; | ||
use ipl\Html\Text; | ||
use Psr\Http\Message\ServerRequestInterface; | ||
use Traversable; | ||
|
||
|
||
abstract class SimpleSuggestions extends BaseHtmlElement | ||
{ | ||
const DEFAULT_LIMIT = 10; | ||
|
||
protected $tag = 'ul'; | ||
|
||
/** @var string */ | ||
protected $searchTerm; | ||
|
||
/** @var Traversable */ | ||
protected $data; | ||
|
||
/** @var string */ | ||
protected $default; | ||
|
||
public function setSearchTerm($term) | ||
{ | ||
$this->searchTerm = $term; | ||
|
||
return $this; | ||
} | ||
|
||
public function setData($data) | ||
{ | ||
$this->data = $data; | ||
|
||
return $this; | ||
} | ||
|
||
public function setDefault($default) | ||
{ | ||
$this->default = $default; | ||
|
||
return $this; | ||
} | ||
|
||
abstract protected function fetchSuggestions($searchTerm); | ||
|
||
protected function assembleDefault() | ||
{ | ||
if ($this->default === null) { | ||
return; | ||
} | ||
|
||
$attributes = [ | ||
'type' => 'button', | ||
'tabindex' => -1, | ||
'data-label' => $this->default, | ||
'data-type' => 'value', | ||
'value' => $this->default, | ||
'class' => 'value' | ||
]; | ||
|
||
$button = new ButtonElement(null, $attributes); | ||
$button->addHtml(FormattedString::create( | ||
t('Add %s'), | ||
new HtmlElement('em', null, Text::create($this->default)) | ||
)); | ||
|
||
|
||
$this->prependHtml(new HtmlElement('li', Attributes::create(['class' => 'default']), $button)); | ||
} | ||
|
||
protected function assemble() | ||
{ | ||
if ($this->data === null) { | ||
$data = []; | ||
} else { | ||
$data = $this->data; | ||
} | ||
|
||
foreach ($data as $term => $meta) { | ||
if (is_int($term)) { | ||
$term = $meta; | ||
} | ||
|
||
$attributes = [ | ||
'type' => 'button', | ||
'tabindex' => -1, | ||
'data-search' => $term | ||
]; | ||
|
||
$attributes['value'] = $meta; | ||
$attributes['data-label'] = $meta; | ||
|
||
$this->addHtml(new HtmlElement('li', null, new InputElement(null, $attributes))); | ||
} | ||
|
||
$showDefault = true; | ||
if ($this->searchTerm && $this->count()) { | ||
// The default option is not shown if the user's input result in an exact match | ||
$input = $this->getFirst('li')->getFirst('input'); | ||
$showDefault = $input->getValue() != $this->searchTerm | ||
&& $input->getAttributes()->get('data-search')->getValue() != $this->searchTerm; | ||
} | ||
|
||
if ($showDefault) { | ||
$this->assembleDefault(); | ||
} | ||
} | ||
|
||
/** | ||
* Load suggestions as requested by the client | ||
* | ||
* @param ServerRequestInterface $request | ||
* | ||
* @return $this | ||
*/ | ||
public function forRequest(ServerRequestInterface $request) | ||
{ | ||
if ($request->getMethod() !== 'POST') { | ||
return $this; | ||
} | ||
|
||
$requestData = json_decode($request->getBody()->read(8192), true); | ||
if (empty($requestData)) { | ||
return $this; | ||
} | ||
|
||
$search = $requestData['term']['search']; | ||
$label = $requestData['term']['label']; | ||
|
||
$this->setSearchTerm($search); | ||
|
||
$this->setData($this->fetchSuggestions($label)); | ||
|
||
if($search) { | ||
$this->setDefault($search); | ||
} | ||
|
||
return $this; | ||
} | ||
|
||
public function renderUnwrapped() | ||
{ | ||
$this->ensureAssembled(); | ||
|
||
if ($this->isEmpty()) { | ||
return ''; | ||
} | ||
|
||
return parent::renderUnwrapped(); | ||
} | ||
|
||
} |