103 lines
2.6 KiB
PHP
103 lines
2.6 KiB
PHP
|
<?php
|
||
|
namespace WapplerSystems\Meilisearch\Domain\Search\ResultSet\Facets;
|
||
|
|
||
|
/*
|
||
|
* This file is part of the TYPO3 CMS project.
|
||
|
*
|
||
|
* It is free software; you can redistribute it and/or modify it under
|
||
|
* the terms of the GNU General Public License, either version 2
|
||
|
* of the License, or any later version.
|
||
|
*
|
||
|
* For the full copyright and license information, please read the
|
||
|
* LICENSE.txt file that was distributed with this source code.
|
||
|
*
|
||
|
* The TYPO3 project - inspiring people to share!
|
||
|
*/
|
||
|
use WapplerSystems\Meilisearch\Domain\Search\ResultSet\Facets\AbstractFacetItem;
|
||
|
use WapplerSystems\Meilisearch\System\Data\AbstractCollection;
|
||
|
|
||
|
/**
|
||
|
* Collection for facet options.
|
||
|
*
|
||
|
* @author Frans Saris <frans@beech.it>
|
||
|
* @author Timo Hund <timo.hund@dkd.de>
|
||
|
*/
|
||
|
abstract class AbstractFacetItemCollection extends AbstractCollection
|
||
|
{
|
||
|
/**
|
||
|
* @param AbstractFacetItem $item
|
||
|
* @return AbstractFacetItemCollection
|
||
|
*/
|
||
|
public function add($item)
|
||
|
{
|
||
|
if ($item === null) {
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
$this->data[$item->getCollectionKey()] = $item;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $value
|
||
|
* @return AbstractFacetItem
|
||
|
*/
|
||
|
public function getByValue($value)
|
||
|
{
|
||
|
return isset($this->data[$value]) ? $this->data[$value] : null;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieves the count (with get prefixed to be usable in fluid).
|
||
|
*
|
||
|
* @return int
|
||
|
*/
|
||
|
public function getCount()
|
||
|
{
|
||
|
return $this->count();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return AbstractFacetItemCollection
|
||
|
*/
|
||
|
public function getSelected()
|
||
|
{
|
||
|
return $this->getFilteredCopy(function(AbstractFacetItem $item) {
|
||
|
return $item->getSelected();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param array $manualSorting
|
||
|
* @return AbstractFacetItemCollection
|
||
|
*/
|
||
|
public function getManualSortedCopy(array $manualSorting)
|
||
|
{
|
||
|
$result = clone $this;
|
||
|
$copiedItems = $result->data;
|
||
|
$sortedOptions = [];
|
||
|
foreach ($manualSorting as $item) {
|
||
|
if (isset($copiedItems[$item])) {
|
||
|
$sortedOptions[$item] = $copiedItems[$item];
|
||
|
unset($copiedItems[$item]);
|
||
|
}
|
||
|
}
|
||
|
// in the end all items get appended that are not configured in the manual sort order
|
||
|
$sortedOptions = $sortedOptions + $copiedItems;
|
||
|
$result->data = $sortedOptions;
|
||
|
|
||
|
return $result;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return AbstractFacetItemCollection
|
||
|
*/
|
||
|
public function getReversedOrderCopy()
|
||
|
{
|
||
|
$result = clone $this;
|
||
|
$result->data = array_reverse($result->data, true);
|
||
|
|
||
|
return $result;
|
||
|
}
|
||
|
}
|