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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
// GitBook-compatible JavaScript
(function() {
'use strict';
// TOC toggle functionality
var tocToggle = document.querySelector('.toc-toggle');
var book = document.querySelector('.book');
var pageToc = document.querySelector('.page-toc');
function isMobileToc() {
return window.innerWidth <= 768;
}
if (tocToggle && book && pageToc) {
// Restore TOC state from localStorage (desktop only)
if (!isMobileToc()) {
var tocHidden = localStorage.getItem('guidebook-toc-hidden') === 'true';
if (tocHidden) {
book.classList.add('toc-hidden');
}
}
tocToggle.addEventListener('click', function() {
if (!isMobileToc()) {
book.classList.toggle('toc-hidden');
var isHidden = book.classList.contains('toc-hidden');
localStorage.setItem('guidebook-toc-hidden', isHidden);
}
});
// Handle resize
window.addEventListener('resize', function() {
if (isMobileToc()) {
// On mobile, TOC is always hidden via CSS
} else {
// On desktop, restore saved state
var tocHidden = localStorage.getItem('guidebook-toc-hidden') === 'true';
if (tocHidden) {
book.classList.add('toc-hidden');
} else {
book.classList.remove('toc-hidden');
}
}
});
}
// TOC scroll spy - highlight current section
function setupTocScrollSpy() {
var tocLinks = document.querySelectorAll('.page-toc .toc-list a');
if (tocLinks.length === 0) return;
var headings = [];
tocLinks.forEach(function(link) {
var href = link.getAttribute('href');
if (href && href.startsWith('#')) {
var id = href.substring(1);
try {
id = decodeURIComponent(id);
} catch (e) {}
var heading = document.getElementById(id);
if (heading) {
headings.push({ element: heading, link: link });
}
}
});
if (headings.length === 0) return;
function updateActiveLink() {
var scrollTop = window.scrollY + 100; // Offset for fixed header
var activeIndex = 0;
for (var i = 0; i < headings.length; i++) {
if (headings[i].element.offsetTop <= scrollTop) {
activeIndex = i;
}
}
tocLinks.forEach(function(link) {
link.parentElement.classList.remove('active');
});
headings[activeIndex].link.parentElement.classList.add('active');
}
window.addEventListener('scroll', updateActiveLink);
updateActiveLink(); // Initial call
}
setupTocScrollSpy();
// TOC link click handler - prevent base href issue
function setupTocLinks() {
var pageToc = document.querySelector('.page-toc');
if (!pageToc) return;
pageToc.addEventListener('click', function(e) {
var link = e.target.closest('a');
if (!link) return;
var href = link.getAttribute('href');
if (!href || !href.startsWith('#')) return;
e.preventDefault();
var id = href.substring(1);
try {
id = decodeURIComponent(id);
} catch (ex) {}
var target = document.getElementById(id);
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
history.pushState(null, '', href);
}
});
}
setupTocLinks();
// Back to top button
var backToTop = document.querySelector('.back-to-top');
if (backToTop) {
window.addEventListener('scroll', function() {
if (window.scrollY > 300) {
backToTop.classList.add('visible');
} else {
backToTop.classList.remove('visible');
}
});
backToTop.addEventListener('click', function(e) {
e.preventDefault();
window.scrollTo({ top: 0, behavior: 'smooth' });
});
}
// Sidebar toggle
var sidebarToggle = document.querySelector('.sidebar-toggle');
var book = document.querySelector('.book');
var bookSummary = document.querySelector('.book-summary');
function isMobile() {
return window.innerWidth <= 768;
}
var wasMobile = isMobile();
if (sidebarToggle && book && bookSummary) {
// Restore sidebar state from localStorage (desktop only)
if (!isMobile()) {
var sidebarHidden = localStorage.getItem('guidebook-sidebar-hidden') === 'true';
if (sidebarHidden) {
book.classList.add('sidebar-hidden');
}
}
sidebarToggle.addEventListener('click', function() {
if (isMobile()) {
// Mobile: toggle .open on sidebar
bookSummary.classList.toggle('open');
} else {
// Desktop: toggle .sidebar-hidden on book
book.classList.add('sidebar-toggling');
book.classList.toggle('sidebar-hidden');
var isHidden = book.classList.contains('sidebar-hidden');
localStorage.setItem('guidebook-sidebar-hidden', isHidden);
setTimeout(function() {
book.classList.remove('sidebar-toggling');
}, 350);
}
});
// Close sidebar when clicking outside on mobile
document.addEventListener('click', function(e) {
if (isMobile() && bookSummary.classList.contains('open')) {
if (!bookSummary.contains(e.target) && !sidebarToggle.contains(e.target)) {
bookSummary.classList.remove('open');
}
}
});
// Handle resize: switch between mobile and desktop modes
window.addEventListener('resize', function() {
var nowMobile = isMobile();
if (wasMobile !== nowMobile) {
if (nowMobile) {
// Switched to mobile: reset desktop state, close sidebar
book.classList.remove('sidebar-hidden');
book.classList.remove('sidebar-toggling');
bookSummary.classList.remove('open');
} else {
// Switched to desktop: reset mobile state, restore desktop state
bookSummary.classList.remove('open');
var sidebarHidden = localStorage.getItem('guidebook-sidebar-hidden') === 'true';
if (sidebarHidden) {
book.classList.add('sidebar-hidden');
} else {
book.classList.remove('sidebar-hidden');
}
}
wasMobile = nowMobile;
}
});
}
// Smooth scroll for anchor links
document.querySelectorAll('a[href*="#"]').forEach(function(anchor) {
anchor.addEventListener('click', function(e) {
var href = this.getAttribute('href');
var hashIndex = href.indexOf('#');
if (hashIndex === -1) return;
var hash = href.substring(hashIndex + 1);
// Decode URL-encoded anchor (e.g., %E3%83%87%E3%82%B6%E3%82%A4%E3%83%B3 -> デザイン)
try {
hash = decodeURIComponent(hash);
} catch (ex) {
// If decoding fails, use as-is
}
var target = document.getElementById(hash);
if (target) {
e.preventDefault();
target.scrollIntoView({ behavior: 'smooth' });
// Update URL hash without triggering navigation
history.pushState(null, '', '#' + encodeURIComponent(hash));
}
});
});
// SPA-like navigation for sidebar links
// Get base URL for resolving relative links (e.g., /jp/)
function getBaseUrl() {
var base = document.querySelector('base');
if (base && base.href) {
return base.href;
}
return window.location.href.replace(/[^/]*$/, '');
}
// Prevent rapid navigation
var isNavigating = false;
// Convert hrefs to absolute URLs and set target="_blank" for external pages
function normalizeLinks(container) {
if (!container) return;
container.querySelectorAll('a[href]').forEach(function(link) {
var href = link.getAttribute('href');
if (!href || href.startsWith('#')) return;
// Convert relative href to absolute URL
var absoluteUrl;
if (href.startsWith('http')) {
absoluteUrl = href;
} else if (href.startsWith('/')) {
absoluteUrl = new URL(href, window.location.origin).href;
} else {
absoluteUrl = new URL(href, getBaseUrl()).href;
}
link.setAttribute('href', absoluteUrl);
// Determine if link should open in new tab
var isSameOrigin = absoluteUrl.startsWith(window.location.origin);
if (!isSameOrigin) {
// Different domain - always open in new tab
link.setAttribute('target', '_blank');
} else if (!absoluteUrl.endsWith('.html') && !absoluteUrl.includes('.html#')) {
// Same domain but not .html - open in new tab (e.g., Swagger UI at /api-docs/)
link.setAttribute('target', '_blank');
}
// Same domain + .html - no target="_blank", SPA navigation will handle
});
}
// Convert sidebar hrefs to absolute URLs on initial load
// This ensures right-click > "Open in new tab" works correctly after SPA navigation
// Also set target="_blank" for external pages (non-.html links like Swagger UI)
function normalizeSidebarHrefs() {
normalizeLinks(document.querySelector('.book-summary'));
}
// Normalize links in main content area
// Called on page load and after SPA navigation
function normalizeContentLinks() {
normalizeLinks(document.querySelector('.markdown-section'));
}
function setupSpaNavigation() {
var sidebar = document.querySelector('.book-summary');
if (!sidebar) return;
// Normalize hrefs to absolute URLs for correct browser-native behavior
normalizeSidebarHrefs();
sidebar.addEventListener('click', function(e) {
var link = e.target.closest('a');
if (!link) return;
// Note: expandable items with children are handled by collapsible.js
// - Arrow click: collapsible.js calls stopImmediatePropagation(), so this handler won't run
// - Text click: collapsible.js returns without stopping, so this handler runs for SPA navigation
var href = link.getAttribute('href');
if (!href || href.startsWith('#')) return;
// Allow modifier key clicks to use browser default behavior (open in new tab)
if (e.ctrlKey || e.metaKey || e.shiftKey || e.altKey) {
return;
}
// Skip external links and links that open in new tab
if (href.startsWith('http') && !href.startsWith(window.location.origin)) {
return;
}
if (link.getAttribute('target') === '_blank') {
return;
}
e.preventDefault();
if (isNavigating) return;
// For search results, pass null to trigger sidebar scroll to active item
// Also hide search results after navigation
var isSearchResult = link.classList.contains('search-result-item');
if (isSearchResult) {
var searchResults = document.querySelector('.search-results');
if (searchResults) {
searchResults.classList.remove('visible');
}
}
loadPage(href, isSearchResult ? null : link);
});
}
// Setup page navigation (prev/next buttons)
function setupPageNavigation() {
document.querySelectorAll('.page-nav').forEach(function(nav) {
nav.addEventListener('click', function(e) {
// Allow modifier key clicks to use browser default behavior (open in new tab)
if (e.ctrlKey || e.metaKey || e.shiftKey || e.altKey) {
return;
}
e.preventDefault();
if (isNavigating) return;
var href = this.getAttribute('href');
if (!href) return;
loadPage(href, null);
});
});
}
function loadPage(url, clickedLink) {
if (isNavigating) return;
isNavigating = true;
// Add loading state
document.body.classList.add('loading');
var absoluteUrl = new URL(url, getBaseUrl()).href;
// Extract hash from URL if present
var hashIndex = url.indexOf('#');
var hash = hashIndex !== -1 ? url.substring(hashIndex + 1) : null;
fetch(absoluteUrl)
.then(function(response) {
if (!response.ok) throw new Error('Page not found');
return response.text();
})
.then(function(html) {
var parser = new DOMParser();
var doc = parser.parseFromString(html, 'text/html');
// Update content
var newContent = doc.querySelector('.markdown-section');
var currentContent = document.querySelector('.markdown-section');
// If the new page doesn't have .markdown-section (e.g., Swagger UI, external page),
// open in a new tab so user can return to the documentation
if (!newContent) {
isNavigating = false;
document.body.classList.remove('loading');
window.open(absoluteUrl, '_blank');
return;
}
if (currentContent) {
currentContent.innerHTML = newContent.innerHTML;
}
// Update title
var newTitle = doc.querySelector('title');
if (newTitle) {
document.title = newTitle.textContent;
}
// Update active state in sidebar (don't replace HTML to preserve expanded state)
document.querySelectorAll('.book-summary .chapter.active').forEach(function(ch) {
ch.classList.remove('active');
});
// Find and mark new active item
// Use absoluteUrl for matching since sidebar links are normalized to absolute URLs
var newActiveHref = absoluteUrl.split('#')[0];
document.querySelectorAll('.book-summary .chapter a').forEach(function(link) {
var href = link.getAttribute('href');
if (href === newActiveHref) {
var chapter = link.closest('.chapter');
if (chapter) {
chapter.classList.add('active');
// Expand parent chapters
var parent = chapter.parentElement;
while (parent) {
if (parent.classList && parent.classList.contains('chapter')) {
parent.classList.add('expanded');
}
parent = parent.parentElement;
}
}
}
});
// Update URL (use absolute URL to avoid relative path issues with SPA navigation)
history.pushState(null, '', absoluteUrl);
// Scroll to hash anchor or top
if (hash) {
try {
var decodedHash = decodeURIComponent(hash);
var target = document.getElementById(decodedHash);
if (target) {
setTimeout(function() {
target.scrollIntoView({ behavior: 'auto' });
}, 50);
} else {
window.scrollTo(0, 0);
}
} catch (ex) {
window.scrollTo(0, 0);
}
} else {
window.scrollTo(0, 0);
}
// Re-init mermaid if present
if (typeof mermaid !== 'undefined') {
mermaid.init(undefined, '.markdown-section .mermaid');
}
// Re-apply syntax highlighting
if (typeof hljs !== 'undefined') {
document.querySelectorAll('.markdown-section pre code').forEach(function(block) {
hljs.highlightElement(block);
});
}
// Re-apply font settings (theme styles for tables/headings)
if (window.guidebookFontsettings && window.guidebookFontsettings.reapply) {
window.guidebookFontsettings.reapply();
}
// Update TOC from new page
var newToc = doc.querySelector('.page-toc');
var currentToc = document.querySelector('.page-toc');
var newTocToggle = doc.querySelector('.toc-toggle');
var currentTocToggle = document.querySelector('.toc-toggle');
if (currentToc) currentToc.remove();
if (currentTocToggle) currentTocToggle.remove();
if (newToc) {
var bookBody = document.querySelector('.book-body');
if (bookBody) {
var tocClone = newToc.cloneNode(true);
bookBody.insertBefore(tocClone, bookBody.querySelector('.body-inner'));
if (newTocToggle) {
var toggleClone = newTocToggle.cloneNode(true);
bookBody.insertBefore(toggleClone, tocClone);
// Re-setup toggle handler
toggleClone.addEventListener('click', function() {
if (window.innerWidth > 768) {
document.querySelector('.book').classList.toggle('toc-hidden');
var isHidden = document.querySelector('.book').classList.contains('toc-hidden');
localStorage.setItem('guidebook-toc-hidden', isHidden);
}
});
}
// Re-setup scroll spy and TOC links
setupTocScrollSpy();
setupTocLinks();
}
}
// Update prev/next navigation buttons
var newPrev = doc.querySelector('.page-nav.prev');
var newNext = doc.querySelector('.page-nav.next');
var currentPrev = document.querySelector('.page-nav.prev');
var currentNext = document.querySelector('.page-nav.next');
if (currentPrev) currentPrev.remove();
if (currentNext) currentNext.remove();
var bodyInner = document.querySelector('.body-inner');
if (bodyInner) {
if (newPrev) {
var prevClone = newPrev.cloneNode(true);
bodyInner.insertBefore(prevClone, bodyInner.firstChild);
}
if (newNext) {
var nextClone = newNext.cloneNode(true);
bodyInner.insertBefore(nextClone, bodyInner.querySelector('.page-wrapper'));
}
// Re-setup page navigation for new buttons
setupPageNavigation();
}
// Normalize links in updated content (set target="_blank" for external pages)
normalizeContentLinks();
// Scroll sidebar to show active item only for page navigation (prev/next buttons)
// Not for sidebar clicks - user already knows where they clicked
if (!clickedLink) {
setTimeout(function() {
scrollSidebarToActive();
}, 100);
}
// Reset navigation state
isNavigating = false;
document.body.classList.remove('loading');
})
.catch(function(err) {
console.error('Navigation error:', err);
isNavigating = false;
document.body.classList.remove('loading');
window.location.href = url;
});
}
// Handle browser back/forward
window.addEventListener('popstate', function() {
loadPage(location.pathname + location.hash, null);
});
setupSpaNavigation();
setupPageNavigation();
normalizeContentLinks();
// Handle initial page load with hash anchor
function scrollToHashOnLoad() {
if (!window.location.hash) return;
var hash = window.location.hash.substring(1);
// Decode URL-encoded anchor
try {
hash = decodeURIComponent(hash);
} catch (ex) {
// If decoding fails, use as-is
}
var target = document.getElementById(hash);
if (target) {
// Use setTimeout to ensure layout is complete after all resources load
setTimeout(function() {
target.scrollIntoView({ behavior: 'auto' });
}, 100);
}
}
// Use 'load' event to ensure all resources (images, CSS) are loaded
if (document.readyState === 'complete') {
scrollToHashOnLoad();
} else {
window.addEventListener('load', scrollToHashOnLoad);
}
// Initialize syntax highlighting on page load
if (typeof hljs !== 'undefined') {
hljs.highlightAll();
}
// Scroll sidebar to show active item centered
function scrollSidebarToActive() {
var sidebar = document.querySelector('.book-summary');
var activeItem = document.querySelector('.book-summary .chapter.active');
if (!sidebar || !activeItem) return;
// Get the active item's link element for more precise positioning
var activeLink = activeItem.querySelector('a') || activeItem;
// Calculate position to center the active item in the sidebar
var sidebarRect = sidebar.getBoundingClientRect();
var activeRect = activeLink.getBoundingClientRect();
// Calculate the offset needed to center the active item
var sidebarScrollTop = sidebar.scrollTop;
var activeOffsetTop = activeRect.top - sidebarRect.top + sidebarScrollTop;
var sidebarHeight = sidebar.clientHeight;
var activeHeight = activeRect.height;
// Scroll so that active item is centered (minus half sidebar height, plus half item height)
var targetScrollTop = activeOffsetTop - (sidebarHeight / 2) + (activeHeight / 2);
// Clamp to valid scroll range
var maxScroll = sidebar.scrollHeight - sidebarHeight;
targetScrollTop = Math.max(0, Math.min(targetScrollTop, maxScroll));
sidebar.scrollTop = targetScrollTop;
}
// Scroll sidebar on initial page load
if (document.readyState === 'complete') {
scrollSidebarToActive();
} else {
window.addEventListener('load', scrollSidebarToActive);
}
// Expose for use after SPA navigation
window.scrollSidebarToActive = scrollSidebarToActive;
})();