Introduces a reusable core detail-drawer primitive that slides in from the right and loads any view via a `*-fragment(none).phtml` endpoint. Bundles the address book list overhaul that is its first consumer. Core additions: - `app-detail-drawer.js` — generic drawer with stepper, focus trap, body scroll-lock, URL-hash deep-linking, session-expiry detection - `app-fragment-init.js` — auto-wires tabs/lookups/confirm/file-upload/ fslightbox inside injected HTML; consumers do not re-initialize components - `app-focus-trap.js` — shared focus-trap + refcounted scroll-lock, used by both filter-drawer and detail-drawer - `getHtml()` in `app-http.js` + `SessionExpiredError`; drawer reloads the page on auth redirect instead of rendering the login form in the panel - `DetailDrawerFragmentContractTest` enforces that every `initDetailDrawer` consumer ships matching `*-fragment($id).php` + `*-fragment(none).phtml` Address book list: - Grid collapses from 9 columns to 4 (identity / context / phone / actions) with a two-line identity cell (avatar + name + email) - Tenant register tabs above the grid using the `app-list-tabs` partial; tenant filter wired via hidden toolbar field so grid.js forwards it on every data fetch - Profile body extracted to a shared partial so the full-page view and the new drawer fragment share the same markup - New i18n keys for the drawer/list labels Also refactors `app-filter-drawer` to reuse the shared focus-trap and scroll-lock instead of maintaining its own copy, and documents the detail-drawer convention in CLAUDE.md. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
92 lines
3.6 KiB
PHP
92 lines
3.6 KiB
PHP
<?php
|
|
|
|
use MintyPHP\Buffer;
|
|
use MintyPHP\Http\SessionStoreInterface;
|
|
use MintyPHP\Module\AddressBook\Service\AddressBookService;
|
|
use MintyPHP\Session;
|
|
use MintyPHP\Support\Guard;
|
|
|
|
$session = app(SessionStoreInterface::class)->all();
|
|
Guard::requireLogin();
|
|
Guard::requireAbilityOrForbidden(\MintyPHP\Module\AddressBook\AddressBookAuthorizationPolicy::ABILITY_VIEW);
|
|
|
|
$filterSchema = require __DIR__ . '/filter-schema.php';
|
|
$query = requestInput()->queryAll();
|
|
$currentUserId = (int) ($session['user']['id'] ?? 0);
|
|
$addressBookService = app(AddressBookService::class);
|
|
$context = $addressBookService->buildIndexContext($currentUserId, $query);
|
|
$activeTenants = $context['activeTenants'] ?? [];
|
|
$activeRoles = $context['activeRoles'] ?? [];
|
|
$activeDepartments = $context['activeDepartments'] ?? [];
|
|
$tenantItems = $context['tenantItems'] ?? [];
|
|
$tenantTabs = $context['tenantTabs'] ?? [];
|
|
$activeTenant = (string) ($context['activeTenant'] ?? '');
|
|
$departments = $context['departments'] ?? [];
|
|
$roles = $context['roles'] ?? [];
|
|
$customFieldFilterDefinitions = $context['customFieldFilterDefinitions'] ?? [];
|
|
$customFieldFilterQuery = $context['customFieldFilterQuery'] ?? [];
|
|
$tenantDepartmentMap = $context['tenantDepartmentMap'] ?? [];
|
|
$toolbarOptionSets = [
|
|
'tenant_items' => (array) $tenantItems,
|
|
'department_items' => (array) $departments,
|
|
'role_items' => (array) $roles,
|
|
];
|
|
$toolbarFilterStateOverrides = [
|
|
'tenant' => $activeTenant,
|
|
'search' => (string) gridQueryString($query, 'search', ''),
|
|
'tenants' => array_map('strval', (array) $activeTenants),
|
|
'departments' => array_map('strval', (array) $activeDepartments),
|
|
'roles' => array_map('strval', (array) $activeRoles),
|
|
];
|
|
$listFilterContext = gridBuildListFilterContext($filterSchema, [
|
|
'query' => $query,
|
|
'search_keys' => ['search'],
|
|
'toolbar_state_overrides' => $toolbarFilterStateOverrides,
|
|
'toolbar_option_sets' => $toolbarOptionSets,
|
|
]);
|
|
$toolbarFilterSchema = $listFilterContext['toolbarFilterSchema'];
|
|
$toolbarFilterState = $listFilterContext['toolbarFilterState'];
|
|
$searchToolbarFilterSchema = $listFilterContext['searchToolbarFilterSchema'];
|
|
$drawerToolbarFilterSchema = $listFilterContext['drawerToolbarFilterSchema'];
|
|
$toolbarOptionSets = $listFilterContext['toolbarOptionSets'];
|
|
$clientFilterSchema = $listFilterContext['clientFilterSchema'];
|
|
$searchConfig = $listFilterContext['searchConfig'];
|
|
$customFieldChipMeta = $addressBookService->buildCustomFieldChipMeta($customFieldFilterDefinitions);
|
|
$filterChipMeta = [
|
|
'search' => [
|
|
'label' => t('Search'),
|
|
'type' => 'text',
|
|
],
|
|
'tenants' => [
|
|
'label' => t('Tenants'),
|
|
'type' => 'multi_csv',
|
|
'options' => gridOptionMapFromItems((array) $tenantItems),
|
|
],
|
|
'departments' => [
|
|
'label' => t('Departments'),
|
|
'type' => 'multi_csv',
|
|
'options' => gridOptionMapFromItems((array) $departments),
|
|
],
|
|
'roles' => [
|
|
'label' => t('Roles'),
|
|
'type' => 'multi_csv',
|
|
'options' => gridOptionMapFromItems((array) $roles),
|
|
],
|
|
'custom_fields' => $customFieldChipMeta,
|
|
];
|
|
|
|
$csrfKey = Session::$csrfSessionKey;
|
|
$csrfToken = $session[$csrfKey] ?? '';
|
|
|
|
Buffer::set('title', t('Address book'));
|
|
$breadcrumbs = [
|
|
['label' => t('Home'), 'path' => 'admin'],
|
|
['label' => t('Address book')],
|
|
];
|
|
Buffer::set('grid_lang', json_encode(gridLang(), JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES));
|
|
Buffer::set('style_groups', json_encode(['address-book-index']));
|
|
Buffer::set(
|
|
'grid_csrf',
|
|
json_encode(['key' => $csrfKey, 'token' => $csrfToken], JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES)
|
|
);
|