- Updated paginated methods in multiple services to accept a highlight parameter for filtering results. - Modified notification URLs to include the highlight parameter for specific entity IDs. - Enhanced frontend components to display a message when filtered by notification, with an option to show all entries. - Implemented mark as read functionality in the notification bell component upon clicking a notification. - Updated multiple index pages to handle the highlight prop and display relevant messages.
137 lines
4.3 KiB
PHP
137 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin\Master\Product;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\Admin\Master\Product\ProductRequest;
|
|
use App\Http\Requests\PaginatedRequest;
|
|
use App\Models\Product;
|
|
use App\Services\Admin\Master\CategoryService;
|
|
use App\Services\Admin\Master\Product\ProductService;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
|
|
class ProductController extends Controller
|
|
{
|
|
public function __construct(
|
|
private ProductService $service,
|
|
private CategoryService $categoryService,
|
|
) {}
|
|
|
|
public function index(PaginatedRequest $request): Response
|
|
{
|
|
return Inertia::render('admin/master/product/index', [
|
|
'products' => $this->service->paginated(
|
|
...$request->validatedWithDefaults(),
|
|
filters: $request->only(['status', 'stock', 'category', 'name', 'featured']),
|
|
),
|
|
'categories' => $this->categoryService->getAll(),
|
|
'productNames' => $this->service->getNames(),
|
|
'filters' => $request->only(['status', 'stock', 'category', 'name', 'featured']),
|
|
'highlight' => $request->input('highlight'),
|
|
]);
|
|
}
|
|
|
|
public function create(): Response
|
|
{
|
|
return Inertia::render('admin/master/product/create', [
|
|
'categories' => $this->categoryService->getAll(),
|
|
]);
|
|
}
|
|
|
|
public function store(ProductRequest $request): RedirectResponse
|
|
{
|
|
return $this->handleAction(
|
|
fn () => $this->service->store($request->validated()),
|
|
'Produk berhasil ditambahkan.',
|
|
'admin.master.products.index',
|
|
'admin.master.products.create'
|
|
);
|
|
}
|
|
|
|
public function edit(Product $product): Response
|
|
{
|
|
return Inertia::render('admin/master/product/edit', [
|
|
'product' => $this->service->getForEdit($product),
|
|
'categories' => $this->categoryService->getAll(),
|
|
]);
|
|
}
|
|
|
|
public function update(ProductRequest $request, Product $product): RedirectResponse
|
|
{
|
|
return $this->handleAction(
|
|
fn () => $this->service->update($product, $request->validated()),
|
|
'Produk berhasil diperbarui.',
|
|
'admin.master.products.index',
|
|
'admin.master.products.edit',
|
|
['product' => $product]
|
|
);
|
|
}
|
|
|
|
public function destroy(Product $product): RedirectResponse
|
|
{
|
|
return $this->handleAction(
|
|
fn () => $this->service->destroy($product),
|
|
'Produk berhasil dihapus.',
|
|
'admin.master.products.index'
|
|
);
|
|
}
|
|
|
|
public function toggleStatus(Product $product): RedirectResponse
|
|
{
|
|
$this->service->toggleStatus($product);
|
|
$status = $product->fresh()->status;
|
|
|
|
Inertia::flash('toast', ['type' => 'success', 'message' => "Status produk berhasil diubah menjadi {$status->label()}."]);
|
|
|
|
return back();
|
|
}
|
|
|
|
public function toggleFeatured(Product $product): RedirectResponse
|
|
{
|
|
$this->service->toggleFeatured($product);
|
|
$featured = $product->fresh()->is_featured;
|
|
|
|
Inertia::flash('toast', ['type' => 'success', 'message' => $featured ? 'Produk berhasil ditampilkan di halaman depan.' : 'Produk berhasil disembunyikan dari halaman depan.']);
|
|
|
|
return back();
|
|
}
|
|
|
|
public function approve(Product $product): RedirectResponse
|
|
{
|
|
$this->service->approve($product);
|
|
|
|
Inertia::flash('toast', ['type' => 'success', 'message' => 'Produk berhasil disetujui.']);
|
|
|
|
return back();
|
|
}
|
|
|
|
public function reject(Product $product): RedirectResponse
|
|
{
|
|
$reason = request()->input('rejection_reason', '');
|
|
$this->service->reject($product, $reason);
|
|
|
|
Inertia::flash('toast', ['type' => 'success', 'message' => 'Produk berhasil ditolak.']);
|
|
|
|
return back();
|
|
}
|
|
|
|
public function resubmit(Product $product): RedirectResponse
|
|
{
|
|
$this->service->resubmit($product);
|
|
|
|
Inertia::flash('toast', ['type' => 'success', 'message' => 'Produk berhasil diajukan ulang.']);
|
|
|
|
return back();
|
|
}
|
|
|
|
public function variants(Product $product): JsonResponse
|
|
{
|
|
return response()->json([
|
|
'variants' => $this->service->getVariants($product),
|
|
]);
|
|
}
|
|
}
|