-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#12193 Catalog not filtered by admin search bar
- Add fulltext/keyword search field for product admin grid
- Loading branch information
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
app/code/Magento/CatalogSearch/Ui/DataProvider/Product/AddFulltextFilterToCollection.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
namespace Magento\CatalogSearch\Ui\DataProvider\Product; | ||
|
||
use Magento\Framework\Data\Collection; | ||
use Magento\CatalogSearch\Model\ResourceModel\Search\Collection as SearchCollection; | ||
use Magento\Ui\DataProvider\AddFilterToCollectionInterface; | ||
|
||
/** | ||
* Class AddFulltextFilterToCollection | ||
*/ | ||
class AddFulltextFilterToCollection implements AddFilterToCollectionInterface | ||
{ | ||
/** | ||
* Search Collection | ||
* | ||
* @var SearchCollection | ||
*/ | ||
private $searchCollection; | ||
|
||
/** | ||
* @param SearchCollection $searchCollection | ||
*/ | ||
public function __construct(SearchCollection $searchCollection) | ||
{ | ||
$this->searchCollection = $searchCollection; | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
* | ||
* @SuppressWarnings(PHPMD.UnusedFormalParameter) | ||
*/ | ||
public function addFilter(Collection $collection, $field, $condition = null) | ||
{ | ||
/** @var $collection \Magento\Catalog\Model\ResourceModel\Product\Collection */ | ||
if (isset($condition['fulltext']) && !empty($condition['fulltext'])) { | ||
$this->searchCollection->addBackendSearchFilter($condition['fulltext']); | ||
$productIds = $this->searchCollection->load()->getAllIds(); | ||
$collection->addIdFilter($productIds); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
app/code/Magento/CatalogSearch/view/adminhtml/ui_component/product_listing.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd"> | ||
<listingToolbar name="listing_top"> | ||
<filterSearch name="fulltext"/> | ||
</listingToolbar> | ||
</listing> |