mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\UserResource\Actions;
|
|
|
|
use App\Exceptions\Api\ApiException;
|
|
use App\Models\User;
|
|
use App\Service\DeletionService;
|
|
use Filament\Actions\DeleteAction;
|
|
use Throwable;
|
|
|
|
class DeleteUser extends DeleteAction
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->icon('heroicon-m-trash');
|
|
$this->action(function (): void {
|
|
$result = $this->process(function (User $record): bool {
|
|
try {
|
|
$deletionService = app(DeletionService::class);
|
|
$deletionService->deleteUser($record);
|
|
|
|
return true;
|
|
} catch (ApiException $exception) {
|
|
$this->failureNotificationTitle($exception->getTranslatedMessage());
|
|
report($exception);
|
|
} catch (Throwable $exception) {
|
|
$this->failureNotificationTitle(__('exceptions.unknown_error_in_admin_panel'));
|
|
report($exception);
|
|
}
|
|
|
|
return false;
|
|
});
|
|
|
|
if (! $result) {
|
|
$this->failure();
|
|
|
|
return;
|
|
}
|
|
|
|
$this->success();
|
|
});
|
|
}
|
|
}
|