110 lines
2.6 KiB
PHP
110 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Studio\Master;
|
|
|
|
use App\Enums\CategoryType;
|
|
use App\Livewire\Forms\Studio\Master\CategoryForm;
|
|
use App\Models\Category as CategoryModel;
|
|
use App\Traits\Authorization\WithAuthorization;
|
|
use App\Traits\Components\WithCloseModal;
|
|
use App\Traits\Components\WithConfirmation;
|
|
use App\Traits\Components\WithToast;
|
|
use App\Traits\Notification\WithSubscribeNotification;
|
|
use App\Traits\Utilities\WithUpdatedData;
|
|
use Flux\Flux;
|
|
use Illuminate\Contracts\View\View;
|
|
use Livewire\Attributes\On;
|
|
use Livewire\Attributes\Title;
|
|
use Livewire\Component;
|
|
|
|
#[Title('Kategori')]
|
|
class Category extends Component
|
|
{
|
|
use WithAuthorization, WithCloseModal, WithConfirmation, WithSubscribeNotification, WithToast, WithUpdatedData;
|
|
|
|
public CategoryForm $form;
|
|
|
|
public string $method = 'create';
|
|
|
|
public string $modalTitle = '';
|
|
|
|
public bool $showDescriptionAndImage = true;
|
|
|
|
public function create(): void
|
|
{
|
|
$this->canOrAbort('create category');
|
|
|
|
$this->form->store();
|
|
|
|
$this->dispatch('refreshDatatable');
|
|
|
|
$this->toast('Kategori berhasil ditambahkan.');
|
|
|
|
Flux::modals()->close();
|
|
}
|
|
|
|
public function update(): void
|
|
{
|
|
$this->canOrAbort('update category');
|
|
|
|
$this->form->update();
|
|
|
|
$this->dispatch('refreshDatatable');
|
|
|
|
$this->toast('Kategori berhasil diperbarui.');
|
|
|
|
Flux::modals()->close();
|
|
}
|
|
|
|
public function delete(CategoryModel $category): void
|
|
{
|
|
$this->canOrAbort('delete category');
|
|
|
|
$this->form->category = $category;
|
|
|
|
$this->form->delete();
|
|
|
|
$this->dispatch('refreshDatatable');
|
|
|
|
$this->toast('Kategori berhasil dihapus.');
|
|
|
|
Flux::modals()->close();
|
|
}
|
|
|
|
#[On('fn:sortOrder')]
|
|
public function sortOrder(CategoryModel $category, string $direction): void
|
|
{
|
|
$this->canOrAbort('update category');
|
|
|
|
$this->form->category = $category;
|
|
|
|
$this->form->sortOrder($direction);
|
|
|
|
$this->dispatch('refreshDatatable');
|
|
}
|
|
|
|
#[On('modal:open')]
|
|
public function openModal(string $method, string $modalTitle, ?string $id = null): void
|
|
{
|
|
$this->resetValidation();
|
|
$this->resetErrorBag();
|
|
|
|
$this->method = $method;
|
|
$this->modalTitle = $modalTitle;
|
|
|
|
$id && $this->form->setCategory(CategoryModel::byHashOrFail($id));
|
|
}
|
|
|
|
public function updatedFormType(string $value): void
|
|
{
|
|
$this->showDescriptionAndImage = $value == CategoryType::PERFUME->value;
|
|
}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('livewire.studio.master.categories', [
|
|
'pageTitle' => 'Kategori',
|
|
]);
|
|
}
|
|
}
|