-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathEditor.tsx
More file actions
417 lines (400 loc) · 13.2 KB
/
Copy pathEditor.tsx
File metadata and controls
417 lines (400 loc) · 13.2 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
import editorUsjAdaptor from "./adaptors/editor-usj.adaptor";
import usjEditorAdaptor from "./adaptors/usj-editor.adaptor";
import { getUsjMarkerAction, isUsjMarkerSupported } from "./adaptors/usj-marker-action.utils";
import { EditorOptions, EditorProps, EditorRef } from "./editor.model";
import editorTheme from "./editor.theme";
import ScriptureReferencePlugin from "./ScriptureReferencePlugin";
import TreeViewPlugin from "./TreeViewPlugin";
import { ToolbarPlugin } from "./toolbar/ToolbarPlugin";
import { InitialConfigType, LexicalComposer } from "@lexical/react/LexicalComposer";
import { ContentEditable } from "@lexical/react/LexicalContentEditable";
import { EditorRefPlugin } from "@lexical/react/LexicalEditorRefPlugin";
import { LexicalErrorBoundary } from "@lexical/react/LexicalErrorBoundary";
import { HistoryPlugin } from "@lexical/react/LexicalHistoryPlugin";
import { RichTextPlugin } from "@lexical/react/LexicalRichTextPlugin";
import { $setBlocksType } from "@lexical/selection";
import { deepEqual } from "fast-equals";
import {
$addUpdateTag,
$getSelection,
$isRangeSelection,
$setSelection,
COPY_COMMAND,
CUT_COMMAND,
EditorState,
LexicalEditor,
REDO_COMMAND,
UNDO_COMMAND,
} from "lexical";
import {
ForwardedRef,
forwardRef,
MutableRefObject,
PropsWithChildren,
ReactElement,
useCallback,
useImperativeHandle,
useRef,
useState,
} from "react";
import {
$createParaNode,
blackListedChangeTags,
DELTA_CHANGE_TAG,
externalTypedMarkType,
LoggerBasic,
SELECTION_CHANGE_TAG,
TypedMarkNode,
} from "shared";
import {
$applyUpdate,
$getNoteByKeyOrIndex,
$getParticularNodeOps,
$getUsjSelectionFromEditor,
$getRangeFromUsjSelection,
$getReplaceEmbedOps,
$insertNote,
$selectNote,
AnnotationPlugin,
AnnotationRef,
ArrowNavigationPlugin,
CharNodePlugin,
ClipboardPlugin,
CommandMenuPlugin,
ContextMenuPlugin,
DeltaOnChangePlugin,
DeltaOp,
EditablePlugin,
getDefaultViewOptions,
getInsertedNodeKey,
getViewClassList,
LoadStatePlugin,
NoteNodePlugin,
OnSelectionChangePlugin,
ParaNodePlugin,
pasteSelection,
pasteSelectionAsPlainText,
StateChangePlugin,
StateChangeSnapshot,
TextDirectionPlugin,
TextSpacingPlugin,
UsjNodeOptions,
UsjNodesMenuPlugin,
usjReactNodes,
} from "shared-react";
type Mutable<T> = {
-readonly [P in keyof T]: T[P];
};
const editorConfig: Mutable<InitialConfigType> = {
namespace: "platformEditor",
theme: editorTheme,
editable: true,
editorState: undefined,
// Handling of errors during update
onError(error) {
throw error;
},
nodes: [TypedMarkNode, ...usjReactNodes],
};
const defaultViewOptions = getDefaultViewOptions();
const defaultNodeOptions: UsjNodeOptions = {};
const defaultOptions: EditorOptions = {};
function Placeholder(): ReactElement {
return <div className="editor-placeholder">Enter some Scripture...</div>;
}
/**
* Scripture Editor for USJ. Created for use in [Platform](https://platform.bible).
* @see https://github.com/usfm-bible/tcdocs/blob/usj/grammar/usj.js
*
* @param ref - Forward reference for the editor.
* @param defaultUsj - Default USJ Scripture data.
* @param scrRef - Scripture reference that controls the cursor in the Scripture.
* @param onScrRefChange - Scripture reference set callback function when the reference
* changes in the editor as the cursor moves.
* @param onSelectionChange - Callback function when the cursor selection changes.
* @param onUsjChange - Callback function when USJ Scripture data has changed.
* @param options - Options to configure the editor.
* @param logger - Logger instance.
* @returns the editor element.
*/
const Editor = forwardRef(function Editor<TLogger extends LoggerBasic>(
{
defaultUsj,
scrRef,
onScrRefChange,
onSelectionChange,
onUsjChange,
onStateChange,
options,
logger,
children,
}: PropsWithChildren<EditorProps<TLogger>>,
ref: ForwardedRef<EditorRef>,
): ReactElement {
const editorRef = useRef<LexicalEditor | null>(null);
const annotationRef = useRef<AnnotationRef | null>(null);
const toolbarEndRef = useRef<HTMLDivElement>(null);
const editedUsjRef = useRef(defaultUsj);
const expandedNoteKeyRef = useRef<string | undefined>();
const [usj, setUsj] = useState(defaultUsj);
const [loadTrigger, setLoadTrigger] = useState(0);
const [contextMarker, setContextMarker] = useState<string | undefined>();
const {
isReadonly = false,
hasExternalUI = false,
hasSpellCheck = false,
textDirection = "ltr",
markerMenuTrigger = "\\",
view: viewOptions = defaultViewOptions,
nodes: nodeOptions = defaultNodeOptions,
debug = false,
contextMenu: contextMenuOptions,
} = options ?? defaultOptions;
editorConfig.editable = !isReadonly;
editorUsjAdaptor.initialize(logger);
useImperativeHandle(ref, () => ({
focus() {
editorRef.current?.focus();
},
undo() {
editorRef.current?.dispatchCommand(UNDO_COMMAND, undefined);
},
redo() {
editorRef.current?.dispatchCommand(REDO_COMMAND, undefined);
},
cut() {
editorRef.current?.dispatchCommand(CUT_COMMAND, null);
},
copy() {
editorRef.current?.dispatchCommand(COPY_COMMAND, null);
},
paste() {
if (editorRef.current) pasteSelection(editorRef.current);
},
pastePlainText() {
if (editorRef.current) pasteSelectionAsPlainText(editorRef.current);
},
getUsj() {
return editedUsjRef.current;
},
setUsj(incomingUsj) {
if (!deepEqual(editedUsjRef.current, incomingUsj)) {
editedUsjRef.current = incomingUsj;
// This can happen when using `applyUpdate` since `usj` won't change.
const shouldForceReload = deepEqual(usj, incomingUsj);
setUsj(incomingUsj);
if (shouldForceReload) setLoadTrigger((prev) => prev + 1);
}
},
applyUpdate(ops, source = "remote") {
editorRef.current?.update(
() => {
if (source === "remote") $addUpdateTag(DELTA_CHANGE_TAG);
$applyUpdate(ops, viewOptions, nodeOptions, logger);
},
{ discrete: true },
);
const editorState = editorRef.current?.getEditorState();
if (!editorState) return;
const newUsj = editorUsjAdaptor.deserializeEditorState(editorState);
if (newUsj) {
const isEdited = !deepEqual(editedUsjRef.current, newUsj);
if (isEdited) editedUsjRef.current = newUsj;
if (isEdited || !deepEqual(usj, newUsj)) {
const insertedNodeKey = getInsertedNodeKey(ops, editorState);
onUsjChange?.(newUsj, ops, source, insertedNodeKey);
}
}
},
replaceEmbedUpdate(embedNodeKey, insertEmbedOps) {
const ops = editorRef.current?.read(() => $getReplaceEmbedOps(embedNodeKey, insertEmbedOps));
if (ops) this.applyUpdate(ops);
},
getSelection() {
return editorRef.current?.read($getUsjSelectionFromEditor);
},
setSelection(selection) {
editorRef.current?.update(() => {
const editorSelection = $getRangeFromUsjSelection(selection);
if (editorSelection !== undefined) {
$setSelection(editorSelection);
$addUpdateTag(SELECTION_CHANGE_TAG);
}
});
},
setAnnotation(selection, type, id, onClick, onRemove) {
annotationRef.current?.setAnnotation(
selection,
externalTypedMarkType(type),
id,
onClick,
onRemove,
);
},
removeAnnotation(type, id) {
annotationRef.current?.removeAnnotation(externalTypedMarkType(type), id);
},
formatPara(blockMarker) {
editorRef.current?.update(() => {
const selection = $getSelection();
if ($isRangeSelection(selection)) {
$setBlocksType(selection, () => $createParaNode(blockMarker));
}
});
},
getElementByKey(nodeKey: string): HTMLElement | undefined {
return editorRef.current?.read(
() => editorRef.current?.getElementByKey(nodeKey) ?? undefined,
);
},
insertMarker(marker) {
if (isReadonly) throw new Error("Cannot insert marker in readonly mode");
if (!scrRef) throw new Error("Cannot insert marker without a scripture reference (scrRef)");
if (!editorRef.current) return;
if (!isUsjMarkerSupported(marker)) throw new Error(`Unsupported marker '${marker}'`);
const markerAction = getUsjMarkerAction(
marker,
expandedNoteKeyRef,
viewOptions,
nodeOptions,
logger,
);
markerAction.action({ editor: editorRef.current, reference: scrRef });
},
insertNote(marker, caller, selection) {
editorRef.current?.update(() => {
const noteNode = $insertNote(
marker,
caller,
selection,
scrRef,
viewOptions,
nodeOptions,
logger,
);
if (noteNode && !noteNode.getIsCollapsed()) expandedNoteKeyRef.current = noteNode.getKey();
});
},
selectNote(noteKeyOrIndex) {
editorRef.current?.update(() => {
const noteNode = $getNoteByKeyOrIndex(noteKeyOrIndex);
if (noteNode) {
$selectNote(noteNode, viewOptions);
if (!noteNode.getIsCollapsed()) expandedNoteKeyRef.current = noteNode.getKey();
}
});
},
getNoteOps(noteKeyOrIndex) {
return editorRef.current?.read(() => {
const noteNode = $getNoteByKeyOrIndex(noteKeyOrIndex);
if (!noteNode) return undefined;
return $getParticularNodeOps(noteNode);
});
},
get toolbarEndRef() {
return toolbarEndRef;
},
}));
const handleChange = useCallback(
(editorState: EditorState, _editor: LexicalEditor, tags: Set<string>, ops: DeltaOp[]) => {
if (blackListedChangeTags.some((tag) => tags.has(tag))) return;
const newUsj = editorUsjAdaptor.deserializeEditorState(editorState);
if (newUsj) {
const isEdited = !deepEqual(editedUsjRef.current, newUsj);
if (isEdited) editedUsjRef.current = newUsj;
if (isEdited || !deepEqual(usj, newUsj)) {
const source = tags.has(DELTA_CHANGE_TAG) ? "remote" : "local";
const insertedNodeKey = getInsertedNodeKey(ops, editorState);
onUsjChange?.(newUsj, ops, source, insertedNodeKey);
}
}
},
[usj, onUsjChange],
);
const handleStateChange = useCallback(
(snapshot: StateChangeSnapshot) => {
setContextMarker(snapshot.contextMarker);
onStateChange?.(snapshot);
},
[onStateChange],
);
return (
<LexicalComposer initialConfig={editorConfig}>
<EditablePlugin isEditable={!isReadonly} />
<div className="editor-container">
{hasExternalUI ? (
<StateChangePlugin onStateChange={handleStateChange} />
) : (
<div className={"editor-toolbar-container" + (isReadonly ? "-readonly" : "-editable")}>
<ToolbarPlugin
ref={toolbarEndRef}
editorRef={ref as MutableRefObject<EditorRef | null>}
isReadonly={isReadonly}
onStateChange={handleStateChange}
/>
</div>
)}
<div className="editor-inner">
<EditorRefPlugin editorRef={editorRef} />
<RichTextPlugin
contentEditable={
<ContentEditable
className={`editor-input usfm ${getViewClassList(viewOptions).join(" ")}`}
spellCheck={hasSpellCheck}
/>
}
placeholder={<Placeholder />}
ErrorBoundary={LexicalErrorBoundary}
/>
<HistoryPlugin />
{scrRef && onScrRefChange && (
<ScriptureReferencePlugin scrRef={scrRef} onScrRefChange={onScrRefChange} />
)}
{scrRef && (
<UsjNodesMenuPlugin
trigger={markerMenuTrigger}
scrRef={scrRef}
contextMarker={contextMarker}
getMarkerAction={(marker) =>
getUsjMarkerAction(marker, expandedNoteKeyRef, viewOptions, nodeOptions, logger)
}
/>
)}
<LoadStatePlugin
key={loadTrigger}
scripture={usj}
scriptureRef={editedUsjRef}
nodeOptions={nodeOptions}
editorAdaptor={usjEditorAdaptor}
viewOptions={viewOptions}
logger={logger}
/>
<OnSelectionChangePlugin onChange={onSelectionChange} />
<DeltaOnChangePlugin
onChange={handleChange}
ignoreSelectionChange
ignoreHistoryMergeTagChange
/>
<AnnotationPlugin ref={annotationRef} logger={logger} />
<ArrowNavigationPlugin viewOptions={viewOptions} />
<CharNodePlugin />
<ClipboardPlugin />
<CommandMenuPlugin logger={logger} />
<ContextMenuPlugin options={contextMenuOptions} />
<NoteNodePlugin
expandedNoteKeyRef={expandedNoteKeyRef}
nodeOptions={nodeOptions}
viewOptions={viewOptions}
logger={logger}
/>
<ParaNodePlugin />
<TextDirectionPlugin textDirection={textDirection} />
<TextSpacingPlugin />
{children}
</div>
{debug && <TreeViewPlugin />}
</div>
</LexicalComposer>
);
});
export default Editor;