-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathSuggest.php
More file actions
executable file
·149 lines (129 loc) · 3.6 KB
/
Suggest.php
File metadata and controls
executable file
·149 lines (129 loc) · 3.6 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?php
namespace Comwrap\ElasticsuiteBlog\Block\Post;
use Magento\Framework\View\Element\Template\Context as TemplateContext;
use Magento\Search\Model\QueryFactory;
use Comwrap\ElasticsuiteBlog\Model\ResourceModel\Post\Fulltext\CollectionFactory as PostCollectionFactory;
use Comwrap\ElasticsuiteBlog\Helper\Configuration;
#[\AllowDynamicProperties]
class Suggest extends \Magento\Framework\View\Element\Template
{
/**
* Name of field to get max results.
*
* @var string
*/
const MAX_RESULT = 'max_result';
/**
* @var QueryFactory
*/
private $queryFactory;
/**
* @var Configuration
*/
private $helper;
/**
* @var \Comwrap\ElasticsuiteBlog\Model\ResourceModel\Post\Fulltext\Collection
*/
private $postCollection;
/**
* Suggest constructor.
*
* @param TemplateContext $context Template contexte.
* @param QueryFactory $queryFactory Query factory.
* @param PostCollectionFactory $postCollectionFactory Post collection factory.
* @param Configuration $helper Configuration helper.
* @param array $data Data.
*/
public function __construct(
TemplateContext $context,
QueryFactory $queryFactory,
PostCollectionFactory $postCollectionFactory,
Configuration $helper,
array $data = []
) {
parent::__construct($context, $data);
$this->queryFactory = $queryFactory;
$this->helper = $helper;
$this->postCollection = $this->initPostCollection($postCollectionFactory);
}
/**
* Returns if block can be display.
*
* @return bool
*/
public function canShowBlock()
{
return $this->getResultCount() > 0;
}
/**
* Returns blog post collection.
*
* @return \Comwrap\ElasticsuiteBlog\Model\ResourceModel\Post\Fulltext\Collection
*/
public function getPostCollection()
{
return $this->postCollection;
}
/**
* Returns number of results.
*
* @return int
*/
public function getNumberOfResults()
{
return $this->helper->getConfigValue(self::MAX_RESULT);
}
/**
* Returns collection size.
*
* @return int|null
*/
public function getResultCount()
{
return $this->getPostCollection()->getSize();
}
/**
* Returns query.
*
* @return \Magento\Search\Model\Query
*/
public function getQuery()
{
return $this->queryFactory->get();
}
/**
* Returns query text.
*
* @return string
*/
public function getQueryText()
{
return $this->getQuery()->getQueryText();
}
/**
* Returns all results url page.
*
* @return string
*/
public function getShowAllUrl()
{
return $this->getUrl('elasticsuite_blog/result', ['q' => $this->getQueryText()]);
}
/**
* Init blog post collection.
*
* @param PostCollectionFactory $collectionFactory Blog post collection.
*
* @return mixed
*/
private function initPostCollection($collectionFactory)
{
$postCollection = $collectionFactory->create();
$postCollection->setStoreId($this->_storeManager->getStore()->getId());
$postCollection->addFieldToFilter('is_active', 1);
$postCollection->setPageSize($this->getNumberOfResults());
$queryText = $this->getQueryText();
$postCollection->addSearchFilter($queryText);
return $postCollection;
}
}