-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathutils.js
More file actions
453 lines (391 loc) · 13.4 KB
/
utils.js
File metadata and controls
453 lines (391 loc) · 13.4 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
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
import { selectionHasNodeOrMark } from '../cursor-helpers.js';
import { tableActionsOptions } from './constants.js';
import { markRaw } from 'vue';
import { undoDepth, redoDepth } from 'prosemirror-history';
import { yUndoPluginKey } from 'y-prosemirror';
import {
collectTrackedChanges,
collectTrackedChangesForContext,
} from '@extensions/track-changes/permission-helpers.js';
import { isList } from '@core/commands/list-helpers';
import { isCellSelection } from '@extensions/table/tableHelpers/isCellSelection.js';
import { hasExpandedSelection } from '@utils/selectionUtils.js';
import { selectedRect } from 'prosemirror-tables';
export const resolveContextMenuCommandEditor = (editor) => {
return typeof editor?.getActiveEditor === 'function' ? editor.getActiveEditor() : editor;
};
/**
* Get props by item id
*
* Takes in the itemId for the menu item and passes the ContextMenu props to help
* compute the props needed
* @param {string} itemId
* @param {Object} props
* @returns {Object}
*/
export const getPropsByItemId = (itemId, props) => {
// Common props that are needed regardless of trigger type
const editor = resolveContextMenuCommandEditor(props.editor);
const baseProps = {
editor: markRaw(editor),
};
switch (itemId) {
case 'insert-text':
const { state } = editor.view;
const { from, to, empty } = state.selection;
const selectedText = !empty ? state.doc.textBetween(from, to) : '';
return {
...baseProps,
selectedText,
handleClose: props.closePopover || (() => null),
apiKey: editor.options?.aiApiKey,
endpoint: editor.options?.aiEndpoint,
};
case 'insert-link':
return baseProps;
case 'insert-table':
return {
...baseProps,
onSelect: ({ rows, cols }) => {
editor.commands.insertTable({ rows, cols });
props.closePopover();
},
};
case 'edit-table':
return {
...baseProps,
options: tableActionsOptions,
onSelect: ({ command }) => {
if (editor.commands[command]) {
editor.commands[command]();
}
props.closePopover();
},
};
case 'copy':
case 'paste':
return {
...baseProps,
// These actions don't need additional props
};
default:
return baseProps;
}
};
/**
* Get the current editor context for menu logic
*
* @param {Object} editor - The editor instance
* @param {MouseEvent} [event] - Optional mouse event (for context menu)
* @returns {Promise<Object>} context - Enhanced editor context with comprehensive state information
*/
export async function getEditorContext(editor, event) {
if (!editor) return null;
const state = editor.state;
if (!state) return null;
const { from } = state.selection;
let pos = null;
let node = null;
if (event && typeof event.clientX === 'number' && typeof event.clientY === 'number') {
const coords = { left: event.clientX, top: event.clientY };
const hit = editor.posAtCoords?.(coords);
if (typeof hit?.pos === 'number') {
pos = hit.pos;
node = state.doc.nodeAt(pos);
}
}
if (pos === null && typeof from === 'number') {
pos = from;
node = state.doc.nodeAt(pos);
}
const selection = getContextSelection({ editor, state, pos, event });
const hasSelection = hasExpandedSelection(selection);
const selectedText = hasSelection ? state.doc.textBetween(selection.from, selection.to) : '';
// Don't read clipboard proactively to avoid permission prompts
// Clipboard will be read only when user actually clicks "Paste"
const clipboardContent = {
html: null,
text: null,
hasContent: true, // Assume clipboard might have content - we'll check on paste
raw: null,
};
const structureFromResolvedPos = pos !== null ? getStructureFromResolvedPos(state, pos) : null;
const isInTable =
structureFromResolvedPos?.isInTable ?? selectionHasNodeOrMark(state, 'table', { requireEnds: true });
const isInList = structureFromResolvedPos?.isInList ?? selectionIncludesListParagraph(state);
const isInSectionNode =
structureFromResolvedPos?.isInSectionNode ??
selectionHasNodeOrMark(state, 'documentSection', { requireEnds: true });
const currentNodeType = node?.type?.name || null;
const cellSelectionInfo = getCellSelectionInfo(state);
const activeMarks = [];
let trackedChangeId = null;
if (event && pos !== null) {
const $pos = state.doc.resolve(pos);
const processMark = (mark) => {
if (!activeMarks.includes(mark.type.name)) {
activeMarks.push(mark.type.name);
}
if (
!trackedChangeId &&
(mark.type.name === 'trackInsert' || mark.type.name === 'trackDelete' || mark.type.name === 'trackFormat')
) {
trackedChangeId = mark.attrs.id;
}
};
$pos.marks().forEach(processMark);
const nodeBefore = $pos.nodeBefore;
const nodeAfter = $pos.nodeAfter;
if (nodeBefore?.marks) {
nodeBefore.marks.forEach(processMark);
}
if (nodeAfter?.marks) {
nodeAfter.marks.forEach(processMark);
}
state.storedMarks?.forEach(processMark);
} else {
state.storedMarks?.forEach((mark) => activeMarks.push(mark.type.name));
state.selection.$head.marks().forEach((mark) => activeMarks.push(mark.type.name));
}
const isTrackedChange =
activeMarks.includes('trackInsert') || activeMarks.includes('trackDelete') || activeMarks.includes('trackFormat');
// If there is an expanded selection and the right-click happened inside
// that selection, use collectTrackedChanges for the full selection range
const shouldUseSelectionTrackedChanges =
event && pos !== null ? hasExpandedSelection(selection) && selectionContainsPos(selection, pos) : hasSelection;
const trackedChanges = shouldUseSelectionTrackedChanges
? collectTrackedChanges({ state, from: selection.from, to: selection.to })
: event && pos !== null
? collectTrackedChangesForContext({ state, pos, trackedChangeId })
: collectTrackedChanges({ state, from: selection.from, to: selection.to });
const cursorCoords = pos !== null ? editor.coordsAtPos?.(pos) : null;
const cursorPosition = cursorCoords
? {
x: cursorCoords.left,
y: cursorCoords.top,
}
: event
? { x: event.clientX, y: event.clientY }
: null;
// Resolve proofing context if available (PresentationEditor mode)
const proofingContext = resolveProofingContext(editor, pos);
return {
selectedText,
hasSelection,
selectionStart: selection.from,
selectionEnd: selection.to,
isInTable,
isInList,
isInSectionNode,
isCellSelection: cellSelectionInfo.isCellSelection,
tableSelectionKind: cellSelectionInfo.tableSelectionKind,
currentNodeType,
activeMarks,
isTrackedChange,
trackedChangeId,
documentMode: editor.options?.documentMode || 'editing',
canUndo: computeCanUndo(editor, state),
canRedo: computeCanRedo(editor, state),
isEditable: editor.isEditable,
clipboardContent,
cursorPosition,
pos,
node,
event,
trigger: event ? 'click' : 'slash',
editor,
trackedChanges,
proofingContext,
};
}
function selectionContainsPos(selection, pos) {
return hasExpandedSelection(selection) && Number.isFinite(pos) && pos >= selection.from && pos <= selection.to;
}
function getContextSelection({ editor, state, pos, event }) {
const currentSelection = state.selection;
const preservedSelection = editor?.options?.preservedSelection ?? editor?.options?.lastSelection;
if (hasExpandedSelection(currentSelection)) {
return currentSelection;
}
if (!hasExpandedSelection(preservedSelection)) {
return currentSelection;
}
if (event) {
return selectionContainsPos(preservedSelection, pos) ? preservedSelection : currentSelection;
}
return preservedSelection;
}
function computeCanUndo(editor, state) {
if (typeof editor?.can === 'function') {
try {
const can = editor.can();
if (can && typeof can.undo === 'function') {
return !!can.undo();
}
} catch (error) {
console.warn('[ContextMenu] Unable to determine undo availability via editor.can():', error);
}
}
if (isCollaborationEnabled(editor)) {
try {
const undoManager = yUndoPluginKey.getState(state)?.undoManager;
return !!undoManager && undoManager.undoStack.length > 0;
} catch (error) {
console.warn('[ContextMenu] Unable to determine undo availability via y-prosemirror:', error);
}
}
try {
return undoDepth(state) > 0;
} catch (error) {
console.warn('[ContextMenu] Unable to determine undo availability via history plugin:', error);
return false;
}
}
function computeCanRedo(editor, state) {
if (typeof editor?.can === 'function') {
try {
const can = editor.can();
if (can && typeof can.redo === 'function') {
return !!can.redo();
}
} catch (error) {
console.warn('[ContextMenu] Unable to determine redo availability via editor.can():', error);
}
}
if (isCollaborationEnabled(editor)) {
try {
const undoManager = yUndoPluginKey.getState(state)?.undoManager;
return !!undoManager && undoManager.redoStack.length > 0;
} catch (error) {
console.warn('[ContextMenu] Unable to determine redo availability via y-prosemirror:', error);
}
}
try {
return redoDepth(state) > 0;
} catch (error) {
console.warn('[ContextMenu] Unable to determine redo availability via history plugin:', error);
return false;
}
}
function isCollaborationEnabled(editor) {
return Boolean(editor?.options?.collaborationProvider && editor?.options?.ydoc);
}
function selectionIncludesListParagraph(state) {
const { $from, $to, from, to } = state.selection;
const hasListInResolvedPos = ($pos) => {
for (let depth = $pos.depth; depth > 0; depth--) {
if (isList($pos.node(depth))) {
return true;
}
}
return false;
};
if (hasListInResolvedPos($from) || hasListInResolvedPos($to)) {
return true;
}
let found = false;
state.doc.nodesBetween(from, to, (node) => {
if (isList(node)) {
found = true;
return false;
}
return true;
});
return found;
}
function getCellSelectionInfo(state) {
if (!isCellSelection(state.selection)) {
return { isCellSelection: false, tableSelectionKind: null };
}
let tableSelectionKind = 'cells';
try {
const rect = selectedRect(state);
const selectedRows = rect.bottom - rect.top;
const selectedCols = rect.right - rect.left;
const totalRows = rect.map.height;
const totalCols = rect.map.width;
const allRows = selectedRows === totalRows;
const allCols = selectedCols === totalCols;
if (allRows && allCols) {
tableSelectionKind = 'table';
} else if (allCols) {
tableSelectionKind = 'row';
} else if (allRows) {
tableSelectionKind = 'column';
}
} catch (error) {
console.warn('[ContextMenu] Unable to resolve cell selection rectangle:', error);
}
return { isCellSelection: true, tableSelectionKind };
}
function getStructureFromResolvedPos(state, pos) {
try {
const $pos = state.doc.resolve(pos);
let isInList = false;
let isInTable = false;
let isInSectionNode = false;
for (let depth = $pos.depth; depth > 0; depth--) {
const node = $pos.node(depth);
const name = node.type.name;
if (!isInList && isList(node)) {
isInList = true;
}
if (!isInTable && (name === 'table' || name === 'tableRow' || name === 'tableCell' || name === 'tableHeader')) {
isInTable = true;
}
if (!isInSectionNode && name === 'documentSection') {
isInSectionNode = true;
}
if (isInList && isInTable && isInSectionNode) {
break;
}
}
return {
isInTable,
isInList,
isInSectionNode,
};
} catch (error) {
console.warn('[ContextMenu] Unable to resolve position for structural context:', error);
return null;
}
}
/**
* Resolve proofing context at a position.
* Returns null if proofing is not active or no issue exists at the position.
*/
function resolveProofingContext(editor, pos) {
if (pos == null || !Number.isFinite(pos)) return null;
try {
// The context menu is wired to either the PresentationEditor wrapper
// (since SD-2875: 1.29+) or the inner / story Editor that carries a
// back-reference to it. Resolve the manager from whichever shape the
// caller passed — without this fallback, suggestions silently vanish
// when the wrapper itself is the menu's editor handle.
const manager =
editor?._presentationEditor?.proofingManager ??
editor?.presentationEditor?.proofingManager ??
editor?.proofingManager ??
null;
if (!manager) return null;
const issue = manager.getIssueAtPosition(pos);
if (!issue) return null;
const config = manager.config;
return {
issue,
suggestions: issue.replacements?.slice(0, config.maxSuggestions) ?? [],
canIgnore: config.allowIgnoreWord,
word: issue.word ?? '',
/** Ignore this word for the current session. */
ignoreWord: (word) => manager.ignoreWord(word),
};
} catch {
return null;
}
}
export {
getStructureFromResolvedPos as __getStructureFromResolvedPosForTest,
isCollaborationEnabled as __isCollaborationEnabledForTest,
getCellSelectionInfo as __getCellSelectionInfoForTest,
resolveProofingContext as __resolveProofingContextForTest,
};