- Introduced `LogisticsApiException` to handle connection and request errors with user-friendly messages in French. - Updated `LogisticsService` to include configurable timeout, connection timeout, retry attempts, and sleep duration for retries. - Enhanced error handling in Filament pages to catch `LogisticsApiException` and provide clear feedback to users. - Updated `.env` and `config/logistics.php` to support new configuration options. - Added logging for failed API requests in `api_request_logs`. - Created comprehensive API documentation for Logistics endpoints.
59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use App\Exceptions\LogisticsApiException;
|
|
use App\Services\LogisticsService;
|
|
use Filament\Pages\Page;
|
|
use Filament\Support\Icons\Heroicon;
|
|
|
|
class Journaux extends Page
|
|
{
|
|
protected static string|\BackedEnum|null $navigationIcon = Heroicon::OutlinedBookOpen;
|
|
|
|
protected static ?string $navigationLabel = 'Journaux';
|
|
|
|
protected static ?string $title = 'Journaux';
|
|
|
|
protected static ?int $navigationSort = 4;
|
|
|
|
protected string $view = 'filament.pages.journaux';
|
|
|
|
public string $select = '';
|
|
|
|
public int $results = 10;
|
|
|
|
public string $type = '';
|
|
|
|
public array $data = [];
|
|
|
|
public ?array $metadata = null;
|
|
|
|
public ?string $errorMessage = null;
|
|
|
|
public function searchJournaux(): void
|
|
{
|
|
try {
|
|
$service = app(LogisticsService::class);
|
|
|
|
$params = array_filter([
|
|
'select' => $this->select,
|
|
'results' => $this->results,
|
|
'TYPE' => $this->type,
|
|
]);
|
|
|
|
$response = $service->jnlList($params);
|
|
|
|
$this->data = $response['data'] ?? [];
|
|
$this->metadata = $response['metadata'] ?? null;
|
|
$this->errorMessage = $response['error'] ?? null;
|
|
} catch (LogisticsApiException $e) {
|
|
$this->errorMessage = $e->getMessage();
|
|
$this->data = [];
|
|
} catch (\Throwable $e) {
|
|
$this->errorMessage = "Erreur inattendue : {$e->getMessage()}";
|
|
$this->data = [];
|
|
}
|
|
}
|
|
}
|