Skip to content
Snippets Groups Projects
Commit 3b3b371f authored by Georg Ringer's avatar Georg Ringer Committed by Benni Mack
Browse files

[TASK] Transform PageBrowsingViewHelper to TagBasedViewHelper

As the PageBrowsingViewHelper actually renders a HTML tag it
should extend AbstractTagBasedViewHelper. This also allows
integrators to define the well known attributes like class.

Resolves: #90484
Releases: master
Change-Id: If20250cb834b8cb21ae0e30c9e4e7e373643e374
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63542


Tested-by: default avatarChristian Eßl <indy.essl@gmail.com>
Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarChristian Eßl <indy.essl@gmail.com>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent 73adc4c8
Branches
Tags
No related merge requests found
...@@ -17,9 +17,7 @@ namespace TYPO3\CMS\IndexedSearch\ViewHelpers; ...@@ -17,9 +17,7 @@ namespace TYPO3\CMS\IndexedSearch\ViewHelpers;
use TYPO3\CMS\Core\Utility\GeneralUtility; use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Core\Utility\MathUtility; use TYPO3\CMS\Core\Utility\MathUtility;
use TYPO3\CMS\Extbase\Utility\LocalizationUtility; use TYPO3\CMS\Extbase\Utility\LocalizationUtility;
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface; use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractTagBasedViewHelper;
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic;
/** /**
* Page browser for indexed search, and only useful here, as the * Page browser for indexed search, and only useful here, as the
...@@ -28,21 +26,17 @@ use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic; ...@@ -28,21 +26,17 @@ use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic;
* functionality * functionality
* @internal * @internal
*/ */
class PageBrowsingViewHelper extends AbstractViewHelper class PageBrowsingViewHelper extends AbstractTagBasedViewHelper
{ {
use CompileWithRenderStatic;
/** /**
* As this ViewHelper renders HTML, the output must not be escaped. * @var string
*
* @var bool
*/ */
protected $escapeOutput = false; protected static $prefixId = 'tx_indexedsearch';
/** /**
* @var string * @var string
*/ */
protected static $prefixId = 'tx_indexedsearch'; protected $tagName = 'ul';
/** /**
* Initialize arguments * Initialize arguments
...@@ -54,22 +48,19 @@ class PageBrowsingViewHelper extends AbstractViewHelper ...@@ -54,22 +48,19 @@ class PageBrowsingViewHelper extends AbstractViewHelper
$this->registerArgument('resultsPerPage', 'int', '', true); $this->registerArgument('resultsPerPage', 'int', '', true);
$this->registerArgument('currentPage', 'int', '', false, 0); $this->registerArgument('currentPage', 'int', '', false, 0);
$this->registerArgument('freeIndexUid', 'int', ''); $this->registerArgument('freeIndexUid', 'int', '');
$this->registerUniversalTagAttributes();
} }
/** /**
* @param array $arguments * @inheritDoc
* @param \Closure $renderChildrenClosure
* @param RenderingContextInterface $renderingContext
*
* @return string
*/ */
public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext) public function render()
{ {
$maximumNumberOfResultPages = $arguments['maximumNumberOfResultPages']; $maximumNumberOfResultPages = $this->arguments['maximumNumberOfResultPages'];
$numberOfResults = $arguments['numberOfResults']; $numberOfResults = $this->arguments['numberOfResults'];
$resultsPerPage = $arguments['resultsPerPage']; $resultsPerPage = $this->arguments['resultsPerPage'];
$currentPage = $arguments['currentPage']; $currentPage = $this->arguments['currentPage'];
$freeIndexUid = $arguments['freeIndexUid']; $freeIndexUid = $this->arguments['freeIndexUid'];
if ($resultsPerPage <= 0) { if ($resultsPerPage <= 0) {
$resultsPerPage = 10; $resultsPerPage = 10;
...@@ -88,7 +79,7 @@ class PageBrowsingViewHelper extends AbstractViewHelper ...@@ -88,7 +79,7 @@ class PageBrowsingViewHelper extends AbstractViewHelper
// show on all pages after the 1st one // show on all pages after the 1st one
if ($currentPage > 0) { if ($currentPage > 0) {
$label = LocalizationUtility::translate('displayResults.previous', 'IndexedSearch'); $label = LocalizationUtility::translate('displayResults.previous', 'IndexedSearch');
$content .= '<li>' . self::makecurrentPageSelector_link($label, $currentPage - 1, $freeIndexUid) . '</li>'; $content .= '<li>' . $this->makecurrentPageSelector_link($label, $currentPage - 1, $freeIndexUid) . '</li>';
} }
// Check if $maximumNumberOfResultPages is in range // Check if $maximumNumberOfResultPages is in range
$maximumNumberOfResultPages = MathUtility::forceIntegerInRange($maximumNumberOfResultPages, 1, $pageCount, 10); $maximumNumberOfResultPages = MathUtility::forceIntegerInRange($maximumNumberOfResultPages, 1, $pageCount, 10);
...@@ -118,7 +109,12 @@ class PageBrowsingViewHelper extends AbstractViewHelper ...@@ -118,7 +109,12 @@ class PageBrowsingViewHelper extends AbstractViewHelper
$label = LocalizationUtility::translate('displayResults.next', 'IndexedSearch'); $label = LocalizationUtility::translate('displayResults.next', 'IndexedSearch');
$content .= '<li>' . self::makecurrentPageSelector_link($label, $currentPage + 1, $freeIndexUid) . '</li>'; $content .= '<li>' . self::makecurrentPageSelector_link($label, $currentPage + 1, $freeIndexUid) . '</li>';
} }
return '<ul class="tx-indexedsearch-browsebox">' . $content . '</ul>';
if (!$this->tag->hasAttribute('class')) {
$this->tag->addAttribute('class', 'tx-indexedsearch-browsebox');
}
$this->tag->setContent($content);
return $this->tag->render();
} }
/** /**
...@@ -130,7 +126,7 @@ class PageBrowsingViewHelper extends AbstractViewHelper ...@@ -130,7 +126,7 @@ class PageBrowsingViewHelper extends AbstractViewHelper
* @param string $freeIndexUid List of integers pointing to free indexing configurations to search. -1 represents no filtering, 0 represents TYPO3 pages only, any number above zero is a uid of an indexing configuration! * @param string $freeIndexUid List of integers pointing to free indexing configurations to search. -1 represents no filtering, 0 represents TYPO3 pages only, any number above zero is a uid of an indexing configuration!
* @return string Input string wrapped in <a> tag with onclick event attribute set. * @return string Input string wrapped in <a> tag with onclick event attribute set.
*/ */
protected static function makecurrentPageSelector_link($str, $p, $freeIndexUid) protected function makecurrentPageSelector_link($str, $p, $freeIndexUid)
{ {
$onclick = 'document.getElementById(' . GeneralUtility::quoteJSvalue(self::$prefixId . '_pointer') . ').value=' . GeneralUtility::quoteJSvalue($p) . ';'; $onclick = 'document.getElementById(' . GeneralUtility::quoteJSvalue(self::$prefixId . '_pointer') . ').value=' . GeneralUtility::quoteJSvalue($p) . ';';
if ($freeIndexUid !== null) { if ($freeIndexUid !== null) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment