@bendyline/squisq-editor-react 2.0.1 → 2.1.0
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.
- package/README.md +10 -2
- package/dist/index.d.ts +505 -15
- package/dist/index.js +6035 -2283
- package/dist/index.js.map +1 -1
- package/dist/styles/index.css +870 -40
- package/package.json +6 -5
- package/src/EditorContext.tsx +27 -0
- package/src/EditorShell.tsx +24 -0
- package/src/PreviewControls.tsx +20 -5
- package/src/PreviewPanel.tsx +5 -1
- package/src/RawEditor.tsx +12 -0
- package/src/RecorderEntry.tsx +3 -0
- package/src/Toolbar.tsx +315 -17
- package/src/WysiwygEditor.tsx +25 -11
- package/src/__tests__/buildPreviewDocContent.test.ts +17 -0
- package/src/__tests__/editorShellProps.test.tsx +65 -0
- package/src/__tests__/findMode.test.tsx +104 -0
- package/src/__tests__/findModel.test.ts +55 -0
- package/src/__tests__/markdownCodeFence.test.ts +45 -0
- package/src/__tests__/mediaReferences.test.ts +15 -0
- package/src/__tests__/previewControls.test.tsx +31 -0
- package/src/__tests__/tiptapBridge.test.ts +9 -0
- package/src/__tests__/toolbarSelectionConversion.test.tsx +26 -0
- package/src/__tests__/writeCanvasSettings.test.ts +15 -0
- package/src/asciiDiagram/__tests__/AsciiDiagramExtension.test.ts +20 -1
- package/src/buildPreviewDoc.ts +9 -7
- package/src/codeSnippet/CodeSnippetExtension.ts +205 -0
- package/src/codeSnippet/CodeSnippetWidget.tsx +109 -0
- package/src/codeSnippet/__tests__/CodeSnippetExtension.test.ts +95 -0
- package/src/codeSnippet/__tests__/codeSnippetLanguages.test.ts +50 -0
- package/src/codeSnippet/codeSnippetCommands.ts +21 -0
- package/src/codeSnippet/codeSnippetData.ts +43 -0
- package/src/codeSnippet/codeSnippetLanguages.ts +216 -0
- package/src/diagram/DiagramCanvas.tsx +1 -0
- package/src/find/FindHighlightExtension.ts +81 -0
- package/src/find/FindToolbar.tsx +314 -0
- package/src/find/findModel.ts +77 -0
- package/src/index.ts +89 -0
- package/src/markdownCodeFence.ts +72 -0
- package/src/mediaReferences.ts +5 -3
- package/src/mermaid/MermaidDiagramCanvas.tsx +693 -0
- package/src/mermaid/MermaidDiagramExtension.ts +243 -0
- package/src/mermaid/MermaidDiagramTypeThumbnail.tsx +184 -0
- package/src/mermaid/MermaidDiagramWidget.tsx +653 -0
- package/src/mermaid/MermaidShapePalette.tsx +245 -0
- package/src/mermaid/__tests__/MermaidDiagramExtension.test.ts +361 -0
- package/src/mermaid/__tests__/mermaidDiagramTypes.test.ts +35 -0
- package/src/mermaid/__tests__/mermaidRenderer.test.ts +49 -0
- package/src/mermaid/__tests__/mermaidSourceOps.test.ts +213 -0
- package/src/mermaid/__tests__/mermaidSyntax.test.ts +71 -0
- package/src/mermaid/mermaidCommands.ts +34 -0
- package/src/mermaid/mermaidData.ts +31 -0
- package/src/mermaid/mermaidDiagramTypes.ts +325 -0
- package/src/mermaid/mermaidModel.ts +31 -0
- package/src/mermaid/mermaidRenderer.ts +181 -0
- package/src/mermaid/mermaidShapes.ts +113 -0
- package/src/mermaid/mermaidSourceOps.ts +454 -0
- package/src/scene/Scene.tsx +46 -15
- package/src/scene/SceneBlockToolbar.tsx +29 -14
- package/src/scene/SceneViewControls.tsx +43 -0
- package/src/scene/__tests__/fitScale.test.ts +19 -0
- package/src/scene/__tests__/useScenePanZoom.test.ts +28 -1
- package/src/scene/fitScale.ts +17 -0
- package/src/scene/hooks/useScenePanZoom.ts +11 -4
- package/src/scene/scene.css +85 -3
- package/src/styles/code-snippet.css +76 -0
- package/src/styles/editor.css +322 -2
- package/src/styles/index.css +2 -0
- package/src/styles/mermaid-diagram.css +487 -0
- package/src/writeCanvasSettings.ts +30 -0
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Loss-minimizing source transformations for structured Mermaid flowchart edits.
|
|
3
|
+
*
|
|
4
|
+
* Additive edits are represented as ordinary Mermaid declarations, preceded by
|
|
5
|
+
* a private comment marker so later edits can update the declaration instead
|
|
6
|
+
* of endlessly appending overrides. Destructive edits are deliberately
|
|
7
|
+
* conservative: they only rewrite lines that can be associated with the
|
|
8
|
+
* selected node/edge without dropping an unrelated edge.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import type {
|
|
12
|
+
MermaidEditableEdge,
|
|
13
|
+
MermaidEditableNode,
|
|
14
|
+
MermaidFlowchartDirection,
|
|
15
|
+
MermaidFlowchartModel,
|
|
16
|
+
} from './mermaidModel';
|
|
17
|
+
import type { MermaidFlowchartShapeId } from './mermaidShapes';
|
|
18
|
+
|
|
19
|
+
const NODE_MARKER = '%% squisq:node ';
|
|
20
|
+
const EDGE_MARKER = '%% squisq:edge ';
|
|
21
|
+
const EDGE_TOKEN = /(?:<[-=.]+[ox>]?|[ox<]?[-=.]+[ox>]|~~~)/;
|
|
22
|
+
|
|
23
|
+
export interface MermaidSourceEditResult {
|
|
24
|
+
ok: boolean;
|
|
25
|
+
source: string;
|
|
26
|
+
reason?: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export function isEditableMermaidNodeId(id: string): boolean {
|
|
30
|
+
return /^[A-Za-z_][A-Za-z0-9_-]*$/.test(id);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function encodedId(id: string): string {
|
|
34
|
+
return encodeURIComponent(id);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function splitLines(source: string): string[] {
|
|
38
|
+
return source.split(/\r?\n/);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function joinLines(lines: readonly string[]): string {
|
|
42
|
+
return lines.join('\n');
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function withoutManagedBlock(source: string, marker: string): string {
|
|
46
|
+
const lines = splitLines(source);
|
|
47
|
+
const next: string[] = [];
|
|
48
|
+
for (let index = 0; index < lines.length; index += 1) {
|
|
49
|
+
if (lines[index].trim() !== marker) {
|
|
50
|
+
next.push(lines[index]);
|
|
51
|
+
continue;
|
|
52
|
+
}
|
|
53
|
+
// Squisq-managed blocks are exactly marker + one Mermaid statement.
|
|
54
|
+
index += 1;
|
|
55
|
+
if (next.length > 0 && next[next.length - 1] === '' && lines[index + 1] === '') {
|
|
56
|
+
next.pop();
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
return joinLines(next);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function appendManagedBlock(source: string, marker: string, statement: string): string {
|
|
63
|
+
const without = withoutManagedBlock(source, marker).replace(/[ \t]+$/gm, '');
|
|
64
|
+
const separator = without.endsWith('\n\n') ? '' : without.endsWith('\n') ? '\n' : '\n\n';
|
|
65
|
+
return `${without}${separator} ${marker}\n ${statement}`;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function formatNode(node: Pick<MermaidEditableNode, 'id' | 'label' | 'shape' | 'classes'>): string {
|
|
69
|
+
const classes = node.classes
|
|
70
|
+
.filter((className) => /^[A-Za-z_][A-Za-z0-9_-]*$/.test(className))
|
|
71
|
+
.map((className) => `:::${className}`)
|
|
72
|
+
.join('');
|
|
73
|
+
return `${node.id}@{ shape: ${node.shape}, label: ${JSON.stringify(node.label)} }${classes}`;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export function upsertMermaidNode(
|
|
77
|
+
source: string,
|
|
78
|
+
node: Pick<MermaidEditableNode, 'id' | 'label' | 'shape' | 'classes'>,
|
|
79
|
+
): MermaidSourceEditResult {
|
|
80
|
+
if (!isEditableMermaidNodeId(node.id)) {
|
|
81
|
+
return {
|
|
82
|
+
ok: false,
|
|
83
|
+
source,
|
|
84
|
+
reason: `Node id “${node.id}” is not safe for structured source editing.`,
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
const marker = `${NODE_MARKER}${encodedId(node.id)}`;
|
|
88
|
+
return { ok: true, source: appendManagedBlock(source, marker, formatNode(node)) };
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export function renameMermaidNode(
|
|
92
|
+
source: string,
|
|
93
|
+
node: MermaidEditableNode,
|
|
94
|
+
label: string,
|
|
95
|
+
): MermaidSourceEditResult {
|
|
96
|
+
const nextLabel = label.trim();
|
|
97
|
+
if (!nextLabel) return { ok: false, source, reason: 'A node label cannot be empty.' };
|
|
98
|
+
if (nextLabel === node.label) return { ok: false, source, reason: 'The label is unchanged.' };
|
|
99
|
+
return upsertMermaidNode(source, { ...node, label: nextLabel });
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export function changeMermaidNodeShape(
|
|
103
|
+
source: string,
|
|
104
|
+
node: MermaidEditableNode,
|
|
105
|
+
shape: MermaidFlowchartShapeId,
|
|
106
|
+
): MermaidSourceEditResult {
|
|
107
|
+
if (shape === node.shape) return { ok: false, source, reason: 'The shape is unchanged.' };
|
|
108
|
+
return upsertMermaidNode(source, { ...node, shape });
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export function nextMermaidNodeId(model: MermaidFlowchartModel, base = 'node'): string {
|
|
112
|
+
const ids = new Set(model.nodes.map((node) => node.id));
|
|
113
|
+
if (!ids.has(base)) return base;
|
|
114
|
+
let suffix = 2;
|
|
115
|
+
while (ids.has(`${base}${suffix}`)) suffix += 1;
|
|
116
|
+
return `${base}${suffix}`;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
export function addMermaidNode(
|
|
120
|
+
source: string,
|
|
121
|
+
model: MermaidFlowchartModel,
|
|
122
|
+
shape: MermaidFlowchartShapeId = 'rect',
|
|
123
|
+
): MermaidSourceEditResult & { nodeId?: string } {
|
|
124
|
+
const id = nextMermaidNodeId(model);
|
|
125
|
+
const result = upsertMermaidNode(source, {
|
|
126
|
+
id,
|
|
127
|
+
label: 'New node',
|
|
128
|
+
shape,
|
|
129
|
+
classes: [],
|
|
130
|
+
});
|
|
131
|
+
return result.ok ? { ...result, nodeId: id } : result;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export function duplicateMermaidNode(
|
|
135
|
+
source: string,
|
|
136
|
+
model: MermaidFlowchartModel,
|
|
137
|
+
node: MermaidEditableNode,
|
|
138
|
+
): MermaidSourceEditResult & { nodeId?: string } {
|
|
139
|
+
const id = nextMermaidNodeId(model, `${node.id}_copy`);
|
|
140
|
+
const result = upsertMermaidNode(source, {
|
|
141
|
+
...node,
|
|
142
|
+
id,
|
|
143
|
+
label: `${node.label} copy`,
|
|
144
|
+
});
|
|
145
|
+
return result.ok ? { ...result, nodeId: id } : result;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export function connectMermaidNodes(
|
|
149
|
+
source: string,
|
|
150
|
+
model: MermaidFlowchartModel,
|
|
151
|
+
sourceId: string,
|
|
152
|
+
targetId: string,
|
|
153
|
+
): MermaidSourceEditResult {
|
|
154
|
+
if (sourceId === targetId) {
|
|
155
|
+
return { ok: false, source, reason: 'Choose a different node to create a connection.' };
|
|
156
|
+
}
|
|
157
|
+
if (!isEditableMermaidNodeId(sourceId) || !isEditableMermaidNodeId(targetId)) {
|
|
158
|
+
return { ok: false, source, reason: 'One of the node ids is not safe to rewrite.' };
|
|
159
|
+
}
|
|
160
|
+
if (model.edges.some((edge) => edge.source === sourceId && edge.target === targetId)) {
|
|
161
|
+
return { ok: false, source, reason: 'Those nodes are already connected.' };
|
|
162
|
+
}
|
|
163
|
+
const marker = `${EDGE_MARKER}${encodedId(sourceId)} ${encodedId(targetId)}`;
|
|
164
|
+
return {
|
|
165
|
+
ok: true,
|
|
166
|
+
source: appendManagedBlock(source, marker, `${sourceId} --> ${targetId}`),
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
function withoutQuotedText(line: string): string {
|
|
171
|
+
let quote = '';
|
|
172
|
+
let escaped = false;
|
|
173
|
+
let result = '';
|
|
174
|
+
for (const char of line) {
|
|
175
|
+
if (escaped) {
|
|
176
|
+
result += quote ? ' ' : char;
|
|
177
|
+
escaped = false;
|
|
178
|
+
continue;
|
|
179
|
+
}
|
|
180
|
+
if (char === '\\') {
|
|
181
|
+
escaped = true;
|
|
182
|
+
result += quote ? ' ' : char;
|
|
183
|
+
continue;
|
|
184
|
+
}
|
|
185
|
+
if (quote) {
|
|
186
|
+
if (char === quote) quote = '';
|
|
187
|
+
result += ' ';
|
|
188
|
+
continue;
|
|
189
|
+
}
|
|
190
|
+
if (char === '"' || char === "'") {
|
|
191
|
+
quote = char;
|
|
192
|
+
result += ' ';
|
|
193
|
+
continue;
|
|
194
|
+
}
|
|
195
|
+
result += char;
|
|
196
|
+
}
|
|
197
|
+
return result;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
function idRegex(id: string): RegExp {
|
|
201
|
+
const escaped = id.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
202
|
+
return new RegExp(`(^|[^A-Za-z0-9_-])${escaped}(?=$|[^A-Za-z0-9_-])`);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
function lineReferencesNode(line: string, id: string): boolean {
|
|
206
|
+
return idRegex(id).test(withoutQuotedText(line));
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
function referencedNodeIds(line: string, model: MermaidFlowchartModel): string[] {
|
|
210
|
+
return model.nodes.filter((node) => lineReferencesNode(line, node.id)).map((node) => node.id);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
function isEdgeLine(line: string): boolean {
|
|
214
|
+
const stripped = withoutQuotedText(line).trim();
|
|
215
|
+
return !stripped.startsWith('%%') && EDGE_TOKEN.test(stripped);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
function formatEdgeLabel(label: string): string {
|
|
219
|
+
// A literal pipe terminates Mermaid's pipe-delimited edge label. Preserve it
|
|
220
|
+
// as an HTML entity so the authored label still round-trips through Mermaid.
|
|
221
|
+
return `|${JSON.stringify(label.replace(/\|/g, '|'))}|`;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
function rewriteSimpleEdgeLabel(
|
|
225
|
+
line: string,
|
|
226
|
+
edge: MermaidEditableEdge,
|
|
227
|
+
label: string,
|
|
228
|
+
): string | null {
|
|
229
|
+
const stripped = withoutQuotedText(line);
|
|
230
|
+
const operator = EDGE_TOKEN.exec(stripped);
|
|
231
|
+
if (!operator) return null;
|
|
232
|
+
|
|
233
|
+
const suffixStart = operator.index + operator[0].length;
|
|
234
|
+
const suffix = line.slice(suffixStart);
|
|
235
|
+
const existingPipeLabel = /^(\s*)\|([^|\r\n]*)\|/.exec(suffix);
|
|
236
|
+
|
|
237
|
+
// Mermaid also accepts labels written between two link fragments, such as
|
|
238
|
+
// `A -- label --> B`. Rewriting that form without a full statement parser
|
|
239
|
+
// risks damaging its link style, so keep it source-only.
|
|
240
|
+
if (edge.label && !existingPipeLabel) return null;
|
|
241
|
+
|
|
242
|
+
const afterLabel = existingPipeLabel ? suffix.slice(existingPipeLabel[0].length) : suffix;
|
|
243
|
+
const nextLabel = label ? formatEdgeLabel(label) : '';
|
|
244
|
+
return `${line.slice(0, suffixStart)}${nextLabel}${afterLabel}`;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
function lineIndent(line: string): string {
|
|
248
|
+
return /^\s*/.exec(line)?.[0] ?? '';
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
function declarationFor(node: MermaidEditableNode, indent: string): string {
|
|
252
|
+
return `${indent}${formatNode(node)}`;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Remove a node when each affected edge line contains no edge between two
|
|
257
|
+
* surviving nodes. This covers ordinary one-edge-per-line Mermaid (including
|
|
258
|
+
* declarations on the edge) while refusing dense `A & B --> C & D` rewrites.
|
|
259
|
+
*/
|
|
260
|
+
export function deleteMermaidNode(
|
|
261
|
+
source: string,
|
|
262
|
+
model: MermaidFlowchartModel,
|
|
263
|
+
nodeId: string,
|
|
264
|
+
): MermaidSourceEditResult {
|
|
265
|
+
const selected = model.nodes.find((node) => node.id === nodeId);
|
|
266
|
+
if (!selected) return { ok: false, source, reason: 'The selected node no longer exists.' };
|
|
267
|
+
if (!isEditableMermaidNodeId(nodeId)) {
|
|
268
|
+
return { ok: false, source, reason: 'This node id can only be edited in Source.' };
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
let working = withoutManagedBlock(source, `${NODE_MARKER}${encodedId(nodeId)}`);
|
|
272
|
+
const lines = splitLines(working);
|
|
273
|
+
const next: string[] = [];
|
|
274
|
+
let removed = false;
|
|
275
|
+
|
|
276
|
+
for (let index = 0; index < lines.length; index += 1) {
|
|
277
|
+
const line = lines[index];
|
|
278
|
+
const trimmed = line.trim();
|
|
279
|
+
|
|
280
|
+
if (trimmed.startsWith(EDGE_MARKER)) {
|
|
281
|
+
const markerIds = trimmed.slice(EDGE_MARKER.length).split(/\s+/).map(decodeURIComponent);
|
|
282
|
+
if (markerIds.includes(nodeId)) {
|
|
283
|
+
removed = true;
|
|
284
|
+
index += 1;
|
|
285
|
+
continue;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
if (!lineReferencesNode(line, nodeId)) {
|
|
290
|
+
next.push(line);
|
|
291
|
+
continue;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
if (isEdgeLine(line)) {
|
|
295
|
+
const ids = referencedNodeIds(line, model);
|
|
296
|
+
const survivingIds = ids.filter((id) => id !== nodeId);
|
|
297
|
+
const losesSurvivingEdge = model.edges.some(
|
|
298
|
+
(edge) =>
|
|
299
|
+
edge.source !== nodeId &&
|
|
300
|
+
edge.target !== nodeId &&
|
|
301
|
+
survivingIds.includes(edge.source) &&
|
|
302
|
+
survivingIds.includes(edge.target),
|
|
303
|
+
);
|
|
304
|
+
if (losesSurvivingEdge) {
|
|
305
|
+
return {
|
|
306
|
+
ok: false,
|
|
307
|
+
source,
|
|
308
|
+
reason:
|
|
309
|
+
'This compact edge statement also contains unrelated connections; edit it in Source.',
|
|
310
|
+
};
|
|
311
|
+
}
|
|
312
|
+
const indent = lineIndent(line);
|
|
313
|
+
for (const id of survivingIds) {
|
|
314
|
+
const survivor = model.nodes.find((node) => node.id === id);
|
|
315
|
+
if (survivor) next.push(declarationFor(survivor, indent));
|
|
316
|
+
}
|
|
317
|
+
removed = true;
|
|
318
|
+
continue;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
// Preserve other nodes in a multi-node class assignment.
|
|
322
|
+
const classMatch = /^(\s*class\s+)([^\s]+)(\s+.+)$/.exec(line);
|
|
323
|
+
if (classMatch) {
|
|
324
|
+
const ids = classMatch[2].split(',').filter((id) => id !== nodeId);
|
|
325
|
+
if (ids.length > 0) next.push(`${classMatch[1]}${ids.join(',')}${classMatch[3]}`);
|
|
326
|
+
removed = true;
|
|
327
|
+
continue;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
// Standalone declarations, style/click directives, and Squisq overrides
|
|
331
|
+
// for the selected id can be dropped without touching another node.
|
|
332
|
+
removed = true;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
working = joinLines(next);
|
|
336
|
+
return removed
|
|
337
|
+
? { ok: true, source: working.replace(/\n{3,}/g, '\n\n') }
|
|
338
|
+
: { ok: false, source, reason: 'No safe source declaration was found for this node.' };
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
export function disconnectMermaidEdge(
|
|
342
|
+
source: string,
|
|
343
|
+
model: MermaidFlowchartModel,
|
|
344
|
+
edge: MermaidEditableEdge,
|
|
345
|
+
): MermaidSourceEditResult {
|
|
346
|
+
const managedMarker = `${EDGE_MARKER}${encodedId(edge.source)} ${encodedId(edge.target)}`;
|
|
347
|
+
const withoutManaged = withoutManagedBlock(source, managedMarker);
|
|
348
|
+
if (withoutManaged !== source) return { ok: true, source: withoutManaged };
|
|
349
|
+
|
|
350
|
+
const sourceNode = model.nodes.find((node) => node.id === edge.source);
|
|
351
|
+
const targetNode = model.nodes.find((node) => node.id === edge.target);
|
|
352
|
+
if (!sourceNode || !targetNode) {
|
|
353
|
+
return { ok: false, source, reason: 'The connection endpoints no longer exist.' };
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
const lines = splitLines(source);
|
|
357
|
+
for (let index = 0; index < lines.length; index += 1) {
|
|
358
|
+
const line = lines[index];
|
|
359
|
+
if (!isEdgeLine(line)) continue;
|
|
360
|
+
if (!lineReferencesNode(line, edge.source) || !lineReferencesNode(line, edge.target)) continue;
|
|
361
|
+
const ids = referencedNodeIds(line, model);
|
|
362
|
+
if (ids.some((id) => id !== edge.source && id !== edge.target)) continue;
|
|
363
|
+
const indent = lineIndent(line);
|
|
364
|
+
lines.splice(index, 1, declarationFor(sourceNode, indent), declarationFor(targetNode, indent));
|
|
365
|
+
return { ok: true, source: joinLines(lines) };
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
return {
|
|
369
|
+
ok: false,
|
|
370
|
+
source,
|
|
371
|
+
reason: 'This connection is part of a compact Mermaid statement; edit it in Source.',
|
|
372
|
+
};
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* Add, update, or remove a label on a one-edge-per-line flowchart connection.
|
|
377
|
+
* Managed Squisq edges and ordinary Mermaid pipe labels are both supported;
|
|
378
|
+
* compact or otherwise ambiguous statements deliberately fall back to Source.
|
|
379
|
+
*/
|
|
380
|
+
export function setMermaidEdgeLabel(
|
|
381
|
+
source: string,
|
|
382
|
+
model: MermaidFlowchartModel,
|
|
383
|
+
edge: MermaidEditableEdge,
|
|
384
|
+
label: string,
|
|
385
|
+
): MermaidSourceEditResult {
|
|
386
|
+
const nextLabel = label.trim();
|
|
387
|
+
if (nextLabel === edge.label.trim()) {
|
|
388
|
+
return { ok: false, source, reason: 'The connection label is unchanged.' };
|
|
389
|
+
}
|
|
390
|
+
if (!isEditableMermaidNodeId(edge.source) || !isEditableMermaidNodeId(edge.target)) {
|
|
391
|
+
return { ok: false, source, reason: 'This connection can only be labeled in Source.' };
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
const lines = splitLines(source);
|
|
395
|
+
const managedMarker = `${EDGE_MARKER}${encodedId(edge.source)} ${encodedId(edge.target)}`;
|
|
396
|
+
const markerIndex = lines.findIndex((line) => line.trim() === managedMarker);
|
|
397
|
+
if (markerIndex >= 0) {
|
|
398
|
+
const statementIndex = markerIndex + 1;
|
|
399
|
+
const statement = lines[statementIndex];
|
|
400
|
+
const rewritten = statement ? rewriteSimpleEdgeLabel(statement, edge, nextLabel) : null;
|
|
401
|
+
if (!rewritten) {
|
|
402
|
+
return { ok: false, source, reason: 'This connection label can only be changed in Source.' };
|
|
403
|
+
}
|
|
404
|
+
lines[statementIndex] = rewritten;
|
|
405
|
+
return { ok: true, source: joinLines(lines) };
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
const candidates = lines
|
|
409
|
+
.map((line, index) => ({ line, index }))
|
|
410
|
+
.filter(({ line }) => {
|
|
411
|
+
if (!isEdgeLine(line)) return false;
|
|
412
|
+
if (!lineReferencesNode(line, edge.source) || !lineReferencesNode(line, edge.target)) {
|
|
413
|
+
return false;
|
|
414
|
+
}
|
|
415
|
+
const ids = referencedNodeIds(line, model);
|
|
416
|
+
return !ids.some((id) => id !== edge.source && id !== edge.target);
|
|
417
|
+
});
|
|
418
|
+
|
|
419
|
+
if (candidates.length !== 1) {
|
|
420
|
+
return {
|
|
421
|
+
ok: false,
|
|
422
|
+
source,
|
|
423
|
+
reason: 'This connection is part of an ambiguous Mermaid statement; edit it in Source.',
|
|
424
|
+
};
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
const candidate = candidates[0];
|
|
428
|
+
const rewritten = rewriteSimpleEdgeLabel(candidate.line, edge, nextLabel);
|
|
429
|
+
if (!rewritten) {
|
|
430
|
+
return {
|
|
431
|
+
ok: false,
|
|
432
|
+
source,
|
|
433
|
+
reason: 'This connection uses a label form that can only be changed in Source.',
|
|
434
|
+
};
|
|
435
|
+
}
|
|
436
|
+
lines[candidate.index] = rewritten;
|
|
437
|
+
return { ok: true, source: joinLines(lines) };
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
export function setMermaidFlowchartDirection(
|
|
441
|
+
source: string,
|
|
442
|
+
direction: MermaidFlowchartDirection,
|
|
443
|
+
): MermaidSourceEditResult {
|
|
444
|
+
const header = /^(\s*)(flowchart|graph)\b[^\r\n]*$/m;
|
|
445
|
+
if (!header.test(source)) {
|
|
446
|
+
return { ok: false, source, reason: 'Only flowchart and graph headers have a direction.' };
|
|
447
|
+
}
|
|
448
|
+
const next = source.replace(header, (_match, indent: string, keyword: string) => {
|
|
449
|
+
return `${indent}${keyword} ${direction}`;
|
|
450
|
+
});
|
|
451
|
+
return next === source
|
|
452
|
+
? { ok: false, source, reason: 'The direction is unchanged.' }
|
|
453
|
+
: { ok: true, source: next };
|
|
454
|
+
}
|
package/src/scene/Scene.tsx
CHANGED
|
@@ -34,6 +34,7 @@ import { RenderLayer } from './layers/renderLayer';
|
|
|
34
34
|
import { useSceneTextEditing } from './text/useSceneTextEditing';
|
|
35
35
|
import { SceneTextOverlay } from './text/SceneTextOverlay';
|
|
36
36
|
import type { SceneTextEditConfig } from './text/sceneTextConfig';
|
|
37
|
+
import { SceneViewControls } from './SceneViewControls';
|
|
37
38
|
|
|
38
39
|
export interface SceneProps {
|
|
39
40
|
/** Viewport size in viewport units. Layers render in this coordinate space. */
|
|
@@ -78,6 +79,8 @@ export interface SceneProps {
|
|
|
78
79
|
showMaximize?: boolean;
|
|
79
80
|
maximized?: boolean;
|
|
80
81
|
onToggleMaximize?: () => void;
|
|
82
|
+
/** Show the shared diagram zoom and fit controls. */
|
|
83
|
+
showViewControls?: boolean;
|
|
81
84
|
/** Render the built-in toolbar (Select / Connect / etc.). Default true. */
|
|
82
85
|
showToolbar?: boolean;
|
|
83
86
|
/**
|
|
@@ -112,6 +115,7 @@ export function Scene(props: SceneProps) {
|
|
|
112
115
|
showMaximize,
|
|
113
116
|
maximized,
|
|
114
117
|
onToggleMaximize,
|
|
118
|
+
showViewControls = false,
|
|
115
119
|
showToolbar = true,
|
|
116
120
|
textEditing,
|
|
117
121
|
onDrop,
|
|
@@ -139,6 +143,8 @@ export function Scene(props: SceneProps) {
|
|
|
139
143
|
|
|
140
144
|
// ── Pan/zoom + selection ────────────────────────────────────
|
|
141
145
|
const panZoom = useScenePanZoom();
|
|
146
|
+
const { fitBox, zoomAt } = panZoom;
|
|
147
|
+
const [viewMode, setViewMode] = useState<'fit' | 'manual'>('fit');
|
|
142
148
|
const selection = useSceneSelection();
|
|
143
149
|
const setSceneSelection = selection.setSelection;
|
|
144
150
|
const { hit } = useSceneHitTest();
|
|
@@ -226,6 +232,7 @@ export function Scene(props: SceneProps) {
|
|
|
226
232
|
const sy = e.clientY - rect.top;
|
|
227
233
|
// Negative deltaY = wheel up = zoom in.
|
|
228
234
|
const factor = Math.exp(-e.deltaY * 0.0015);
|
|
235
|
+
setViewMode('manual');
|
|
229
236
|
panZoom.zoomAt(factor, sx, sy);
|
|
230
237
|
},
|
|
231
238
|
[panZoom],
|
|
@@ -246,6 +253,7 @@ export function Scene(props: SceneProps) {
|
|
|
246
253
|
(e.currentTarget as SVGSVGElement).focus({ preventScroll: true });
|
|
247
254
|
// Middle-button or space-modified drag → pan, regardless of tool.
|
|
248
255
|
if (e.button === 1 || (e.button === 0 && e.altKey)) {
|
|
256
|
+
setViewMode('manual');
|
|
249
257
|
isPanning.current = true;
|
|
250
258
|
panLast.current = { x: e.clientX, y: e.clientY };
|
|
251
259
|
(e.currentTarget as Element).setPointerCapture?.(e.pointerId);
|
|
@@ -372,8 +380,7 @@ export function Scene(props: SceneProps) {
|
|
|
372
380
|
return () => root.removeEventListener('keydown', onKey);
|
|
373
381
|
}, [tools, activeTool, setActiveTool, textEdit.activeRef]);
|
|
374
382
|
|
|
375
|
-
// ──
|
|
376
|
-
const didFitRef = useRef(false);
|
|
383
|
+
// ── Responsive fit ──────────────────────────────────────────
|
|
377
384
|
const [containerSize, setContainerSize] = useState<{ width: number; height: number } | null>(
|
|
378
385
|
null,
|
|
379
386
|
);
|
|
@@ -391,12 +398,8 @@ export function Scene(props: SceneProps) {
|
|
|
391
398
|
return () => ro.disconnect();
|
|
392
399
|
}, []);
|
|
393
400
|
|
|
394
|
-
|
|
395
|
-
if (
|
|
396
|
-
if (!containerSize) return;
|
|
397
|
-
if (hitItems.length === 0) return;
|
|
398
|
-
didFitRef.current = true;
|
|
399
|
-
// Fit to the bounding box of all hit items (the visible content).
|
|
401
|
+
const contentBox = useMemo(() => {
|
|
402
|
+
if (hitItems.length === 0) return null;
|
|
400
403
|
let minX = Infinity;
|
|
401
404
|
let minY = Infinity;
|
|
402
405
|
let maxX = -Infinity;
|
|
@@ -407,13 +410,32 @@ export function Scene(props: SceneProps) {
|
|
|
407
410
|
if (it.bounds.x + it.bounds.width > maxX) maxX = it.bounds.x + it.bounds.width;
|
|
408
411
|
if (it.bounds.y + it.bounds.height > maxY) maxY = it.bounds.y + it.bounds.height;
|
|
409
412
|
}
|
|
410
|
-
if (!Number.isFinite(minX)) return;
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
);
|
|
416
|
-
|
|
413
|
+
if (!Number.isFinite(minX)) return null;
|
|
414
|
+
return { x: minX, y: minY, width: maxX - minX, height: maxY - minY };
|
|
415
|
+
}, [hitItems]);
|
|
416
|
+
|
|
417
|
+
const fitContent = useCallback(() => {
|
|
418
|
+
if (!containerSize || !contentBox) return;
|
|
419
|
+
fitBox(contentBox, containerSize, 40, 1);
|
|
420
|
+
}, [containerSize, contentBox, fitBox]);
|
|
421
|
+
|
|
422
|
+
useEffect(() => {
|
|
423
|
+
if (viewMode === 'fit') fitContent();
|
|
424
|
+
}, [fitContent, viewMode]);
|
|
425
|
+
|
|
426
|
+
const adjustZoom = useCallback(
|
|
427
|
+
(factor: number) => {
|
|
428
|
+
setViewMode('manual');
|
|
429
|
+
if (!containerSize) return;
|
|
430
|
+
zoomAt(factor, containerSize.width / 2, containerSize.height / 2);
|
|
431
|
+
},
|
|
432
|
+
[containerSize, zoomAt],
|
|
433
|
+
);
|
|
434
|
+
|
|
435
|
+
const activateFit = useCallback(() => {
|
|
436
|
+
setViewMode('fit');
|
|
437
|
+
fitContent();
|
|
438
|
+
}, [fitContent]);
|
|
417
439
|
|
|
418
440
|
// ── Render ──────────────────────────────────────────────────
|
|
419
441
|
const liveOffset = activeId === 'select' ? getActiveMoveOffset(interaction) : null;
|
|
@@ -548,6 +570,15 @@ export function Scene(props: SceneProps) {
|
|
|
548
570
|
/>
|
|
549
571
|
{activeTool?.renderOverlay?.(ctx)}
|
|
550
572
|
</SceneViewport>
|
|
573
|
+
{showViewControls && (
|
|
574
|
+
<SceneViewControls
|
|
575
|
+
scale={panZoom.transform.scale}
|
|
576
|
+
fit={viewMode === 'fit'}
|
|
577
|
+
onZoomOut={() => adjustZoom(1 / 1.2)}
|
|
578
|
+
onZoomIn={() => adjustZoom(1.2)}
|
|
579
|
+
onFit={activateFit}
|
|
580
|
+
/>
|
|
581
|
+
)}
|
|
551
582
|
{showMaximize && onToggleMaximize && (
|
|
552
583
|
<button
|
|
553
584
|
type="button"
|
|
@@ -40,8 +40,12 @@ export interface SceneBlockAction {
|
|
|
40
40
|
title?: string;
|
|
41
41
|
onClick: () => void;
|
|
42
42
|
disabled?: boolean;
|
|
43
|
+
/** Apply the selected-mode treatment (for actions such as Connect). */
|
|
44
|
+
active?: boolean;
|
|
43
45
|
/** Render with the destructive (red) treatment — used for Delete. */
|
|
44
46
|
danger?: boolean;
|
|
47
|
+
/** Optional dropdown anchored to this action button. */
|
|
48
|
+
popover?: ReactNode;
|
|
45
49
|
}
|
|
46
50
|
|
|
47
51
|
export interface SceneBlockToolbarProps {
|
|
@@ -178,20 +182,31 @@ export function SceneBlockToolbar({
|
|
|
178
182
|
{properties}
|
|
179
183
|
{actions.length > 0 && (
|
|
180
184
|
<div className="squisq-scene-block-actions">
|
|
181
|
-
{actions.map((a) =>
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
185
|
+
{actions.map((a) => {
|
|
186
|
+
const button = (
|
|
187
|
+
<button
|
|
188
|
+
key={a.id}
|
|
189
|
+
type="button"
|
|
190
|
+
className={`squisq-scene-action${a.active ? ' squisq-scene-action--active' : ''}${a.danger ? ' squisq-scene-action--danger' : ''}`}
|
|
191
|
+
onClick={a.onClick}
|
|
192
|
+
disabled={a.disabled}
|
|
193
|
+
title={a.title ?? a.label}
|
|
194
|
+
aria-label={a.title ?? a.label}
|
|
195
|
+
aria-pressed={a.active || undefined}
|
|
196
|
+
>
|
|
197
|
+
{a.icon && <span className="squisq-scene-action-icon">{a.icon}</span>}
|
|
198
|
+
<span className="squisq-scene-action-label">{a.label}</span>
|
|
199
|
+
</button>
|
|
200
|
+
);
|
|
201
|
+
return a.popover ? (
|
|
202
|
+
<span key={a.id} className="squisq-scene-action-popover-anchor">
|
|
203
|
+
{button}
|
|
204
|
+
{a.popover}
|
|
205
|
+
</span>
|
|
206
|
+
) : (
|
|
207
|
+
button
|
|
208
|
+
);
|
|
209
|
+
})}
|
|
195
210
|
</div>
|
|
196
211
|
)}
|
|
197
212
|
</div>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { Icon } from '../Icon';
|
|
2
|
+
|
|
3
|
+
interface SceneViewControlsProps {
|
|
4
|
+
scale: number;
|
|
5
|
+
fit: boolean;
|
|
6
|
+
onZoomOut: () => void;
|
|
7
|
+
onZoomIn: () => void;
|
|
8
|
+
onFit: () => void;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/** Shared zoom/fit chrome for source-backed simple and complex diagrams. */
|
|
12
|
+
export function SceneViewControls({
|
|
13
|
+
scale,
|
|
14
|
+
fit,
|
|
15
|
+
onZoomOut,
|
|
16
|
+
onZoomIn,
|
|
17
|
+
onFit,
|
|
18
|
+
}: SceneViewControlsProps) {
|
|
19
|
+
return (
|
|
20
|
+
<div className="squisq-scene-view-controls" role="toolbar" aria-label="Diagram view">
|
|
21
|
+
<button type="button" onClick={onZoomOut} title="Zoom out" aria-label="Zoom out">
|
|
22
|
+
<Icon icon="fa-solid fa-minus" />
|
|
23
|
+
</button>
|
|
24
|
+
<output className="squisq-scene-view-scale" aria-label="Diagram zoom">
|
|
25
|
+
{Math.round(scale * 100)}%
|
|
26
|
+
</output>
|
|
27
|
+
<button type="button" onClick={onZoomIn} title="Zoom in" aria-label="Zoom in">
|
|
28
|
+
<Icon icon="fa-solid fa-plus" />
|
|
29
|
+
</button>
|
|
30
|
+
<button
|
|
31
|
+
type="button"
|
|
32
|
+
className="squisq-scene-view-fit"
|
|
33
|
+
data-active={fit || undefined}
|
|
34
|
+
aria-pressed={fit}
|
|
35
|
+
onClick={onFit}
|
|
36
|
+
title="Fit all shapes in the canvas"
|
|
37
|
+
aria-label="Fit diagram"
|
|
38
|
+
>
|
|
39
|
+
Fit
|
|
40
|
+
</button>
|
|
41
|
+
</div>
|
|
42
|
+
);
|
|
43
|
+
}
|