Spaces:
Running
Running
File size: 12,327 Bytes
d15ea6f 99af53b d15ea6f 99af53b d15ea6f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
---
export interface Props { tableOfContentAutoCollapse?: boolean }
const { tableOfContentAutoCollapse = false } = Astro.props as Props;
---
<nav class="table-of-contents" aria-label="Table of Contents" data-auto-collapse={tableOfContentAutoCollapse ? '1' : '0'}>
<div class="title">Table of Contents</div>
<div id="article-toc-placeholder"></div>
</nav>
<details class="table-of-contents-mobile">
<summary>Table of Contents</summary>
<div id="article-toc-mobile-placeholder"></div>
</details>
<script is:inline>
// Build TOC from article headings (h2/h3/h4) and render into the sticky aside
const buildTOC = () => {
const holder = document.getElementById('article-toc-placeholder');
const holderMobile = document.getElementById('article-toc-mobile-placeholder');
// Always rebuild TOC to avoid stale entries
if (holder) holder.innerHTML = '';
if (holderMobile) holderMobile.innerHTML = '';
const articleRoot = document.querySelector('section.content-grid main');
if (!articleRoot) return;
const headings = articleRoot.querySelectorAll('h2, h3, h4');
if (!headings.length) return;
// Inclure tous les titres H2/H3/H4 sans filtrer "Table of contents"
const headingsArr = Array.from(headings);
if (!headingsArr.length) return;
// Ensure unique ids for headings (deduplicate duplicates)
const usedIds = new Set();
const slugify = (s) => String(s || '')
.toLowerCase()
.trim()
.replace(/\s+/g, '_')
.replace(/[^a-z0-9_\-]/g, '');
headingsArr.forEach((h) => {
let id = (h.id || '').trim();
if (!id) {
const base = slugify(h.textContent || '');
id = base || 'section';
}
let candidate = id;
let n = 2;
while (usedIds.has(candidate)) {
candidate = `${id}-${n++}`;
}
if (h.id !== candidate) h.id = candidate;
usedIds.add(candidate);
});
const nav = document.createElement('nav');
let ulStack = [document.createElement('ul')];
nav.appendChild(ulStack[0]);
const levelOf = (tag) => tag === 'H2' ? 2 : tag === 'H3' ? 3 : 4;
let prev = 2;
let h2Count = -1;
const h2List = headingsArr.filter(h => h.tagName === 'H2');
headingsArr.forEach((h) => {
const lvl = levelOf(h.tagName);
// adjust depth
while (lvl > prev) { const ul = document.createElement('ul'); ulStack[ulStack.length-1].lastElementChild?.appendChild(ul); ulStack.push(ul); prev++; }
while (lvl < prev) { ulStack.pop(); prev--; }
const li = document.createElement('li');
const a = document.createElement('a');
a.href = '#' + h.id; a.textContent = h.textContent; a.target = '_self';
li.appendChild(a);
if (lvl === 2) {
h2Count += 1;
li.setAttribute('data-h2-idx', String(h2Count));
}
ulStack[ulStack.length-1].appendChild(li);
});
if (holder) holder.appendChild(nav);
const navClone = nav.cloneNode(true);
if (holderMobile) holderMobile.appendChild(navClone);
// active link on scroll
const links = [
...(holder ? holder.querySelectorAll('a') : []),
...(holderMobile ? holderMobile.querySelectorAll('a') : [])
];
// Read breakpoint from CSS var and set autoCollapse only on desktop (disabled on mobile)
const getCollapsePx = () => {
const root = document.documentElement;
const raw = getComputedStyle(root).getPropertyValue('--bp-content-collapse').trim();
return raw || '1100px';
};
const mq = window.matchMedia(`(max-width: ${getCollapsePx()})`);
const attrEnabled = (document.querySelector('.table-of-contents')?.getAttribute('data-auto-collapse') === '1');
let autoCollapse = attrEnabled && !mq.matches;
// Inject styles for collapsible & animation
const ensureStyles = () => {
if (document.getElementById('toc-collapse-style')) return;
const style = document.createElement('style');
style.id = 'toc-collapse-style';
style.textContent = `
.table-of-contents nav.table-of-contents-collapsible > ul > li > ul,
details.table-of-contents-mobile nav.table-of-contents-collapsible > ul > li > ul { overflow: hidden; transition: height 200ms ease; }
.table-of-contents nav.table-of-contents-collapsible > ul > li.collapsed > ul,
details.table-of-contents-mobile nav.table-of-contents-collapsible > ul > li.collapsed > ul { display: block; }
`;
document.head.appendChild(style);
};
ensureStyles();
const getTopLevelItems = () => {
const sideNav = holder ? holder.querySelector('nav') : null;
const mobileNav = holderMobile ? holderMobile.querySelector('nav') : null;
const q = (navEl) => navEl ? Array.from(navEl.querySelectorAll(':scope > ul > li[data-h2-idx]')) : [];
return { sideNav, mobileNav, sideTop: q(sideNav), mobileTop: q(mobileNav) };
};
const setNavCollapsible = () => {
const sideNav = holder ? holder.querySelector('nav') : null;
const mobileNav = holderMobile ? holderMobile.querySelector('nav') : null;
if (sideNav) sideNav.classList.add('table-of-contents-collapsible');
if (mobileNav) mobileNav.classList.add('table-of-contents-collapsible');
};
const measure = (el) => {
if (!el) return 0;
// Temporarily set height to auto to measure scrollHeight reliably
const prev = el.style.height;
el.style.height = 'auto';
const h = el.scrollHeight;
el.style.height = prev || '';
return h;
};
const animateTo = (el, target) => {
if (!el) return;
const current = parseFloat(getComputedStyle(el).height) || 0;
if (Math.abs(current - target) < 1) {
el.style.height = target ? 'auto' : '0px';
return;
}
el.style.height = current + 'px';
// Force reflow
void el.offsetHeight;
el.style.height = target + 'px';
const onEnd = (e) => {
if (e.propertyName !== 'height') return;
el.removeEventListener('transitionend', onEnd);
if (target > 0) el.style.height = 'auto';
};
el.addEventListener('transitionend', onEnd);
};
let prevActiveIdx = -1;
const setCollapsedState = (activeIdx) => {
if (!autoCollapse) return;
if (activeIdx == null || activeIdx < 0) activeIdx = 0;
const { sideTop, mobileTop } = getTopLevelItems();
const update = (items) => items.forEach((li) => {
const idx = Number(li.getAttribute('data-h2-idx') || '-1');
const sub = li.querySelector(':scope > ul');
if (!sub) return;
if (idx === activeIdx) {
li.classList.remove('collapsed');
const target = measure(sub);
animateTo(sub, target);
} else {
li.classList.add('collapsed');
animateTo(sub, 0);
}
});
update(sideTop);
update(mobileTop);
setNavCollapsible();
prevActiveIdx = activeIdx;
};
// When switching between desktop/mobile, refresh autoCollapse and expand all on mobile
const expandAll = () => {
const { sideTop, mobileTop } = getTopLevelItems();
const expand = (items) => items.forEach((li) => {
li.classList.remove('collapsed');
const sub = li.querySelector(':scope > ul');
if (sub) sub.style.height = 'auto';
});
expand(sideTop);
expand(mobileTop);
};
const onMqChange = () => {
autoCollapse = attrEnabled && !mq.matches;
if (!autoCollapse) {
expandAll();
} else {
setCollapsedState(prevActiveIdx);
}
};
if (mq.addEventListener) mq.addEventListener('change', onMqChange);
else if (mq.addListener) mq.addListener(onMqChange);
const onScroll = () => {
// active link highlight
let activeIdx = -1;
for (let i = headingsArr.length - 1; i >= 0; i--) {
const top = headingsArr[i].getBoundingClientRect().top;
if (top - 60 <= 0) {
links.forEach(l => l.classList.remove('active'));
const id = '#' + headingsArr[i].id;
const actives = Array.from(links).filter(l => l.getAttribute('href') === id);
actives.forEach(a => a.classList.add('active'));
if (headingsArr[i].tagName === 'H2') {
activeIdx = h2List.indexOf(headingsArr[i]);
} else {
for (let j = i; j >= 0; j--) {
if (headingsArr[j].tagName === 'H2') { activeIdx = h2List.indexOf(headingsArr[j]); break; }
}
}
break;
}
}
if (activeIdx !== prevActiveIdx) setCollapsedState(activeIdx);
};
// If auto-collapse, collapse immediately (expand first section) before any scroll
if (autoCollapse) setCollapsedState(0);
window.addEventListener('scroll', onScroll);
// Initialize state
onScroll();
// Close mobile accordion when a link inside it is clicked
if (holderMobile) {
const details = holderMobile.closest('details');
holderMobile.addEventListener('click', (ev) => {
const target = ev.target;
const anchor = target && 'closest' in target ? target.closest('a') : null;
if (anchor instanceof HTMLAnchorElement && details && details.open) {
details.open = false;
}
});
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', buildTOC, { once: true });
} else { buildTOC(); }
</script>
<style is:global>
/* Sticky aside */
.table-of-contents {
position: sticky;
top: 32px;
margin-top: 12px;
}
.table-of-contents nav {
border-left: 1px solid var(--border-color);
padding-left: 16px;
font-size: 13px;
}
.table-of-contents .title {
font-weight: 600;
font-size: 14px;
margin-bottom: 8px;
}
/* Look & feel */
.table-of-contents nav ul {
margin: 0 0 6px;
padding-left: 1em;
}
.table-of-contents nav li {
list-style: none;
margin: .25em 0;
}
.table-of-contents nav a,
.table-of-contents nav a:link,
.table-of-contents nav a:visited {
color: var(--text-color);
text-decoration: none;
border-bottom: none;
}
.table-of-contents nav > ul > li > a {
font-weight: 700;
}
.table-of-contents nav a:hover {
text-decoration: underline solid var(--muted-color);
}
.table-of-contents nav a.active {
text-decoration: underline;
}
/* Mobile accordion */
.table-of-contents-mobile {
display: none;
margin: 8px 0 16px;
}
.table-of-contents-mobile > summary {
cursor: pointer;
list-style: none;
padding: var(--spacing-3) var(--spacing-4);
border: 1px solid var(--border-color);
border-radius: 8px;
color: var(--text-color);
font-weight: 600;
position: relative;
}
.table-of-contents-mobile[open] > summary {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
/* Disclosure arrow for mobile summary */
.table-of-contents-mobile > summary::after {
content: '';
position: absolute;
right: var(--spacing-4);
top: 50%;
width: 8px;
height: 8px;
border-right: 2px solid currentColor;
border-bottom: 2px solid currentColor;
transform: translateY(-70%) rotate(45deg);
transition: transform 150ms ease;
opacity: .7;
}
.table-of-contents-mobile[open] > summary::after {
transform: translateY(-30%) rotate(-135deg);
}
.table-of-contents-mobile nav {
border-left: none;
padding: 10px 12px;
font-size: 14px;
border: 1px solid var(--border-color);
border-top: none;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.table-of-contents-mobile nav ul {
margin: 0 0 6px;
padding-left: 1em;
}
.table-of-contents-mobile nav li {
list-style: none;
margin: .25em 0;
}
.table-of-contents-mobile nav a,
.table-of-contents-mobile nav a:link,
.table-of-contents-mobile nav a:visited {
color: var(--text-color);
text-decoration: none;
border-bottom: none;
}
.table-of-contents-mobile nav > ul > li > a {
font-weight: 700;
}
.table-of-contents-mobile nav a:hover {
text-decoration: underline solid var(--muted-color);
}
.table-of-contents-mobile nav a.active {
text-decoration: underline;
}
</style>
|