143cc458c1
Q.DEFER.002 sub-B closure: manual Pa11y audit-pass via Playwright MCP login + axe-core CDN inject on 16 auth-required views. Found ~13 unique violation patterns, 12 fixed, 3 deferred to Q.DEFER.004. ROOT CAUSE found: AdminLayout `<v-navigation-drawer color="secondary" theme="dark">` resolved to Vuetify default-dark `secondary=#54b6b2` (Teal mid) instead of liderraForest `#012019` теало-нуар. Switching to direct hex preserves design intent + restores white-text contrast across all 8 admin views (~50 nodes color-contrast violations cleared). Patterns fixed: 1. AdminLayout sidebar palette (8 admin views): - color="secondary" → color="#012019" (root cause) - .brand-sub red #b94837 → #e06155 (3.41 → 5.08) - .nav-count gray #7a8c87 → #8a9c95 (4.26 → 5.34) - <v-list nav> + role="navigation" + aria-label (aria-required-children fix: <v-list role=list> had [role=link] children — undefined для list) 2. DashboardBalance .runway-bar — role="img" (aria-prohibited-attr fix) 3. DashboardKpiRow .delta-up — #2e8b57 → #1b6e3b (4.27 → 6.25) 4. TransactionsTable .tx-amount-up — #2e8b57 → #1b6e3b (same fix) 5. RemindersList .empty-hint — #9a9690 → #6b6356 (2.98 → 5.74; +liderra-muted alignment) 6. KanbanView .kanban-board — tabindex="0" role="region" aria-label (scrollable-region-focusable fix) 7. ProjectCard: - .v-progress-linear + :aria-label="Прогресс дневной нормы: N%" - icon menu :aria-label="Меню действий проекта «...»" - bulk-select .card-check input :aria-label="Выбрать проект «...»" 8. useStatusPill in_progress #3F7C95 → #2A5A6E (4.07 → 6.11); useStatusPill.spec.ts sync 9. ProjectsView toolbar select-all input aria-label 10. AdminTenants impersonate v-btn aria-label 11. Global app.css: `.v-messages, .v-field-label { --v-medium-emphasis-opacity: 0.7; }` Vuetify default ~0.52 → rendered #7a7a7a/#767471 fails 4.20-4.29:1; 0.7 → rendered ≈#595959 → 7.9:1+ passes WCAG AA. Re-verified post-fix via axe-core on all affected views: all clean except DEV-only `.dev-index-num` chip (tree-shaked в prod, not a real violation). Vitest verified post-fix: 79 files / 614 passed / 3 skipped / 0 failed (baseline preserved). 3 patterns deferred to Q.DEFER.004: - DealsTable VDataTable show-select bulk-checkboxes (6 nodes) — Vuetify slot rewrite needed - AdminSupplierPrices 9 form inputs — v-text-field/v-switch label props - Vuetify v-tooltip eager-mount aria-tooltip-name — library-level cosmetic Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
209 lines
6.8 KiB
Vue
209 lines
6.8 KiB
Vue
<script setup lang="ts">
|
|
/**
|
|
* Layout админки SaaS — отдельный sidebar с пометкой ADMIN, 4 nav-пункта,
|
|
* без user-chip как в обычной AppLayout.
|
|
*
|
|
* Источник дизайна: liderra_v8_handoff/concepts/v8_admin.html.
|
|
* Логика: SSO через Yandex 360 + break-glass `super_admin` (по ТЗ §22 / OPEN-И-13).
|
|
*
|
|
* Не входит в этот коммит:
|
|
* - Auth-guard на /admin/* — должен проверять `super_admin` role + 2FA.
|
|
* - Impersonation banner (когда admin вошёл «как клиент» — Ю-1: 15 мин / 5 попыток).
|
|
* - Audit-log записей для всех action'ов admin (по schema v8.7 §10
|
|
* `saas_admin_audit_log`).
|
|
*/
|
|
import { useAuthStore } from '../stores/auth';
|
|
import { computed } from 'vue';
|
|
import { RouterView, useRoute, useRouter } from 'vue-router';
|
|
import DevIndexBadge from '../components/DevIndexBadge.vue';
|
|
|
|
interface NavItem {
|
|
title: string;
|
|
icon: string;
|
|
to: string;
|
|
count?: number;
|
|
}
|
|
|
|
const navItems: NavItem[] = [
|
|
{ title: 'Тенанты', icon: 'mdi-account-group-outline', to: '/admin/tenants', count: 142 },
|
|
{ title: 'Биллинг', icon: 'mdi-credit-card-outline', to: '/admin/billing' },
|
|
{ title: 'Инциденты', icon: 'mdi-alert-outline', to: '/admin/incidents', count: 3 },
|
|
{ title: 'Impersonation', icon: 'mdi-account-switch', to: '/admin/impersonation' },
|
|
{ title: 'Система', icon: 'mdi-cog-outline', to: '/admin/system' },
|
|
];
|
|
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const auth = useAuthStore();
|
|
|
|
const userInitials = computed(() => {
|
|
const u = auth.user;
|
|
if (!u) return 'АО';
|
|
const first = u.first_name?.[0] ?? '';
|
|
const last = u.last_name?.[0] ?? '';
|
|
const initials = (first + last).toUpperCase();
|
|
return initials || u.email.slice(0, 2).toUpperCase();
|
|
});
|
|
|
|
const userShortName = computed(() => {
|
|
const u = auth.user;
|
|
if (!u) return 'Админ Оператор';
|
|
if (u.first_name && u.last_name) {
|
|
return `${u.first_name} ${u.last_name[0]}.`;
|
|
}
|
|
return u.first_name || u.email;
|
|
});
|
|
|
|
async function handleLogout() {
|
|
await auth.logout();
|
|
await router.push('/login');
|
|
}
|
|
|
|
const currentPageTitle = computed(() => {
|
|
return navItems.find((i) => route.path.startsWith(i.to))?.title ?? 'Админка';
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<v-app>
|
|
<v-navigation-drawer color="#012019" theme="dark" :width="240" class="admin-drawer">
|
|
<div class="brand-block">
|
|
<span class="brand-mark" aria-hidden="true">
|
|
<svg viewBox="0 0 48 48" width="22" height="22">
|
|
<path
|
|
d="M16 14 L16 34 L32 34"
|
|
stroke="#012019"
|
|
stroke-width="4.5"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
fill="none"
|
|
/>
|
|
<circle cx="32" cy="34" r="3.5" fill="#0F6E56" />
|
|
</svg>
|
|
</span>
|
|
<span class="brand-text">Лидерра<span class="brand-dot">.</span></span>
|
|
</div>
|
|
<div class="brand-sub">ADMIN</div>
|
|
|
|
<v-list nav density="comfortable" class="app-nav" role="navigation" aria-label="Админ навигация">
|
|
<v-list-item
|
|
v-for="item in navItems"
|
|
:key="item.to"
|
|
:to="item.to"
|
|
:prepend-icon="item.icon"
|
|
:active="route.path.startsWith(item.to)"
|
|
rounded="lg"
|
|
class="nav-item"
|
|
>
|
|
<v-list-item-title>{{ item.title }}</v-list-item-title>
|
|
<template v-if="item.count !== undefined" #append>
|
|
<span class="nav-count">{{ item.count }}</span>
|
|
</template>
|
|
</v-list-item>
|
|
</v-list>
|
|
</v-navigation-drawer>
|
|
|
|
<v-app-bar :elevation="0" color="surface" :height="56" class="admin-topbar">
|
|
<div class="crumb">
|
|
<span class="text-medium-emphasis">Админка</span>
|
|
<v-icon size="14" class="mx-1">mdi-chevron-right</v-icon>
|
|
<strong>{{ currentPageTitle }}</strong>
|
|
</div>
|
|
<v-spacer />
|
|
<v-menu offset="8">
|
|
<template #activator="{ props }">
|
|
<v-btn v-bind="props" variant="text" size="small" class="user-chip" aria-label="Меню админа">
|
|
<v-avatar size="28" color="error" class="mr-2">
|
|
<span class="text-caption">{{ userInitials }}</span>
|
|
</v-avatar>
|
|
<span class="text-body-2">{{ userShortName }}</span>
|
|
</v-btn>
|
|
</template>
|
|
<v-list density="compact" min-width="200">
|
|
<v-list-item v-if="auth.user" :title="auth.user.email" disabled />
|
|
<v-divider v-if="auth.user" />
|
|
<v-list-item :to="'/dashboard'" prepend-icon="mdi-arrow-left" title="Выйти из админки" />
|
|
<v-list-item prepend-icon="mdi-logout" title="Выйти" @click="handleLogout" />
|
|
</v-list>
|
|
</v-menu>
|
|
</v-app-bar>
|
|
|
|
<v-main class="admin-main">
|
|
<RouterView />
|
|
</v-main>
|
|
<DevIndexBadge :index="route.meta.devIndex" :label="route.meta.devLabel" />
|
|
</v-app>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.admin-drawer {
|
|
border-right: 1px solid rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.brand-block {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 18px 20px 4px;
|
|
}
|
|
.brand-mark {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 5px;
|
|
background: #fff;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.brand-text {
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
.brand-dot {
|
|
color: #32c8a9;
|
|
}
|
|
|
|
.brand-sub {
|
|
font-family: 'JetBrains Mono', ui-monospace, monospace;
|
|
font-size: 10px;
|
|
letter-spacing: 0.16em;
|
|
color: #e06155;
|
|
padding: 0 20px 14px;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.nav-count {
|
|
font-family: 'JetBrains Mono', ui-monospace, monospace;
|
|
font-feature-settings: 'tnum';
|
|
font-size: 11px;
|
|
color: #8a9c95;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
padding: 2px 7px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.admin-topbar {
|
|
border-bottom: 1px solid #d9d5cd !important;
|
|
}
|
|
|
|
.crumb {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
font-size: 14px;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.user-chip {
|
|
text-transform: none;
|
|
}
|
|
|
|
.admin-main {
|
|
background: #f6f3ec;
|
|
}
|
|
</style>
|