michiruf / laravel-collection-differ
Tiny helper to diff collections
Fund package maintenance!
michiruf
0.2
2024-10-13 12:41 UTC
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- laravel/pint: ^1.14
- laravel/sail: ^1.31
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
- spatie/laravel-ray: ^1.35
README
Tiny helper to diff collections.
Installation
composer require michiruf/laravel-collection-differ
Usage
Result usage example:
$result = collect([1, 2, 3])->differ([2, 4])->diff(); dump($result->unmatchedSource); // [1, 3] dump($result->unmatchedDestination); // [4] dump($result->matched); // [[2, 2]]
Callbacks usage example:
ProductModel::all() ->differ(ProductApi::getAll()) ->handleUnmatchedSourceUsing(fn (ProductModel $model) => $model->delete()) ->handleUnmatchedDestinationUsing(fn (ProductDto) $dto => ProductModel::createFromDto($dto)) ->handleMatchedUsing(fn (ProductModel $model, ProductDto $dto) => $model->updateWithDto($dto)) ->validateUniqueness() // throw if identifiers are not unique ->diff();
Identifier usage example:
ProductModel::all() ->differ(ProductApi::getAll()) ->identifySourceUsing(fn (ProductModel $model) => $model->id) ->identifyDestinationUsing('meta.id') // or: fn (ProductDto $dto) => $dto->meta->id ->validateUniqueness() // throw if identifiers are not unique ->diff();
For additional examples, have at look at the tests.