101 lines
3.2 KiB
PHP
101 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin\HR;
|
|
|
|
use App\Concerns\HasRoleChecks;
|
|
use App\Enums\Role;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\Admin\HR\EmployeeRequest;
|
|
use App\Http\Requests\PaginatedRequest;
|
|
use App\Models\User;
|
|
use App\Services\Admin\HR\EmployeeService;
|
|
use App\Services\Admin\Settings\RoleService;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
|
|
class EmployeeController extends Controller
|
|
{
|
|
use HasRoleChecks;
|
|
|
|
public function __construct(
|
|
private EmployeeService $service,
|
|
private RoleService $roleService,
|
|
) {}
|
|
|
|
public function index(PaginatedRequest $request): Response
|
|
{
|
|
return Inertia::render('admin/hr/employee/index', [
|
|
'employees' => $this->service->paginated(
|
|
...$request->validatedWithDefaults(),
|
|
filters: $request->only(['employment_status', 'is_active', 'gender']),
|
|
),
|
|
'filters' => $request->only(['employment_status', 'is_active', 'gender']),
|
|
'canViewAll' => self::hasAnyRole([Role::DEVELOPER, Role::OWNER, Role::DIREKTUR, Role::ADMIN_TOKO]),
|
|
]);
|
|
}
|
|
|
|
public function create(): Response
|
|
{
|
|
return Inertia::render('admin/hr/employee/create', [
|
|
'roles' => $this->roleService->getForEmployee(),
|
|
'canViewAll' => self::hasAnyRole([Role::DEVELOPER, Role::OWNER, Role::DIREKTUR, Role::ADMIN_TOKO]),
|
|
]);
|
|
}
|
|
|
|
public function store(EmployeeRequest $request): RedirectResponse
|
|
{
|
|
return $this->handleAction(
|
|
fn () => $this->service->store($request->validated()),
|
|
'Pegawai berhasil ditambahkan.',
|
|
'admin.hr.employees.index'
|
|
);
|
|
}
|
|
|
|
public function edit(User $user): Response
|
|
{
|
|
$user->load(['userProfile', 'employee', 'roles', 'media']);
|
|
|
|
return Inertia::render('admin/hr/employee/edit', [
|
|
'employee' => $user,
|
|
'roles' => $this->roleService->getForEmployee(),
|
|
'canViewAll' => self::hasAnyRole([Role::DEVELOPER, Role::OWNER, Role::DIREKTUR, Role::ADMIN_TOKO]),
|
|
]);
|
|
}
|
|
|
|
public function update(EmployeeRequest $request, User $user): RedirectResponse
|
|
{
|
|
return $this->handleAction(
|
|
fn () => $this->service->update($user, $request->validated()),
|
|
'Pegawai berhasil diperbarui.',
|
|
'admin.hr.employees.index'
|
|
);
|
|
}
|
|
|
|
public function destroy(User $user): RedirectResponse
|
|
{
|
|
return $this->handleAction(
|
|
fn () => $this->service->destroy($user),
|
|
'Pegawai berhasil dihapus.',
|
|
'admin.hr.employees.index'
|
|
);
|
|
}
|
|
|
|
public function toggleActive(User $user): RedirectResponse
|
|
{
|
|
$employee = $this->service->toggleActive($user);
|
|
$status = $employee->is_active ? 'diaktifkan' : 'dinonaktifkan';
|
|
|
|
return Inertia::flash('toast', ['type' => 'success', 'message' => "Pegawai berhasil {$status}."])->back();
|
|
}
|
|
|
|
public function resetPassword(User $user): RedirectResponse
|
|
{
|
|
return $this->handleAction(
|
|
fn () => $this->service->resetPassword($user),
|
|
'Kata sandi pegawai berhasil direset ke kata sandi default.',
|
|
'admin.hr.employees.index'
|
|
);
|
|
}
|
|
}
|