## Summary - retire the tenant panel runtime and converge operator routing on the workspace-first admin shell - update tenant, operations, and required-permissions navigation helpers to use canonical workspace-scoped URLs - repair the focused feature coverage, add the Spec 280 browser smoke, and record the implementation close-out in the requirements checklist ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/WorkspaceFoundation tests/Feature/Workspaces tests/Feature/ManagedEnvironment tests/Feature/RequiredPermissions tests/Feature/Operations tests/Feature/MonitoringOperationsTest.php` - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Browser/Spec280WorkspaceTenancyEnvironmentRoutingSmokeTest.php` - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` ## Note - `origin/platform` is not present on the remote; `platform-dev` is the clean base branch that limits this PR to the Spec 280 prep commit plus the implementation commit. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #340
70 lines
2.2 KiB
PHP
70 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Widgets\Tenant;
|
|
|
|
use App\Filament\Pages\BaselineCompareLanding;
|
|
use App\Models\ManagedEnvironment;
|
|
use App\Support\Baselines\TenantGovernanceAggregate;
|
|
use App\Support\Baselines\TenantGovernanceAggregateResolver;
|
|
use App\Support\OperationRunLinks;
|
|
use Filament\Facades\Filament;
|
|
use Filament\Widgets\Widget;
|
|
|
|
class BaselineCompareCoverageBanner extends Widget
|
|
{
|
|
protected static bool $isLazy = false;
|
|
|
|
protected string $view = 'filament.widgets.tenant.baseline-compare-coverage-banner';
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
protected function getViewData(): array
|
|
{
|
|
$tenant = Filament::getTenant();
|
|
|
|
if (! $tenant instanceof ManagedEnvironment) {
|
|
return [
|
|
'shouldShow' => false,
|
|
];
|
|
}
|
|
|
|
$aggregate = $this->governanceAggregate($tenant);
|
|
$runUrl = $aggregate->stats->operationRunId !== null
|
|
? OperationRunLinks::view($aggregate->stats->operationRunId, $tenant)
|
|
: null;
|
|
|
|
$landingUrl = BaselineCompareLanding::getUrl(tenant: $tenant);
|
|
$nextActionUrl = match ($aggregate->nextActionTarget) {
|
|
'run' => $runUrl,
|
|
'findings' => \App\Filament\Resources\FindingResource::getUrl('index', tenant: $tenant),
|
|
'landing' => $landingUrl,
|
|
default => null,
|
|
};
|
|
$shouldShow = in_array($aggregate->stateFamily, ['caution', 'stale', 'unavailable', 'in_progress'], true)
|
|
|| $aggregate->stateFamily === 'action_required';
|
|
|
|
return [
|
|
'shouldShow' => $shouldShow,
|
|
'landingUrl' => $landingUrl,
|
|
'runUrl' => $runUrl,
|
|
'nextActionUrl' => $nextActionUrl,
|
|
'summaryAssessment' => $aggregate->summaryAssessment->toArray(),
|
|
'state' => $aggregate->compareState,
|
|
];
|
|
}
|
|
|
|
private function governanceAggregate(ManagedEnvironment $tenant): TenantGovernanceAggregate
|
|
{
|
|
/** @var TenantGovernanceAggregateResolver $resolver */
|
|
$resolver = app(TenantGovernanceAggregateResolver::class);
|
|
|
|
/** @var TenantGovernanceAggregate $aggregate */
|
|
$aggregate = $resolver->forTenant($tenant);
|
|
|
|
return $aggregate;
|
|
}
|
|
}
|