File size: 9,956 Bytes
391c43e | 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 | 'use client';
import React, { useState, useEffect, useRef, useCallback, Suspense } from 'react';
import { useSearchParams } from 'next/navigation';
import { MarkdownRenderer } from '@/components/markdown-renderer';
import { TableOfContents } from '@/components/table-of-contents';
import { useTableOfContents } from '@/lib/hooks/use-table-of-contents';
import { AlertCircle } from 'lucide-react';
import { Spinner } from '@/components/ui/spinner';
import { DOCS_ITEMS } from '@/lib/constants/docs';
function DocsViewContent() {
const searchParams = useSearchParams();
const docId = searchParams.get('doc') || 'overview';
const selectedDoc = DOCS_ITEMS.find(d => d.id === docId) || DOCS_ITEMS[0];
const [content, setContent] = useState<string>('');
const [loading, setLoading] = useState(false);
const [error, setError] = useState<string | null>(null);
const [activeId, setActiveId] = useState<string>('');
const [visibleIds, setVisibleIds] = useState<string[]>([]);
const isManualScrolling = useRef(false);
const scrollDebounceTimer = useRef<NodeJS.Timeout | null>(null);
const tocItems = useTableOfContents(content);
useEffect(() => {
async function loadDoc() {
setLoading(true);
setError(null);
try {
const response = await fetch(`/api/docs/${selectedDoc.file}`);
if (!response.ok) {
throw new Error(`Failed to load document: ${response.statusText}`);
}
const text = await response.text();
setContent(text);
// Scroll to hash if present in URL
setTimeout(() => {
if (window.location.hash) {
const element = document.getElementById(window.location.hash.slice(1));
if (element) {
element.scrollIntoView({ behavior: 'smooth' });
}
} else {
// Scroll to top if no hash
const contentArea = document.querySelector('.docs-content-area');
if (contentArea) {
contentArea.scrollTop = 0;
}
}
}, 100);
} catch (err) {
console.error('Failed to load doc:', err);
setError(err instanceof Error ? err.message : 'Failed to load document');
setContent('');
} finally {
setLoading(false);
}
}
loadDoc();
}, [selectedDoc]);
// Handle TOC item clicks
const handleTocClick = useCallback((id: string) => {
// Set active immediately when user clicks
setActiveId(id);
// Immediately update visible IDs to include only the clicked item
// This prevents stale blue highlights during the scroll
setVisibleIds([id]);
// Disable auto-tracking during manual scroll
isManualScrolling.current = true;
// Re-enable auto-tracking after scroll animation completes
// and then trigger an immediate update
setTimeout(() => {
isManualScrolling.current = false;
// Trigger immediate recalculation of visible items after scroll completes
const scrollContainer = document.querySelector('.docs-content-area');
if (!scrollContainer) return;
const headings = document.querySelectorAll('.docs-content-area [data-heading-index]');
if (headings.length === 0) return;
const containerTop = scrollContainer.getBoundingClientRect().top;
const visible: string[] = [];
headings.forEach((heading) => {
const rect = heading.getBoundingClientRect();
const viewportTop = containerTop;
const viewportBottom = viewportTop + scrollContainer.clientHeight;
if (rect.top >= viewportTop && rect.bottom <= viewportBottom) {
const index = heading.getAttribute('data-heading-index');
if (index) {
visible.push(index);
}
}
});
setVisibleIds(visible);
}, 1000); // Smooth scroll takes ~500-800ms, add buffer
}, []);
// Scroll-based active section tracking with debouncing
useEffect(() => {
if (tocItems.length === 0) return;
const scrollContainer = document.querySelector('.docs-content-area');
if (!scrollContainer) return;
const updateActiveSection = () => {
// Skip if user is manually scrolling from TOC click
if (isManualScrolling.current) {
return;
}
// Select headings by data-heading-index attribute for unique identification
const headings = document.querySelectorAll('.docs-content-area [data-heading-index]');
if (headings.length === 0) return;
const containerTop = scrollContainer.getBoundingClientRect().top;
// Find the heading that's currently at the top of the viewport
let activeHeading = headings[0];
let minDistance = Infinity;
headings.forEach((heading) => {
const rect = heading.getBoundingClientRect();
const distance = Math.abs(rect.top - containerTop - 100); // 100px offset
if (rect.top - containerTop < 200 && distance < minDistance) {
minDistance = distance;
activeHeading = heading;
}
});
// Collect IDs of all headings in viewport
const visible: string[] = [];
headings.forEach((heading) => {
const rect = heading.getBoundingClientRect();
const viewportTop = containerTop;
const viewportBottom = viewportTop + scrollContainer.clientHeight;
// Check if heading is in viewport
if (rect.top >= viewportTop && rect.bottom <= viewportBottom) {
const index = heading.getAttribute('data-heading-index');
if (index) {
visible.push(index);
}
}
});
// Use data-heading-index as the unique identifier
const headingIndex = activeHeading?.getAttribute('data-heading-index');
if (headingIndex) {
setActiveId(headingIndex);
}
// Update visible IDs for TOC range highlighting
setVisibleIds(visible);
};
// Debounced scroll handler
const handleScroll = () => {
// Clear existing timer
if (scrollDebounceTimer.current) {
clearTimeout(scrollDebounceTimer.current);
}
// Set new timer - only update after scrolling stops for 50ms
scrollDebounceTimer.current = setTimeout(updateActiveSection, 50);
};
// Initial update - delay to ensure markdown heading indices are set
// Increase delay to 500ms to ensure MarkdownRenderer's useEffect completes
const timeout = setTimeout(() => {
updateActiveSection();
}, 500);
// Update on scroll with debouncing
scrollContainer.addEventListener('scroll', handleScroll);
return () => {
clearTimeout(timeout);
if (scrollDebounceTimer.current) {
clearTimeout(scrollDebounceTimer.current);
}
scrollContainer.removeEventListener('scroll', handleScroll);
};
}, [tocItems, content]);
const showToc = tocItems.length >= 3;
return (
<div className="h-full flex flex-col">
{/* Two-column layout: Content + TOC */}
<div className={`flex-1 overflow-hidden ${showToc ? 'lg:grid lg:grid-cols-[1fr_280px]' : ''}`}>
{/* Main Content Area - scrollable */}
<div className="h-full overflow-y-auto docs-content-area bg-background">
<div
className="p-6 sm:p-8 max-w-4xl mx-auto"
onClick={(e) => {
// Handle anchor link clicks
const target = e.target as HTMLElement;
if (target.tagName === 'A') {
const href = target.getAttribute('href');
if (href?.startsWith('#')) {
e.preventDefault();
const element = document.getElementById(href.slice(1));
if (element) {
element.scrollIntoView({ behavior: 'smooth' });
window.history.pushState(null, '', href);
}
}
}
}}
>
{loading && (
<div className="flex items-center justify-center h-screen">
<div className="text-center">
<Spinner size={48} className="mx-auto text-primary" />
<p className="mt-4 text-muted-foreground">Loading documentation...</p>
</div>
</div>
)}
{error && (
<div className="flex items-center gap-3 p-4 bg-destructive/10 border border-destructive/20 rounded-lg text-destructive">
<AlertCircle className="h-5 w-5 flex-shrink-0" />
<div>
<p className="font-semibold">Error loading document</p>
<p className="text-sm">{error}</p>
</div>
</div>
)}
{!loading && !error && content && (
<>
{/* Document Title */}
<div className="mb-6 pb-4 border-b">
<div className="flex items-center gap-3 mb-2">
<selectedDoc.icon className="h-8 w-8 text-primary" />
<h1 className="text-3xl font-bold">{selectedDoc.title}</h1>
</div>
</div>
{/* Markdown Content */}
<MarkdownRenderer content={content} />
</>
)}
</div>
</div>
{/* Table of Contents Sidebar - independent scrollable column */}
{showToc && (
<div className="hidden lg:block h-full overflow-y-auto border-l border-border bg-muted/30">
<div className="p-6 sticky top-0">
<TableOfContents items={tocItems} activeId={activeId} visibleIds={visibleIds} onItemClick={handleTocClick} />
</div>
</div>
)}
</div>
</div>
);
}
// Wrapper component with Suspense boundary for Next.js 15
export function DocsView() {
return (
<Suspense fallback={<div className="flex items-center justify-center h-full">Loading documentation...</div>}>
<DocsViewContent />
</Suspense>
);
}
|