## Summary - consolidate internal platform naming from `Tenant` to `Environment` / `ManagedEnvironment` across models, controllers, services, and Filament resources - rename environment-scoped UI surfaces such as dashboards, chooser flows, navigation, and related widgets to match the updated environment-first domain language - align middleware, onboarding/review lifecycle services, jobs, and route/context controllers with the new environment-scoped architecture ## Validation - not rerun as part of this commit/push/PR request ## Notes - branch is 1 commit ahead of `platform-dev` - main commit: `refactor: consolidate internal tenant model naming` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #355
79 lines
2.3 KiB
PHP
79 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Widgets\ManagedEnvironment;
|
|
|
|
use App\Models\OperationRun;
|
|
use App\Models\ManagedEnvironment;
|
|
use App\Support\OperationRunLinks;
|
|
use Filament\Facades\Filament;
|
|
use Filament\Widgets\Widget;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
class RecentOperationsSummary extends Widget
|
|
{
|
|
protected static bool $isLazy = false;
|
|
|
|
protected string $view = 'filament.widgets.managed-environment.recent-operations-summary';
|
|
|
|
public ?ManagedEnvironment $record = null;
|
|
|
|
private function resolveTenant(): ?ManagedEnvironment
|
|
{
|
|
$tenant = Filament::getTenant();
|
|
|
|
if ($tenant instanceof ManagedEnvironment) {
|
|
return $tenant;
|
|
}
|
|
|
|
return $this->record instanceof ManagedEnvironment ? $this->record : null;
|
|
}
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
protected function getViewData(): array
|
|
{
|
|
$tenant = $this->resolveTenant();
|
|
|
|
if (! $tenant instanceof ManagedEnvironment) {
|
|
return [
|
|
'tenant' => null,
|
|
'runs' => collect(),
|
|
'operationsIndexUrl' => OperationRunLinks::index(),
|
|
'operationsIndexLabel' => OperationRunLinks::openCollectionLabel(),
|
|
'operationsIndexDescription' => OperationRunLinks::collectionScopeDescription(),
|
|
];
|
|
}
|
|
|
|
/** @var Collection<int, OperationRun> $runs */
|
|
$runs = OperationRun::query()
|
|
->where('managed_environment_id', (int) $tenant->getKey())
|
|
->orderByDesc('created_at')
|
|
->orderByDesc('id')
|
|
->limit(5)
|
|
->get([
|
|
'id',
|
|
'workspace_id',
|
|
'managed_environment_id',
|
|
'type',
|
|
'status',
|
|
'outcome',
|
|
'context',
|
|
'failure_summary',
|
|
'created_at',
|
|
'started_at',
|
|
'completed_at',
|
|
]);
|
|
|
|
return [
|
|
'tenant' => $tenant,
|
|
'runs' => $runs,
|
|
'operationsIndexUrl' => OperationRunLinks::index($tenant),
|
|
'operationsIndexLabel' => OperationRunLinks::openCollectionLabel(),
|
|
'operationsIndexDescription' => OperationRunLinks::collectionScopeDescription(),
|
|
];
|
|
}
|
|
}
|