FleetCart/Modules/Product/Http/Response/SuggestionsResponse.php
2023-06-11 13:14:03 +01:00

106 lines
2.9 KiB
PHP

<?php
namespace Modules\Product\Http\Response;
use Illuminate\Support\Collection;
use Modules\Product\Entities\Product;
use Modules\Category\Entities\Category;
use Illuminate\Contracts\Support\Responsable;
class SuggestionsResponse implements Responsable
{
private $query;
private $products;
private $categories;
private $totalResults;
/**
* Create a new instance.
*
* @param string $query
* @param int $totalResults
* @param \Illuminate\Support\Collection $products
* @param \Illuminate\Support\Collection $categories
*/
public function __construct($query, Collection $products, Collection $categories, $totalResults)
{
$this->query = $query;
$this->products = $products;
$this->categories = $categories;
$this->totalResults = $totalResults;
}
/**
* Create an HTTP response that represents the object.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function toResponse($request)
{
return response()->json([
'categories' => $this->transformCategories(),
'products' => $this->transformProducts(),
'remaining' => $this->getRemainingCount(),
]);
}
/**
* Transform the categories.
*
* @return \Illuminate\Support\Collection
*/
private function transformCategories()
{
return $this->categories->map(function (Category $category) {
return [
'slug' => $category->slug,
'name' => $category->name,
'url' => $category->url(),
];
})->unique('slug')->values();
}
/**
* Transform the products.
*
* @return \Illuminate\Support\Collection
*/
private function transformProducts()
{
return $this->products->map(function (Product $product) {
return [
'slug' => $product->slug,
'name' => $this->highlight($product->name),
'formatted_price' => $product->getFormattedPriceAttribute(),
'base_image' => $product->getBaseImageAttribute(),
'is_out_of_stock' => $product->isOutOfStock(),
'url' => $product->url(),
];
});
}
/**
* Highlight the given text.
*
* @param string $text
* @return string
*/
private function highlight($text)
{
$query = str_replace(' ', '|', preg_quote($this->query));
return preg_replace("/($query)/i", '<em>$1</em>', $text);
}
/**
* Get remaining results count.
*
* @return int
*/
private function getRemainingCount()
{
return $this->totalResults - $this->products->count();
}
}