_queryCollectionFactory = $queryCollectionFactory; $this->_urlFactory = $urlFactory; parent::__construct($context, $data); } /** * Load terms and try to sort it by names * * @return $this * @throws \Magento\Framework\Exception\NoSuchEntityException */ protected function _loadTerms() { if (empty($this->_terms)) { $this->_terms = []; $terms = $this->_queryCollectionFactory->create()->setPopularQueryFilter( $this->_storeManager->getStore()->getId() )->setPageSize( 100 )->load()->getItems(); if (count($terms) == 0) { return $this; } $this->_maxPopularity = reset($terms)->getPopularity(); $this->_minPopularity = end($terms)->getPopularity(); $range = $this->_maxPopularity - $this->_minPopularity; $range = $range == 0 ? 1 : $range; foreach ($terms as $term) { if (!$term->getPopularity()) { continue; } $term->setRatio(($term->getPopularity() - $this->_minPopularity) / $range); $temp[$term->getQueryText()] = $term; $termKeys[] = $term->getQueryText(); } natcasesort($termKeys); foreach ($termKeys as $termKey) { $this->_terms[$termKey] = $temp[$termKey]; } } return $this; } /** * @return array * @throws \Magento\Framework\Exception\NoSuchEntityException */ public function getTerms() { $this->_loadTerms(); return $this->_terms; } /** * @param \Magento\Framework\DataObject $obj * @return string */ public function getSearchUrl($obj) { /** @var $url UrlInterface */ $url = $this->_urlFactory->create(); /* * url encoding will be done in Url.php http_build_query * so no need to explicitly called urlencode for the text */ $url->setQueryParam('q', $obj->getQueryText()); return $url->getUrl('catalogsearch/result'); } /** * @return int */ public function getMaxPopularity() { return $this->_maxPopularity; } /** * @return int */ public function getMinPopularity() { return $this->_minPopularity; } }