parfum/app/Livewire/Studio/Loyalty/Tier.php

156 lines
4.6 KiB
PHP

<?php
namespace App\Livewire\Studio\Loyalty;
use App\Livewire\Forms\Studio\Loyalty\TierForm;
use App\Models\Tier as TierModel;
use App\Traits\WithAuthorization;
use App\Traits\WithCloseModal;
use App\Traits\WithConfirmation;
use App\Traits\WithToast;
use App\Traits\WithUpdatedData;
use Flux\Flux;
use Livewire\Attributes\On;
use Livewire\Attributes\Title;
use Livewire\Component;
#[Title('Tier')]
class Tier extends Component
{
use WithAuthorization, WithCloseModal, WithConfirmation, WithToast, WithUpdatedData;
public array $tiers = [];
public TierForm $form;
public string $method = 'create';
public string $modalTitle = '';
public function mount()
{
$this->tiers = TierModel::with(['memberships.user.customer.orders.items', 'memberships.user.customer.orders.payments'])
->withCount('memberships')
->orderBy('min_points', 'asc')
->get()
->map(function ($tier) {
$topMembership = $tier->memberships()
->with(['user.customer.orders.items', 'user.customer.orders.payments'])
->orderByDesc('total_points')
->first();
$topMemberStats = null;
if ($topMembership && $topMembership->user && $topMembership->user->customer) {
$orders = $topMembership->user->customer->orders;
$totalOrders = $orders->count();
$totalItems = $orders->flatMap(fn ($order) => $order->items)->sum('quantity');
$totalAmount = $orders->flatMap(fn ($order) => $order->payments)->sum('amount');
$topMemberStats = [
'name' => $topMembership->user->customer->name,
'points' => currency($topMembership->total_points),
'total_orders' => currency($totalOrders),
'total_items' => currency($totalItems),
'total_amount' => currency($totalAmount),
];
}
return [
'hash' => $tier->hash,
'name' => $tier->name,
'min_points' => currency($tier->min_points),
'max_points' => currency($tier->max_points),
'total_members' => currency($tier->memberships_count),
'top_member' => $topMemberStats,
];
})
->toArray();
}
#[On('modal:open')]
public function openModal(string $method, string $modalTitle, ?string $id = null)
{
$this->resetValidation();
$this->resetErrorBag();
$this->method = $method;
$this->modalTitle = $modalTitle;
if ($id) {
$this->form->setTier(TierModel::byHashOrFail($id));
}
}
public function create()
{
$this->canOrAbort('create tier');
$tier = $this->form->store();
$tiers = $this->tiers;
$tiers[] = [
'hash' => $tier->hash,
'name' => $tier->name,
'min_points' => currency($tier->min_points, ''),
'max_points' => currency($tier->max_points, ''),
'total_members' => 0,
'top_member' => null,
];
usort($tiers, fn ($a, $b) => replaceCurrency($a['min_points']) <=> replaceCurrency($b['min_points']));
$this->tiers = $tiers;
$this->toast('Tier berhasil ditambahkan.');
Flux::modals()->close();
}
public function update()
{
$this->canOrAbort('update tier');
$tier = $this->form->update();
// update array tiers
$tiers = $this->tiers;
foreach ($tiers as $index => $item) {
if ($item['hash'] === $tier->hash) {
$tiers[$index] = [
'hash' => $tier->hash,
'name' => $tier->name,
'min_points' => currency($tier->min_points, ''),
'max_points' => currency($tier->max_points, ''),
];
break;
}
}
$this->tiers = $tiers;
$this->toast('Tier berhasil diperbarui.');
Flux::modals()->close();
}
public function delete(TierModel $tier)
{
$tier->delete();
// update array tiers
$tiers = array_values(array_filter($this->tiers, fn ($item) => $item['hash'] !== $tier->hash));
$this->tiers = $tiers;
$this->toast('Tier berhasil dihapus.');
Flux::modals()->close();
}
public function render()
{
return view('livewire.studio.loyalty.tiers', [
'pageTitle' => 'Tier',
]);
}
}