-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathResult.php
More file actions
executable file
·161 lines (141 loc) · 4.06 KB
/
Result.php
File metadata and controls
executable file
·161 lines (141 loc) · 4.06 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
150
151
152
153
154
155
156
157
158
159
160
161
<?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;
#[\AllowDynamicProperties]
class Result extends \Magento\Framework\View\Element\Template
{
/**
* @var QueryFactory
*/
private $queryFactory;
/**
* @var \Comwrap\ElasticsuiteBlog\Model\ResourceModel\Post\Fulltext\Collection
*/
private $postCollection;
/**
* Suggest constructor.
*
* @param TemplateContext $context Template contexte.
* @param QueryFactory $queryFactory Query factory.
* @param PageCollectionFactory $pageCollectionFactory Page collection factory.
* @param array $data Data.
*/
public function __construct(
TemplateContext $context,
QueryFactory $queryFactory,
PostCollectionFactory $postCollectionFactory,
array $data = []
) {
parent::__construct($context, $data);
$this->queryFactory = $queryFactory;
$this->postCollection = $this->initPostCollection($postCollectionFactory);
}
/**
* Prepare layout
*
* @return $this
*/
protected function _prepareLayout()
{
$title = $this->getSearchQueryText();
$this->pageConfig->getTitle()->set($title);
// add Home breadcrumb
$breadcrumbs = $this->getLayout()->getBlock('breadcrumbs');
if ($breadcrumbs) {
$breadcrumbs->addCrumb(
'home',
[
'label' => __('Home'),
'title' => __('Go to Home Page'),
'link' => $this->_storeManager->getStore()->getBaseUrl()
]
)->addCrumb(
'search',
[
'label' => $title,
'title' => $title,
'link' => $this->getSearchUrl()
]
)->addCrumb(
'blog_search',
[
'label' => __('Results in blog posts.'),
'title' => __('Results in blog posts.')
]
);
}
return parent::_prepareLayout();
}
/**
* Get search query text
*
* @return \Magento\Framework\Phrase
*/
public function getSearchQueryText()
{
return __("Search results for: '%1'", $this->escapeHtml($this->getQueryText()));
}
/**
* Returns catalog search url.
*
* @return string
*/
public function getSearchUrl()
{
$params = [QueryFactory::QUERY_VAR_NAME => $this->getQueryText()];
return $this->getUrl('catalogsearch/result', ['_query' => $params]);
}
/**
* Returns blog bost collection.
*
* @return \Comwrap\ElasticsuiteBlog\Model\ResourceModel\Post\Fulltext\Collection
*/
public function getPostCollection()
{
return $this->postCollection;
}
/**
* 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();
}
/**
* Init blog post collection.
*
* @param postCollectionFactory $collectionFactory Blog post collection.
*
* @return mixed
*/
private function initPostCollection($collectionFactory)
{
$postCollection = $collectionFactory->create();
$postCollection->addFieldToFilter('is_active', 1);
$queryText = $this->getQueryText();
$postCollection->addSearchFilter($queryText);
return $postCollection;
}
}