-
Notifications
You must be signed in to change notification settings - Fork 92
/
TaxonFacet.php
65 lines (52 loc) · 1.72 KB
/
TaxonFacet.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/*
* This file has been created by developers from BitBag.
* Feel free to contact us once you face any issues or want to start
* another great project.
* You can find more information about us on https://bitbag.io and write us
* an email on [email protected].
*/
declare(strict_types=1);
namespace BitBag\SyliusElasticsearchPlugin\Facet;
use Elastica\Aggregation\AbstractAggregation;
use Elastica\Aggregation\Terms;
use Elastica\Query\AbstractQuery;
use Elastica\Query\Terms as TermsQuery;
use Sylius\Component\Core\Model\Taxon;
use Sylius\Component\Taxonomy\Repository\TaxonRepositoryInterface;
final class TaxonFacet implements FacetInterface
{
public const FACET_ID = 'taxon';
public function __construct(
private TaxonRepositoryInterface $taxonRepository,
private string $taxonsPropertyName
) {
}
public function getAggregation(): AbstractAggregation
{
$terms = new Terms(self::FACET_ID);
$terms->setField($this->getField());
return $terms;
}
public function getQuery(array $selectedBuckets): AbstractQuery
{
return new TermsQuery($this->getField(), $selectedBuckets);
}
public function getBucketLabel(array $bucket): string
{
$label = $taxonCode = $bucket['key'];
$taxon = $this->taxonRepository->findOneBy(['code' => $taxonCode]);
if ($taxon instanceof Taxon) {
$label = $taxon->getName();
}
return sprintf('%s (%s)', $label, $bucket['doc_count']);
}
private function getField(): string
{
return $this->taxonsPropertyName . '.keyword';
}
public function getLabel(): string
{
return 'bitbag_sylius_elasticsearch_plugin.ui.facet.taxon.label';
}
}