@docubook/create 2.4.0 → 2.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/package.json +1 -1
  2. package/src/dist/app/docs/[[...slug]]/page.tsx +55 -59
  3. package/src/dist/app/docs/layout.tsx +11 -4
  4. package/src/dist/app/layout.tsx +10 -7
  5. package/src/dist/app/page.tsx +1 -1
  6. package/src/dist/components/{context-popover.tsx → ContextPopover.tsx} +3 -2
  7. package/src/dist/components/DocSearch.tsx +16 -15
  8. package/src/dist/components/{docs-breadcrumb.tsx → DocsBreadcrumb.tsx} +1 -1
  9. package/src/dist/components/DocsNavbar.tsx +46 -0
  10. package/src/dist/components/DocsSidebar.tsx +207 -0
  11. package/src/dist/components/Github.tsx +26 -0
  12. package/src/dist/components/{scroll-to-top.tsx → ScrollToTop.tsx} +16 -9
  13. package/src/dist/components/SearchBox.tsx +39 -0
  14. package/src/dist/components/SearchContext.tsx +47 -0
  15. package/src/dist/components/SearchModal.tsx +77 -79
  16. package/src/dist/components/SearchTrigger.tsx +20 -15
  17. package/src/dist/components/Sponsor.tsx +2 -2
  18. package/src/dist/components/{theme-toggle.tsx → ThemeToggle.tsx} +10 -10
  19. package/src/dist/components/TocObserver.tsx +197 -0
  20. package/src/dist/components/footer.tsx +16 -12
  21. package/src/dist/components/leftbar.tsx +45 -73
  22. package/src/dist/components/markdown/AccordionContext.tsx +21 -0
  23. package/src/dist/components/markdown/AccordionGroupMdx.tsx +11 -22
  24. package/src/dist/components/markdown/AccordionMdx.tsx +58 -59
  25. package/src/dist/components/markdown/PreMdx.tsx +2 -2
  26. package/src/dist/components/navbar.tsx +130 -53
  27. package/src/dist/components/toc.tsx +16 -14
  28. package/src/dist/components/typography.tsx +1 -1
  29. package/src/dist/components/ui/icon-cloud.tsx +353 -0
  30. package/src/dist/components/ui/scroll-area.tsx +2 -2
  31. package/src/dist/components/ui/sheet.tsx +4 -4
  32. package/src/dist/components/ui/toggle.tsx +3 -3
  33. package/src/dist/docs/components/accordion-group.mdx +13 -12
  34. package/src/dist/docs/components/accordion.mdx +11 -14
  35. package/src/dist/docu.json +3 -0
  36. package/src/dist/hooks/useActiveSection.ts +45 -33
  37. package/src/dist/hooks/useScrollPosition.ts +16 -14
  38. package/src/dist/lib/search/algolia.ts +5 -0
  39. package/src/dist/lib/search/built-in.ts +43 -0
  40. package/src/dist/lib/search/config.ts +7 -0
  41. package/src/dist/lib/toc.ts +1 -0
  42. package/src/dist/lib/utils.ts +13 -54
  43. package/src/dist/package.json +1 -1
  44. package/src/dist/styles/algolia.css +12 -35
  45. package/src/dist/styles/{syntax.css → override.css} +82 -39
  46. package/src/dist/tailwind.config.ts +11 -110
  47. package/src/dist/components/AccordionContext.ts +0 -4
  48. package/src/dist/components/GithubStart.tsx +0 -44
  49. package/src/dist/components/mob-toc.tsx +0 -134
  50. package/src/dist/components/search.tsx +0 -55
  51. package/src/dist/components/toc-observer.tsx +0 -254
  52. /package/src/dist/components/{docs-menu.tsx → DocsMenu.tsx} +0 -0
  53. /package/src/dist/components/{edit-on-github.tsx → EditWithGithub.tsx} +0 -0
  54. /package/src/dist/components/{theme-provider.tsx → ThemeProvider.tsx} +0 -0
