refactor(admin-tenants): simplify list to 2 columns (avatar + name, users)

Reduce tenant grid from 8 columns to 2. Remove status, theme, sso,
active/inactive users, and created columns from the list view.
All details remain accessible on the edit page.

- filter-schema: allow order by description and users only
- data endpoint: return minimal row shape (id, uuid, description,
  status metadata for badge only, is_default, has_avatar, total_users)
- JS grid: 2 visible columns + hidden UUID for navigation
- CSS: add .grid-tenant-profile utility for flex avatar+name layout

Refs: TENANT-LIST-MINIMAL-001
This commit is contained in:
2026-04-22 19:10:48 +02:00
parent d06df56c49
commit 0da785f4b7
5 changed files with 59 additions and 177 deletions

View File

@@ -1,7 +1,6 @@
<?php
use MintyPHP\Domain\Taxonomy\TenantStatus;
use MintyPHP\Repository\Tenant\TenantMicrosoftAuthRepository;
use MintyPHP\Service\Access\TenantAuthorizationPolicy;
use MintyPHP\Support\Guard;
@@ -18,51 +17,23 @@ $filters = gridParseFiltersFromSchemaFile(__DIR__ . '/filter-schema.php');
$order = $filters['order'];
$dir = $filters['dir'];
$computedOrderKeys = ['theme', 'sso', 'active_users', 'inactive_users'];
$computedOrderKeys = ['users'];
$userTenantRepository = app(\MintyPHP\Repository\Tenant\UserTenantRepository::class);
$tenantMicrosoftAuthRepository = app(TenantMicrosoftAuthRepository::class);
$tenantAvatarService = app(\MintyPHP\Service\Tenant\TenantAvatarService::class);
$settingsDefaultsGateway = app(\MintyPHP\Service\Settings\SettingsDefaultsGateway::class);
$settingsAppGateway = app(\MintyPHP\Service\Settings\SettingsAppGateway::class);
$gridUserCountEnricher = app(\MintyPHP\Service\Data\GridUserCountEnricher::class);
$fetchRows = static function (
array $tenantRows,
array $themes,
string $globalDefaultTheme
) use ($userTenantRepository, $tenantMicrosoftAuthRepository, $tenantAvatarService, $settingsDefaultsGateway, $gridUserCountEnricher): array {
$fetchRows = static function (array $tenantRows) use ($userTenantRepository, $tenantAvatarService, $settingsDefaultsGateway, $gridUserCountEnricher): array {
$userCounts = $gridUserCountEnricher->computeCounts(
$tenantRows,
$userTenantRepository->countUsersByTenantIds(...),
$userTenantRepository->countActiveUsersByTenantIds(...)
);
$tenantIds = array_keys($userCounts);
$tenantSsoMap = $tenantMicrosoftAuthRepository->listByTenantIds($tenantIds);
$defaultTenantId = $settingsDefaultsGateway->getDefaultTenantId();
$rows = [];
foreach ($tenantRows as $row) {
$tenantId = (int) ($row['id'] ?? 0);
$tenantTheme = strtolower(trim((string) ($row['default_theme'] ?? '')));
$themeIsTenantOverride = $tenantTheme !== '' && isset($themes[$tenantTheme]);
$resolvedThemeKey = $themeIsTenantOverride ? $tenantTheme : $globalDefaultTheme;
$resolvedThemeLabel = (string) ($themes[$resolvedThemeKey] ?? ucfirst($resolvedThemeKey));
$themePolicyRaw = $row['allow_user_theme'] ?? null;
$themePolicyMode = 'inherit';
if ($themePolicyRaw !== null && $themePolicyRaw !== '') {
$normalized = strtolower(trim((string) $themePolicyRaw));
if (in_array($normalized, ['1', 'true', 'yes', 'on'], true)) {
$themePolicyMode = 'allow';
} elseif (in_array($normalized, ['0', 'false', 'no', 'off'], true)) {
$themePolicyMode = 'disallow';
}
}
$tenantSso = $tenantSsoMap[$tenantId] ?? null;
$ssoEnabled = !empty($tenantSso['enabled']);
$ssoMicrosoftOnly = $ssoEnabled && !empty($tenantSso['enforce_microsoft_login']);
$counts = $userCounts[$tenantId] ?? ['active_users' => 0, 'inactive_users' => 0];
$tenantStatus = TenantStatus::normalizeOr((string) ($row['status'] ?? ''), TenantStatus::Active);
$tenantUuid = (string) ($row['uuid'] ?? '');
@@ -75,20 +46,7 @@ $fetchRows = static function (
'status' => $tenantStatus->value,
'status_badge' => $tenantStatus->badgeVariant(),
'status_label' => t($tenantStatus->labelToken()),
'theme' => [
'key' => $resolvedThemeKey,
'label' => t($resolvedThemeLabel),
'is_override' => $themeIsTenantOverride ? 1 : 0,
'policy_mode' => $themePolicyMode,
],
'sso' => [
'enabled' => $ssoEnabled ? 1 : 0,
'microsoft_only' => $ssoMicrosoftOnly ? 1 : 0,
],
'active_users' => $counts['active_users'],
'inactive_users' => $counts['inactive_users'],
'created' => dt($row['created'] ?? ''),
'modified' => dt($row['modified'] ?? ''),
'total_users' => $counts['active_users'] + $counts['inactive_users'],
'has_avatar' => $tenantUuid !== '' && $tenantAvatarService->hasAvatar($tenantUuid),
];
}
@@ -96,13 +54,6 @@ $fetchRows = static function (
return $rows;
};
$themes = appThemes();
$globalDefaultTheme = $settingsAppGateway->getAppTheme();
if ($globalDefaultTheme === null || !isset($themes[$globalDefaultTheme])) {
$envTheme = strtolower(trim((string) (getenv('APP_THEME') ?: 'light')));
$globalDefaultTheme = isset($themes[$envTheme]) ? $envTheme : 'light';
}
$listOptions = [
'limit' => $filters['limit'],
'offset' => $filters['offset'],
@@ -131,25 +82,10 @@ if (in_array($order, $computedOrderKeys, true)) {
'order' => 'description',
'dir' => 'asc',
]);
$rows = $fetchRows($fullResult['rows'] ?? [], $themes, $globalDefaultTheme);
$rows = $fetchRows($fullResult['rows'] ?? []);
usort($rows, static function (array $a, array $b) use ($order, $dir): int {
$valueA = '';
$valueB = '';
if ($order === 'theme') {
$valueA = strtolower((string) ($a['theme']['label'] ?? ''));
$valueB = strtolower((string) ($b['theme']['label'] ?? ''));
} elseif ($order === 'sso') {
$valueA = ((int) $a['sso']['enabled'] * 10) + (int) $a['sso']['microsoft_only'];
$valueB = ((int) $b['sso']['enabled'] * 10) + (int) $b['sso']['microsoft_only'];
} elseif ($order === 'inactive_users') {
$valueA = (int) $a['inactive_users'];
$valueB = (int) $b['inactive_users'];
} else {
$valueA = (int) $a['active_users'];
$valueB = (int) $b['active_users'];
}
$cmp = $valueA <=> $valueB;
usort($rows, static function (array $a, array $b) use ($dir): int {
$cmp = ((int) $a['total_users']) <=> ((int) $b['total_users']);
if ($cmp === 0) {
$cmp = strcasecmp((string) $a['description'], (string) $b['description']);
}
@@ -157,7 +93,7 @@ if (in_array($order, $computedOrderKeys, true)) {
});
$rows = array_slice($rows, $filters['offset'], $filters['limit']);
} else {
$rows = $fetchRows($result['rows'] ?? [], $themes, $globalDefaultTheme);
$rows = $fetchRows($result['rows'] ?? []);
}
gridJsonDataResult($rows, $total);

View File

@@ -18,7 +18,7 @@ return gridFilterSchema([
'status' => ['type' => 'enum', 'allowed' => TenantStatus::values(), 'default' => '', 'lowercase' => true],
'order' => [
'type' => 'order',
'allowed' => ['description', 'status', 'theme', 'sso', 'active_users', 'inactive_users', 'created', 'modified'],
'allowed' => ['description', 'users'],
'default' => 'description',
],
'dir' => ['type' => 'dir', 'default' => 'asc'],

View File

@@ -44,17 +44,8 @@ $pageConfig = [
'gridLang' => $gridLang,
'labels' => [
'avatar' => t('Avatar'),
'description' => t('Description'),
'status' => t('Status'),
'theme' => t('Theme'),
'sso' => t('SSO'),
'activeUsers' => t('Active users'),
'inactiveUsers' => t('Inactive users'),
'created' => t('Created'),
'active' => t('Active'),
'default' => t('Default'),
'microsoftOnly' => t('Microsoft only'),
'inactive' => t('Inactive'),
'tenant' => t('Tenant'),
'users' => t('Users'),
],
];
?>