المكوّنات · شريط جانبي بمجموعات
شريط جانبي بمجموعات
عناوين مجموعات تفصل الأقسام بلا طيّ
13 تصاميم من هذه العائلة
<div class="sb sbg">
<nav aria-label="التنقّل الرئيسي">
<div class="sb-head"><b data-ar="عيادات النور" data-en="Al-Noor Clinics">عيادات النور</b></div>
<ul>
<li class="gh" id="gh1" data-ar="العيادة" data-en="Clinic">العيادة</li>
<li role="group" aria-labelledby="gh1"><ul>
<li><button class="item" data-nav aria-current="page">
<span class="ic" aria-hidden="true">◔</span>
<span class="lbl" data-ar="المواعيد" data-en="Appointments">المواعيد</span>
</button></li>
<li><button class="item" data-nav>
<span class="ic" aria-hidden="true">◕</span>
<span class="lbl" data-ar="المرضى" data-en="Patients">المرضى</span>
</button></li>
<li><button class="item" data-nav>
<span class="ic" aria-hidden="true">◓</span>
<span class="lbl" data-ar="الأطبّاء" data-en="Doctors">الأطبّاء</span>
</button></li>
</ul></li>
<li class="gh" id="gh2" data-ar="الطبّي" data-en="Medical">الطبّي</li>
<li role="group" aria-labelledby="gh2"><ul>
<li><button class="item" data-nav>
<span class="ic" aria-hidden="true">◒</span>
<span class="lbl" data-ar="الوصفات" data-en="Prescriptions">الوصفات</span>
</button></li>
<li><button class="item" data-nav>
<span class="ic" aria-hidden="true">◑</span>
<span class="lbl" data-ar="المختبر" data-en="Laboratory">المختبر</span>
</button></li>
</ul></li>
<li class="sep" role="separator"></li>
<li><button class="item" data-nav>
<span class="ic" aria-hidden="true">◐</span>
<span class="lbl" data-ar="التأمين" data-en="Insurance">التأمين</span>
</button></li>
</ul>
</nav>
<div class="body">
<h4 data-ar="عيادة طبية" data-en="Medical clinic">عيادة طبية</h4>
<p data-ar="اضغط أي بند لتراه ينشط. التنقّل بالكيبورد يعمل بالأسهم." data-en="Click any item to activate it. Arrow keys navigate.">اضغط أي بند لتراه ينشط. التنقّل بالكيبورد يعمل بالأسهم.</p>
</div>
</div>
/* pt-scoped */
/* sidebar-grouped — عيادة طبية */
.sbg{display:flex;height:100%;width:100%;font-size:10px;
color:var(--pt-text-secondary);overflow:hidden;position:relative}
.sbg nav{flex:none;display:flex;flex-direction:column;min-width:0}
.sbg ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;
overflow-y:auto;flex:1}
.sbg li{margin:0}
.sbg .item{display:flex;align-items:center;width:100%;border:0;background:transparent;
color:inherit;font:inherit;font-size:10px;cursor:pointer;text-align:start;
white-space:nowrap;overflow:hidden;position:relative}
.sbg .ic{flex:none;text-align:center;line-height:1}
.sbg .lbl{flex:1;overflow:hidden;text-overflow:ellipsis}
.sbg .body{flex:1;padding:12px;display:flex;flex-direction:column;gap:7px;min-width:0}
.sbg .body h4{margin:0;font-size:11px;color:var(--pt-text-primary)}
.sbg .body p{margin:0;font-size:9px;color:var(--pt-text-muted);line-height:1.8}
.sbg .item:focus-visible{outline:2px solid var(--pt-focus-ring);outline-offset:-2px}
/* شخصية: تحريرية بلا انحناء — خطّ جانبي للنشط، كثافة عالية */
.sbg{border:1px solid var(--pt-border-subtle);border-radius:0;background:var(--pt-surface)}
.sbg nav{width:195px;background:transparent;
border-inline-end:1px solid var(--pt-border-default)}
.sbg .sb-head{padding:10px 12px 8px;border-bottom:1px solid var(--pt-border-default)}
.sbg .sb-head b{font-size:10px;color:var(--pt-text-primary);letter-spacing:.03em}
.sbg ul{padding:6px 0;gap:0}
.sbg li ul{padding:0;gap:0}
.sbg .item{gap:8px;padding:6px 12px;border-radius:0;
border-inline-start:2px solid transparent}
.sbg .ic{width:13px;font-size:10px;opacity:.8}
.sbg .item:hover{background:var(--pt-surface-hover);color:var(--pt-text-primary)}
.sbg .item[aria-current="page"]{color:var(--pt-accent);
border-inline-start-color:var(--pt-accent);
background:color-mix(in srgb,var(--pt-accent) 6%,transparent)}
.sbg .gh{padding:9px 12px 4px;font-size:8px;font-weight:700;
color:var(--pt-text-muted);letter-spacing:.08em}
.sbg .sep{height:1px;margin:6px 12px;background:var(--pt-border-default)}
/* يعمل داخل إطار معزول — لا يعتمد على شيء خارجه */
/* pt-remount — يعاد التركيب عند تبديل اللغة */
(function () {
var host = document.querySelector('.sbg');
if (!host) return;
var snapshot = host.innerHTML;
var timers = [];
var ac = null;
/* الجسم كما كتبه المولِّد. يستقبل بدائل مظلَّلة لـ root وdocument
والمؤقّتات، فينظّف نفسه دون أن يعرف أنه قابل لإعادة التركيب. */
function run(root, document, setTimeout, setInterval) {
var nav = root.querySelector('nav ul');
if (nav) {
var items = [].slice.call(nav.querySelectorAll('[data-nav]'));
items.forEach(function (b) {
b.tabIndex = b.getAttribute('aria-current') === 'page' ? 0 : -1;
b.addEventListener('click', function () { activate(b); });
});
function activate(b) {
items.forEach(function (x) {
var on = x === b;
if (on) x.setAttribute('aria-current', 'page'); else x.removeAttribute('aria-current');
x.tabIndex = on ? 0 : -1;
});
b.focus();
}
nav.addEventListener('keydown', function (e) {
var i = items.indexOf(document.activeElement);
if (i === -1) return;
var j = null;
if (e.key === 'ArrowDown') j = (i + 1) % items.length;
else if (e.key === 'ArrowUp') j = (i - 1 + items.length) % items.length;
else if (e.key === 'Home') j = 0;
else if (e.key === 'End') j = items.length - 1;
if (j === null) return;
e.preventDefault();
items[j].focus();
});
}
}
function mount() {
ac = new AbortController();
var real = window.document;
/* وسيط يمرّر كل شيء إلى المستند الحقيقي، ويعلّق كل مستمع بإشارة
تُقطع عند إعادة التركيب — فلا يبقى مستمع من نسخة ماتت. */
var doc = new Proxy(real, {
get: function (t, k) {
if (k === 'addEventListener') {
return function (type, fn, opts) {
var o = (opts && typeof opts === 'object') ? Object.assign({}, opts)
: { capture: !!opts };
o.signal = ac.signal;
return t.addEventListener(type, fn, o);
};
}
var v = t[k];
return typeof v === 'function' ? v.bind(t) : v;
}
});
function track(fn) {
return function (f, ms) { var id = fn(f, ms); timers.push(id); return id; };
}
run(host, doc, track(window.setTimeout.bind(window)),
track(window.setInterval.bind(window)));
}
function unmount() {
if (ac) ac.abort();
// المعرّفان يتشاركان فضاءً واحدًا في المتصفّح، فالإلغاء المزدوج آمن
timers.forEach(function (id) { window.clearTimeout(id); window.clearInterval(id); });
timers = [];
host.innerHTML = snapshot;
}
mount();
addEventListener('pt-lang', function () { unmount(); mount(); });
})();
# Grouped Sidebar
**Role:** You are an Arabic-first UI designer and front-end engineer. Read the whole
specification before writing a single line, then follow it literally. If two requirements
conflict, favour usability over visual effect.
**Goal:** Grouped Sidebar — Group headings separate sections without collapsing
**Why this component matters:** When every item must stay visible, headings give structure without hiding anything. Use aria-labelledby so a screen reader announces which group each item belongs to.
**Direction:** Genuine RTL — not a mirrored Latin layout. Use logical properties
(`margin-inline-start`, `padding-inline`, `inset-inline-start`, `text-align: start`),
never physical ones (`margin-left`, `left`). The layout must flip with `dir` on its own,
with no duplicated rules.
**Typography:** Cairo for Arabic, IBM Plex Sans for Latin. Arabic line-height must be
`0.18` higher than the Latin equivalent — dots, hamzas and maddas need more vertical room.
Arabic font-size runs `1.06×` the Latin size at the same optical weight.
**Numerals:** Western digits in both languages (`1,234.50`). Only the currency changes:
`ر.س` **after** the number in Arabic, `$` **before** it in English. Jordanian dinar
uses **three** decimal places, not two.
**Colors:** Dark mode — background `#0D142B` · surfaces `#211F54` · borders `#545C91` · text `#918FC2`.
Accent `#ADA9E8` must never exceed 8% of the screen area.
**Language:** Bilingual — every string carries both Arabic and English, and the layout
flips with `dir` automatically.
**States:** `default` · `hover` · `focus` · `active` · `disabled` · `loading` · `error`.
Do not design the resting state alone.
**Accessibility:** Contrast ratio at least `4.5:1`, complete keyboard navigation,
visible focus rings, and honour `prefers-reduced-motion`.
**Output:** Clean HTML and CSS in two separate files. No frameworks, no libraries,
no external dependencies.