Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://gitlab.com/ludo444/aggregationbuilderpaginationbundle
Paginate Doctrine MongoDB ODM AggregationBuilder with KnpPaginatorBundle
https://gitlab.com/ludo444/aggregationbuilderpaginationbundle
aggregation bundle mongodb pager pagination paginator symfony
Last synced: 21 days ago
JSON representation
Paginate Doctrine MongoDB ODM AggregationBuilder with KnpPaginatorBundle
- Host: gitlab.com
- URL: https://gitlab.com/ludo444/aggregationbuilderpaginationbundle
- Owner: ludo444
- License: mit
- Created: 2020-04-01T16:24:30.805Z (over 4 years ago)
- Default Branch: master
- Last Synced: 2024-03-24T08:42:52.397Z (8 months ago)
- Topics: aggregation, bundle, mongodb, pager, pagination, paginator, symfony
- Stars: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LudoAggregationBuilderPaginationBundle
![pipeline_status][pipeline]
Extension bundle for Symfony's [KnpPaginatorBundle][KnpPaginatorBundle] that allows to paginate
[DoctrineMongoDBBundle][DoctrineMongoDBBundle] [`Doctrine\ODM\MongoDB\Aggregation\Builder`][AggregationBuilder].## Requirements
Bundle uses MongoDB [`$facet`][facet] operator which is available since MongoDB 3.4.
## Installation with Symfony Flex
Open a command console, enter your project directory and execute:
```console
$ composer require ludo444/aggregation-builder-pagination-bundle
```## Installation without Symfony Flex
### Step 1: Download the Bundle
Open a command console, enter your project directory and execute the
following command to download the latest stable version of this bundle:```console
$ composer require ludo444/aggregation-builder-pagination-bundle
```### Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the `config/bundles.php` file of your project:```php
// config/bundles.phpreturn [
// ...
Ludo\Bundle\AggregationBuilderPaginationBundle\LudoAggregationBuilderPaginationBundle::class => ['all' => true],
];
```## Usage
[`Doctrine\ODM\MongoDB\Aggregation\Builder`][AggregationBuilder] needs to be passed into `paginate()` method. Be aware that
most of the `Builder` methods are returning `Doctrine\ODM\MongoDB\Aggregation\Stage`. So you need to do eg.:```php
// src/Repository/ExampleRepository.php
use Doctrine\ODM\MongoDB\Aggregation\Builder as AggregationBuilder;
// ...class ExampleRepository extends Repository
{
public function getExamples(): AggregationBuilder
{
$ab = $this->createAggregationBuilder();
$ab->hydrate(Example::class)
->match()
->field('field')
->equals('value');
return $ab;
}
}
```As `->equals('value')` would not return `AggregationBuilder`, the code would throw an `Exception` if you return
the result of that method directly. Now to paginate the example repository method, you can just do:```php
// src/Subfolder/ExamplePagination.php
// ...class ExamplePagination
{
// ...public function __construct(DocumentManager $manager, PaginatorInterface $paginator)
{
$this->manager = $manager;
$this->paginator = $paginator;
}public function getPaginatedExamples(): PaginationInterface
{
return $this->paginator->paginate(
$this->manager->getRepository(ExampleRepository::class)->getExamples()
);
}
}
```[pipeline]: https://gitlab.com/ludo444/aggregationbuilderpaginationbundle/badges/master/pipeline.svg
[KnpPaginatorBundle]: https://github.com/KnpLabs/KnpPaginatorBundle
[DoctrineMongoDBBundle]: https://github.com/doctrine/DoctrineMongoDBBundle
[facet]: https://docs.mongodb.com/manual/reference/operator/aggregation/facet/
[AggregationBuilder]: https://www.doctrine-project.org/projects/doctrine-mongodb-odm/en/2.0/reference/aggregation-builder.html