-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.js
More file actions
225 lines (196 loc) · 7.43 KB
/
Copy pathindex.js
File metadata and controls
225 lines (196 loc) · 7.43 KB
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
import React, { useEffect, useRef, useState, useCallback } from 'react';
import ErrorBoundary from '@docusaurus/ErrorBoundary';
import { ErrorBoundaryErrorMessageFallback } from '@docusaurus/theme-common';
import {
MermaidContainerClassName,
useMermaidRenderResult,
} from '@docusaurus/theme-mermaid/client';
import panzoom from '@panzoom/panzoom';
import styles from './styles.module.css';
const PADDING = 60;
function MermaidRenderResult({ renderResult }) {
const ref = useRef(null);
const [modalOpen, setModalOpen] = useState(false);
const modalRef = useRef(null);
const instanceRef = useRef(null);
useEffect(() => {
const div = ref.current;
if (div) renderResult.bindFunctions?.(div);
}, [renderResult]);
const handleClick = useCallback(() => {
setModalOpen(true);
}, []);
// ── Modal: panzoom init + auto-fit ──────────────────
useEffect(() => {
if (!modalOpen || !modalRef.current) return;
const body = modalRef.current;
const svg = body.querySelector('svg');
if (!svg) return;
// Clean up previous instance
if (instanceRef.current) {
instanceRef.current.destroy();
}
// 1. Create panzoom instance
const instance = panzoom(svg, {
maxScale: 12,
minScale: 0.05,
step: 0.2,
contain: false,
pinchAndPan: true,
// Let SVG keep its native size initially; we'll zoom below
cursor: 'grab',
});
instanceRef.current = instance;
// 2. Fit to screen – retry with exponential backoff
let fitAttempts = 0;
const maxAttempts = 8;
const fitToScreen = () => {
const svg = body.querySelector('svg');
if (!svg) return;
const w = body.clientWidth;
const h = body.clientHeight;
if (!w || !h) return;
// SVG native dimensions
let svgW = svg.viewBox?.baseVal?.width;
let svgH = svg.viewBox?.baseVal?.height;
// Fallback to width/height attributes
if (!svgW) svgW = svg.width?.baseVal?.value;
if (!svgH) svgH = svg.height?.baseVal?.value;
// Fallback to computed bounding rect
if (!svgW || !svgH) {
const rect = svg.getBoundingClientRect();
svgW = rect.width;
svgH = rect.height;
}
// If still zero and we have retries left, try again
if ((!svgW || !svgH) && fitAttempts < maxAttempts) {
fitAttempts++;
setTimeout(fitToScreen, 100 * fitAttempts);
return;
}
if (!svgW || !svgH) return;
const availW = w - PADDING * 2;
const availH = h - PADDING * 2;
const scale = Math.min(availW / svgW, availH / svgH, 3);
if (scale > 0) {
instance.zoom(scale, { animate: false });
instance.pan(
(w - svgW * scale) / 2,
(h - svgH * scale) / 2,
{ animate: false }
);
}
};
// Kick off fit with first attempt
const fitTimer = setTimeout(fitToScreen, 100);
// 3. Wheel zoom on the body
const handleWheel = (e) => {
e.preventDefault();
const svgEl = body.querySelector('svg');
if (!svgEl) return;
instance.zoomWithWheel(e, { step: 0.3, minScale: 0.05, maxScale: 12 });
};
body.addEventListener('wheel', handleWheel, { passive: false });
// 4. Resize listener
window.addEventListener('resize', fitToScreen);
// 5. Keyboard shortcuts
const handleKeyDown = (e) => {
if (e.key === 'Escape') { setModalOpen(false); return; }
if (e.key === '+' || e.key === '=') { e.preventDefault(); instance.zoomIn(); }
if (e.key === '-') { e.preventDefault(); instance.zoomOut(); }
if (e.key === '0') { e.preventDefault(); fitToScreen(); }
};
window.addEventListener('keydown', handleKeyDown);
return () => {
clearTimeout(fitTimer);
body.removeEventListener('wheel', handleWheel);
window.removeEventListener('resize', fitToScreen);
window.removeEventListener('keydown', handleKeyDown);
if (instanceRef.current) {
instanceRef.current.destroy();
instanceRef.current = null;
}
};
}, [modalOpen]);
return (
<>
{/* ── Inline diagram ─────────────────────────── */}
<div
ref={ref}
className={`${MermaidContainerClassName} ${styles.container}`}
dangerouslySetInnerHTML={{ __html: renderResult.svg }}
onClick={handleClick}
role="button"
tabIndex={0}
onKeyDown={(e) => { if (e.key === 'Enter') handleClick(); }}
title="Click to zoom"
/>
{/* ── Fullscreen modal ─────────────────────────── */}
{modalOpen && (
<div
className={styles.overlay}
onClick={() => setModalOpen(false)}
role="presentation"
>
{/* Toolbar */}
<div className={styles.toolbar}>
<button className={styles.toolBtn}
onClick={(e) => { e.stopPropagation(); instanceRef.current?.zoomIn(); }}
title="Zoom in (+)">+</button>
<button className={styles.toolBtn}
onClick={(e) => { e.stopPropagation(); instanceRef.current?.zoomOut(); }}
title="Zoom out (-)">−</button>
<button className={styles.toolBtn}
onClick={(e) => {
e.stopPropagation();
const body = modalRef.current;
if (!body || !instanceRef.current) return;
const svg = body.querySelector('svg');
if (!svg) return;
const w = body.clientWidth, h = body.clientHeight;
let svgW = svg.viewBox?.baseVal?.width || svg.width?.baseVal?.value || svg.getBoundingClientRect().width;
let svgH = svg.viewBox?.baseVal?.height || svg.height?.baseVal?.value || svg.getBoundingClientRect().height;
if (!svgW || !svgH) return;
const availW = w - PADDING * 2, availH = h - PADDING * 2;
const scale = Math.min(availW / svgW, availH / svgH, 3);
if (scale > 0) {
instanceRef.current.zoom(scale, { animate: true });
instanceRef.current.pan((w - svgW * scale) / 2, (h - svgH * scale) / 2, { animate: true });
}
}}
title="Fit to screen (0)">⊡</button>
<button className={styles.toolBtn}
onClick={(e) => { e.stopPropagation(); setModalOpen(false); }}
title="Close (Esc)">✕</button>
<span className={styles.toolHint}>Scroll zoom · Drag pan · 0 fit</span>
</div>
{/* Body – scrollable fallback so content is never hidden */}
<div
ref={modalRef}
className={styles.modalBody}
onClick={(e) => e.stopPropagation()}
role="presentation"
>
<div
className={styles.svgWrapper}
dangerouslySetInnerHTML={{ __html: renderResult.svg }}
/>
</div>
</div>
)}
</>
);
}
function MermaidRenderer({ value }) {
const renderResult = useMermaidRenderResult({ text: value });
if (renderResult === null) return null;
return <MermaidRenderResult renderResult={renderResult} />;
}
export default function Mermaid(props) {
return (
<ErrorBoundary
fallback={(params) => <ErrorBoundaryErrorMessageFallback {...params} />}>
<MermaidRenderer {...props} />
</ErrorBoundary>
);
}