123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Ui\DataProvider;
- use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;
- use Magento\Framework\View\Element\UiComponent\DataProvider\DataProviderInterface;
- /**
- * @api
- * @since 100.0.2
- */
- abstract class AbstractDataProvider implements DataProviderInterface, \Countable
- {
- /**
- * Data Provider name
- *
- * @var string
- */
- protected $name;
- /**
- * Data Provider Primary Identifier name
- *
- * @var string
- */
- protected $primaryFieldName;
- /**
- * Data Provider Request Parameter Identifier name
- *
- * @var string
- */
- protected $requestFieldName;
- /**
- * @var array
- */
- protected $meta = [];
- /**
- * Provider configuration data
- *
- * @var array
- */
- protected $data = [];
- /**
- * @var AbstractCollection
- */
- protected $collection;
- /**
- * @param string $name
- * @param string $primaryFieldName
- * @param string $requestFieldName
- * @param array $meta
- * @param array $data
- */
- public function __construct(
- $name,
- $primaryFieldName,
- $requestFieldName,
- array $meta = [],
- array $data = []
- ) {
- $this->name = $name;
- $this->primaryFieldName = $primaryFieldName;
- $this->requestFieldName = $requestFieldName;
- $this->meta = $meta;
- $this->data = $data;
- }
- /**
- * @return AbstractCollection
- */
- public function getCollection()
- {
- return $this->collection;
- }
- /**
- * Get Data Provider name
- *
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * Get primary field name
- *
- * @return string
- */
- public function getPrimaryFieldName()
- {
- return $this->primaryFieldName;
- }
- /**
- * Get field name in request
- *
- * @return string
- */
- public function getRequestFieldName()
- {
- return $this->requestFieldName;
- }
- /**
- * @return array
- */
- public function getMeta()
- {
- return $this->meta;
- }
- /**
- * Get field Set meta info
- *
- * @param string $fieldSetName
- * @return array
- */
- public function getFieldSetMetaInfo($fieldSetName)
- {
- return isset($this->meta[$fieldSetName]) ? $this->meta[$fieldSetName] : [];
- }
- /**
- * @param string $fieldSetName
- * @return array
- */
- public function getFieldsMetaInfo($fieldSetName)
- {
- return isset($this->meta[$fieldSetName]['children']) ? $this->meta[$fieldSetName]['children'] : [];
- }
- /**
- * @param string $fieldSetName
- * @param string $fieldName
- * @return array
- */
- public function getFieldMetaInfo($fieldSetName, $fieldName)
- {
- return isset($this->meta[$fieldSetName]['children'][$fieldName])
- ? $this->meta[$fieldSetName]['children'][$fieldName]
- : [];
- }
- /**
- * @inheritdoc
- */
- public function addFilter(\Magento\Framework\Api\Filter $filter)
- {
- $this->getCollection()->addFieldToFilter(
- $filter->getField(),
- [$filter->getConditionType() => $filter->getValue()]
- );
- }
- /**
- * Returns search criteria
- *
- * @return null
- */
- public function getSearchCriteria()
- {
- //TODO: Technical dept, should be implemented as part of SearchAPI support for Catalog Grids
- return null;
- }
- /**
- * Returns SearchResult
- *
- * @return \Magento\Framework\Api\Search\SearchResultInterface
- */
- public function getSearchResult()
- {
- //TODO: Technical dept, should be implemented as part of SearchAPI support for Catalog Grids
- return $this->getCollection();
- }
- /**
- * Add field to select
- *
- * @param string|array $field
- * @param string|null $alias
- * @return void
- */
- public function addField($field, $alias = null)
- {
- $this->getCollection()->addFieldToSelect($field, $alias);
- }
- /**
- * self::setOrder() alias
- *
- * @param string $field
- * @param string $direction
- * @return void
- */
- public function addOrder($field, $direction)
- {
- $this->getCollection()->addOrder($field, $direction);
- }
- /**
- * Set Query limit
- *
- * @param int $offset
- * @param int $size
- * @return void
- */
- public function setLimit($offset, $size)
- {
- $this->getCollection()->setPageSize($size);
- $this->getCollection()->setCurPage($offset);
- }
- /**
- * Removes field from select
- *
- * @param string|null $field
- * @param bool $isAlias Alias identifier
- * @return void
- */
- public function removeField($field, $isAlias = false)
- {
- $this->getCollection()->removeFieldFromSelect($field, $isAlias);
- }
- /**
- * Removes all fields from select
- *
- * @return void
- */
- public function removeAllFields()
- {
- $this->getCollection()->removeAllFieldsFromSelect();
- }
- /**
- * Get data
- *
- * @return array
- */
- public function getData()
- {
- return $this->getCollection()->toArray();
- }
- /**
- * Retrieve count of loaded items
- *
- * @return int
- */
- public function count()
- {
- return $this->getCollection()->count();
- }
- /**
- * Get config data
- *
- * @return mixed
- */
- public function getConfigData()
- {
- return isset($this->data['config']) ? $this->data['config'] : [];
- }
- /**
- * Set data
- *
- * @param mixed $config
- * @return void
- */
- public function setConfigData($config)
- {
- $this->data['config'] = $config;
- }
- /**
- * Retrieve all ids from collection
- *
- * @return int[]
- * @since 101.0.0
- */
- public function getAllIds()
- {
- return $this->getCollection()->getAllIds();
- }
- }
|