@@ -1,254 +0,0 @@
1
- "use client";
2
-
3
- import clsx from "clsx";
4
- import Link from "next/link";
5
- import { useState, useRef, useEffect, useCallback } from "react";
6
- import { motion } from "framer-motion";
7
- import { ScrollToTop } from "./scroll-to-top";
8
- import { TocItem } from "@/lib/toc";
9
-
10
- interface TocObserverProps {
11
- data: TocItem[];
12
- activeId?: string | null;
13
- onActiveIdChange?: (id: string | null) => void;
14
- }
15
-
16
- export default function TocObserver({
17
- data,
18
- activeId: externalActiveId,
19
- onActiveIdChange
20
- }: TocObserverProps) {
21
- const [internalActiveId, setInternalActiveId] = useState<string | null>(null);
22
- const observer = useRef<IntersectionObserver | null>(null);
23
- const [clickedId, setClickedId] = useState<string | null>(null);
24
- const itemRefs = useRef<Map<string, HTMLAnchorElement>>(new Map());
25
-
26
- // Use external activeId if provided, otherwise use internal state
27
- const activeId = externalActiveId !== undefined ? externalActiveId : internalActiveId;
28
- const setActiveId = onActiveIdChange || setInternalActiveId;
29
-
30
- // Handle intersection observer for auto-highlighting
31
- useEffect(() => {
32
- const handleIntersect = (entries: IntersectionObserverEntry[]) => {
33
- const visibleEntries = entries.filter(entry => entry.isIntersecting);
34
-
35
- // Find the most recently scrolled-into-view element
36
- const mostVisibleEntry = visibleEntries.reduce((prev, current) => {
37
- // Prefer the entry that's more visible or higher on the page
38
- const prevRatio = prev?.intersectionRatio || 0;
39
- const currentRatio = current.intersectionRatio;
40
-
41
- if (currentRatio > prevRatio) return current;
42
- if (currentRatio === prevRatio &&
43
- current.boundingClientRect.top < prev.boundingClientRect.top) {
44
- return current;
45
- }
46
- return prev;
47
- }, visibleEntries[0]);
48
-
49
- if (mostVisibleEntry && !clickedId) {
50
- const newActiveId = mostVisibleEntry.target.id;
51
- if (newActiveId !== activeId) {
52
- setActiveId(newActiveId);
53
- }
54
- }
55
- };
56
-
57
- observer.current = new IntersectionObserver(handleIntersect, {
58
- root: null,
59
- rootMargin: "-20% 0px -70% 0px", // Adjusted margins for better section detection
60
- threshold: [0, 0.1, 0.5, 0.9, 1], // Multiple thresholds for better accuracy
61
- });
62
-
63
- const elements = data.map((item) =>
64
- document.getElementById(item.href.slice(1))
65
- );
66
-
67
- elements.forEach((el) => {
68
- if (el && observer.current) {
69
- observer.current.observe(el);
70
- }
71
- });
72
-
73
- // Set initial active ID if none is set
74
- if (!activeId && elements[0]) {
75
- setActiveId(elements[0].id);
76
- }
77
-
78
- return () => {
79
- if (observer.current) {
80
- elements.forEach((el) => {
81
- if (el) {
82
- observer.current!.unobserve(el);
83
- }
84
- });
85
- }
86
- };
87
- }, [data, clickedId, activeId, setActiveId]);
88
-
89
- const handleLinkClick = useCallback((id: string) => {
90
- setClickedId(id);
91
- setActiveId(id);
92
-
93
- // Reset the clicked state after a delay to allow for smooth scrolling
94
- const timer = setTimeout(() => {
95
- setClickedId(null);
96
- }, 1000);
97
-
98
- return () => clearTimeout(timer);
99
- }, [setActiveId]);
100
-
101
- // Function to check if an item has children
102
- const hasChildren = (currentId: string, currentLevel: number) => {
103
- const currentIndex = data.findIndex(item => item.href.slice(1) === currentId);
104
- if (currentIndex === -1 || currentIndex === data.length - 1) return false;
105
-
106
- const nextItem = data[currentIndex + 1];
107
- return nextItem.level > currentLevel;
108
- };
109
-
110
- // Calculate scroll progress for the active section
111
- const [scrollProgress, setScrollProgress] = useState(0);
112
-
113
- useEffect(() => {
114
- const handleScroll = () => {
115
- if (!activeId) return;
116
-
117
- const activeElement = document.getElementById(activeId);
118
- if (!activeElement) return;
119
-
120
- const rect = activeElement.getBoundingClientRect();
121
- const windowHeight = window.innerHeight;
122
- const elementTop = rect.top;
123
- const elementHeight = rect.height;
124
-
125
- // Calculate how much of the element is visible
126
- let progress = 0;
127
- if (elementTop < windowHeight) {
128
- progress = Math.min(1, (windowHeight - elementTop) / (windowHeight + elementHeight));
129
- }
130
-
131
- setScrollProgress(progress);
132
- };
133
-
134
- window.addEventListener('scroll', handleScroll, { passive: true });
135
- return () => window.removeEventListener('scroll', handleScroll);
136
- }, [activeId]);
137
-
138
-
139
- return (
140
- <div className="relative">
141
- <div className="relative text-sm text-foreground/70 hover:text-foreground transition-colors">
142
- <div className="flex flex-col gap-0">
143
- {data.map(({ href, level, text }, index) => {
144
- const id = href.slice(1);
145
- const isActive = activeId === id;
146
- const indent = level > 1 ? (level - 1) * 20 : 0;
147
- // Prefix with underscore to indicate intentionally unused
148
- const _isParent = hasChildren(id, level);
149
- const _isLastInLevel = index === data.length - 1 || data[index + 1].level <= level;
150
-
151
- return (
152
- <div key={href} className="relative">
153
- {/* Simple L-shaped connector */}
154
- {level > 1 && (
155
- <div
156
- className={clsx("absolute top-0 h-full w-6", {
157
- "left-[6px]": indent === 20, // Level 2
158
- "left-[22px]": indent === 40, // Level 3
159
- "left-[38px]": indent === 60, // Level 4
160
- })}
161
- >
162
- {/* Vertical line */}
163
- <div className={clsx(
164
- "absolute left-0 top-0 h-full w-px",
165
- isActive ? "bg-primary/20 dark:bg-primary/30" : "bg-border/50 dark:bg-border/50"
166
- )}>
167
- {isActive && (
168
- <motion.div
169
- className="absolute left-0 top-0 w-full h-full bg-primary origin-top"
170
- initial={{ scaleY: 0 }}
171
- animate={{ scaleY: scrollProgress }}
172
- transition={{ duration: 0.3 }}
173
- />
174
- )}
175
- </div>
176
-
177
- {/* Horizontal line */}
178
- <div className={clsx(
179
- "absolute left-0 top-1/2 h-px w-6",
180
- isActive ? "bg-primary/20 dark:bg-primary/30" : "bg-border/50 dark:bg-border/50"
181
- )}>
182
- {isActive && (
183
- <motion.div
184
- className="absolute left-0 top-0 h-full w-full bg-primary dark:bg-accent origin-left"
185
- initial={{ scaleX: 0 }}
186
- animate={{ scaleX: scrollProgress }}
187
- transition={{ duration: 0.3, delay: 0.1 }}
188
- />
189
- )}
190
- </div>
191
- </div>
192
- )}
193
-
194
- <Link
195
- href={href}
196
- onClick={() => handleLinkClick(id)}
197
- className={clsx(
198
- "relative flex items-center py-2 transition-colors",
199
- {
200
- "text-primary dark:text-primary font-medium": isActive,
201
- "text-muted-foreground hover:text-foreground dark:hover:text-foreground/90": !isActive,
202
- }
203
- )}
204
- style={{
205
- paddingLeft: `${indent}px`,
206
- marginLeft: level > 1 ? '12px' : '0',
207
- }}
208
- ref={(el) => {
209
- const map = itemRefs.current;
210
- if (el) {
211
- map.set(id, el);
212
- } else {
213
- map.delete(id);
214
- }
215
- }}
216
- >
217
- {/* Circle indicator */}
218
- <div className="relative w-4 h-4 flex items-center justify-center flex-shrink-0">
219
- <div className={clsx(
220
- "w-1.5 h-1.5 rounded-full transition-all duration-300 relative z-10",
221
- {
222
- "bg-primary scale-100 dark:bg-primary/90": isActive,
223
- "bg-muted-foreground/30 dark:bg-muted-foreground/30 scale-75 group-hover:scale-100 group-hover:bg-primary/50 dark:group-hover:bg-primary/50": !isActive,
224
- }
225
- )}>
226
- {isActive && (
227
- <motion.div
228
- className="absolute inset-0 rounded-full bg-primary/20 dark:bg-primary/30"
229
- initial={{ scale: 1 }}
230
- animate={{ scale: 1.8 }}
231
- transition={{
232
- duration: 2,
233
- repeat: Infinity,
234
- repeatType: "reverse"
235
- }}
236
- />
237
- )}
238
- </div>
239
- </div>
240
-
241
- <span className="truncate text-sm">
242
- {text}
243
- </span>
244
- </Link>
245
- </div>
246
- );
247
- })}
248
- </div>
249
- </div>
250
- {/* Add scroll to top link at the bottom of TOC */}
251
- <ScrollToTop className="mt-6" />
252
- </div>
253
- );
254
- }