generated from boboko/starter
Feat: Updating routes and controllers to use the updated Services coming from boboko/core
This commit is contained in:
@@ -2,18 +2,23 @@
|
|||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use Lunar\Models\Collection;
|
use Illuminate\Http\Response;
|
||||||
use Modules\Core\Catalog\DTOs\ProductFilters;
|
use Modules\Core\Catalog\DTOs\ProductFilters;
|
||||||
|
use Modules\Core\Catalog\Services\CollectionService;
|
||||||
use Modules\Core\Catalog\Services\ProductService;
|
use Modules\Core\Catalog\Services\ProductService;
|
||||||
|
|
||||||
class CategoryController extends Controller
|
class CategoryController extends Controller
|
||||||
{
|
{
|
||||||
public function __construct(
|
public function __construct(
|
||||||
private readonly ProductService $products,
|
private readonly ProductService $products,
|
||||||
|
private readonly CollectionService $collections,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
public function show(string $locale, Collection $collection)
|
public function show(string $locale, int $collection)
|
||||||
{
|
{
|
||||||
|
$collectionData = $this->collections->getById($collection);
|
||||||
|
abort_if($collectionData === null, Response::HTTP_NOT_FOUND);
|
||||||
|
|
||||||
$perPage = 12;
|
$perPage = 12;
|
||||||
$page = (int) request('page', 1);
|
$page = (int) request('page', 1);
|
||||||
|
|
||||||
@@ -22,7 +27,7 @@ public function show(string $locale, Collection $collection)
|
|||||||
// real LengthAwarePaginator of plain arrays (already localized/flattened),
|
// real LengthAwarePaginator of plain arrays (already localized/flattened),
|
||||||
// not Product models.
|
// not Product models.
|
||||||
$products = $this->products->list(
|
$products = $this->products->list(
|
||||||
filters: new ProductFilters(collectionId: $collection->id),
|
filters: new ProductFilters(collectionId: $collectionData['id']),
|
||||||
perPage: $perPage,
|
perPage: $perPage,
|
||||||
page: $page,
|
page: $page,
|
||||||
)->through(fn (array $product) => [
|
)->through(fn (array $product) => [
|
||||||
@@ -33,7 +38,7 @@ public function show(string $locale, Collection $collection)
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
return view('category.show', [
|
return view('category.show', [
|
||||||
'collection' => $collection,
|
'collection' => $collectionData,
|
||||||
'products' => $products,
|
'products' => $products,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use Illuminate\Http\Response;
|
use Illuminate\Http\Response;
|
||||||
use Lunar\Models\Collection;
|
|
||||||
use Modules\Core\Catalog\Services\ProductService;
|
use Modules\Core\Catalog\Services\ProductService;
|
||||||
|
|
||||||
class ProductController extends Controller
|
class ProductController extends Controller
|
||||||
@@ -16,7 +15,6 @@ public function show(string $locale, int $id)
|
|||||||
abort_if($product === null, Response::HTTP_NOT_FOUND);
|
abort_if($product === null, Response::HTTP_NOT_FOUND);
|
||||||
|
|
||||||
$collection = $product['collections'][0] ?? null;
|
$collection = $product['collections'][0] ?? null;
|
||||||
$collectionModel = $collection !== null ? Collection::find($collection['id']) : null;
|
|
||||||
|
|
||||||
$variantsData = collect($product['variants'])
|
$variantsData = collect($product['variants'])
|
||||||
->map(fn (array $variant) => [
|
->map(fn (array $variant) => [
|
||||||
@@ -30,12 +28,8 @@ public function show(string $locale, int $id)
|
|||||||
$firstVariant = $product['variants'][0] ?? null;
|
$firstVariant = $product['variants'][0] ?? null;
|
||||||
$option = $firstVariant['options'][0]['option'] ?? null;
|
$option = $firstVariant['options'][0]['option'] ?? null;
|
||||||
|
|
||||||
// temp categories here
|
|
||||||
$categories = Collection::orderBy('_lft')->get();
|
|
||||||
|
|
||||||
return view('product.show', [
|
return view('product.show', [
|
||||||
'categories' => $categories,
|
'collection' => $collection,
|
||||||
'collection' => $collectionModel,
|
|
||||||
'product' => $product,
|
'product' => $product,
|
||||||
'option' => $option,
|
'option' => $option,
|
||||||
'variantsData' => $variantsData,
|
'variantsData' => $variantsData,
|
||||||
|
|||||||
@@ -6,9 +6,14 @@
|
|||||||
use App\Models\Staff;
|
use App\Models\Staff;
|
||||||
use Illuminate\Database\Eloquent\Relations\Relation;
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
||||||
use Illuminate\Support\Facades\URL;
|
use Illuminate\Support\Facades\URL;
|
||||||
|
use Illuminate\Support\Facades\View;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Illuminate\View\View as ViewInstance;
|
||||||
use Lunar\Facades\ModelManifest;
|
use Lunar\Facades\ModelManifest;
|
||||||
use Lunar\Facades\Telemetry;
|
use Lunar\Facades\Telemetry;
|
||||||
|
use Modules\Core\Catalog\DTOs\CollectionFilters;
|
||||||
|
use Modules\Core\Catalog\Enums\CollectionSort;
|
||||||
|
use Modules\Core\Catalog\Services\CollectionService;
|
||||||
|
|
||||||
class AppServiceProvider extends ServiceProvider
|
class AppServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
@@ -16,6 +21,17 @@ public function boot(): void
|
|||||||
{
|
{
|
||||||
Telemetry::optOut();
|
Telemetry::optOut();
|
||||||
|
|
||||||
|
// header.blade.php's category dropdown — root collections only, resolved
|
||||||
|
// per-request so the composer runs after `locale` middleware has already
|
||||||
|
// set App::getLocale(), which CollectionService's name resolution depends on.
|
||||||
|
View::composer('components.header', function (ViewInstance $view) {
|
||||||
|
$view->with('categories', app(CollectionService::class)->list(
|
||||||
|
filters: new CollectionFilters(rootOnly: true),
|
||||||
|
perPage: 100,
|
||||||
|
sort: CollectionSort::Position,
|
||||||
|
)->items());
|
||||||
|
});
|
||||||
|
|
||||||
if ($this->app->environment('production')) {
|
if ($this->app->environment('production')) {
|
||||||
URL::forceScheme('https');
|
URL::forceScheme('https');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,6 +54,7 @@
|
|||||||
*/
|
*/
|
||||||
'cart_lines' => [
|
'cart_lines' => [
|
||||||
Lunar\Pipelines\CartLine\GetUnitPrice::class,
|
Lunar\Pipelines\CartLine\GetUnitPrice::class,
|
||||||
|
Modules\Core\Cart\Pipelines\ZeroSavedForLaterPrice::class,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|||||||
@@ -44,5 +44,5 @@
|
|||||||
| Determines whether the cart sholud be soft deleted when the user logs out.
|
| Determines whether the cart sholud be soft deleted when the user logs out.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'delete_on_forget' => true,
|
'delete_on_forget' => false,
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
@extends('layouts.app')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('title', $collection->translateAttribute('name') . ' — ' . config('app.name'))
|
@section('title', $collection['name'] . ' — ' . config('app.name'))
|
||||||
@section('description', strip_tags($collection->translateAttribute('description') ?? ''))
|
@section('description', strip_tags($collection['description'] ?? ''))
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="max-w-7xl mx-auto px-4 sm:px-8 py-12">
|
<div class="max-w-7xl mx-auto px-4 sm:px-8 py-12">
|
||||||
|
|
||||||
<div class="flex items-end justify-between gap-6 flex-wrap mb-10">
|
<div class="flex items-end justify-between gap-6 flex-wrap mb-10">
|
||||||
<h1 class="font-display font-extrabold text-h1">{{ $collection->translateAttribute('name') }}</h1>
|
<h1 class="font-display font-extrabold text-h1">{{ $collection['name'] }}</h1>
|
||||||
|
|
||||||
<x-breadcrumb :items="[
|
<x-breadcrumb :items="[
|
||||||
['label' => __('storefront.nav.home'), 'href' => route('home')],
|
['label' => __('storefront.nav.home'), 'href' => route('home')],
|
||||||
['label' => $collection->translateAttribute('name')],
|
['label' => $collection['name']],
|
||||||
]" />
|
]" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,11 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
<div class="nav-dropdown">
|
<div class="nav-dropdown">
|
||||||
{{-- @foreach($categories as $category)
|
@foreach($categories ?? [] as $category)
|
||||||
<a href="/category/{{ $category->id }}">
|
<a href="{{ route('category.show', ['id' => $category['id']]) }}">
|
||||||
{{ $category->translateAttribute('name') }}
|
{{ $category['name'] }}
|
||||||
</a>
|
</a>
|
||||||
@endforeach --}}
|
@endforeach
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<x-breadcrumb class="mb-14 justify-end" :items="[
|
<x-breadcrumb class="mb-14 justify-end" :items="[
|
||||||
$collection
|
$collection
|
||||||
? ['label' => $collection->translateAttribute('name'), 'href' => route('category.show', ['collection' => $collection])]
|
? ['label' => $collection['name'], 'href' => route('category.show', ['id' => $collection['id']])]
|
||||||
: ['label' => __('storefront.nav.products'), 'href' => '/products'],
|
: ['label' => __('storefront.nav.products'), 'href' => '/products'],
|
||||||
['label' => $product['name']],
|
['label' => $product['name']],
|
||||||
]" />
|
]" />
|
||||||
|
|||||||
+11
-1
@@ -7,6 +7,16 @@
|
|||||||
use App\Http\Controllers\ProductController;
|
use App\Http\Controllers\ProductController;
|
||||||
use Illuminate\Support\Facades\Route;
|
use Illuminate\Support\Facades\Route;
|
||||||
|
|
||||||
|
// Bare `/` has no {locale} segment to prefix-match against, so it's declared outside
|
||||||
|
// the group below purely to give `locale` middleware a route to run on — the group's
|
||||||
|
// `Route::prefix('{locale}')` requires a non-empty first segment, so `/` would
|
||||||
|
// otherwise 404 before the middleware (which already redirects an empty/unrecognized
|
||||||
|
// locale segment to the resolved default) ever gets a chance to run. Middleware runs
|
||||||
|
// before controller parameter binding, so this never actually reaches
|
||||||
|
// HomeController::index()'s required $locale argument — the middleware always
|
||||||
|
// redirects a request with no matching locale segment first.
|
||||||
|
Route::get('/', [HomeController::class, 'index'])->middleware('locale');
|
||||||
|
|
||||||
Route::prefix('{locale}')
|
Route::prefix('{locale}')
|
||||||
->middleware('locale')
|
->middleware('locale')
|
||||||
->group(function () {
|
->group(function () {
|
||||||
@@ -16,7 +26,7 @@
|
|||||||
'product.show',
|
'product.show',
|
||||||
);
|
);
|
||||||
|
|
||||||
Route::get('/category/{collection}', [CategoryController::class, 'show'])->name(
|
Route::get('/category/{id}', [CategoryController::class, 'show'])->name(
|
||||||
'category.show',
|
'category.show',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user