@beyondwork/docx-react-component 1.0.1 → 1.0.2

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 (172) hide show
  1. package/README.md +44 -104
  2. package/package.json +76 -46
  3. package/src/README.md +85 -0
  4. package/src/api/README.md +22 -0
  5. package/src/api/public-types.ts +525 -0
  6. package/src/compare/diff-engine.ts +530 -0
  7. package/src/compare/export-redlines.ts +162 -0
  8. package/src/compare/snapshot.ts +37 -0
  9. package/src/component-inventory.md +99 -0
  10. package/src/core/README.md +10 -0
  11. package/src/core/commands/README.md +3 -0
  12. package/src/core/commands/formatting-commands.ts +161 -0
  13. package/src/core/commands/image-commands.ts +144 -0
  14. package/src/core/commands/index.ts +1013 -0
  15. package/src/core/commands/list-commands.ts +370 -0
  16. package/src/core/commands/review-commands.ts +108 -0
  17. package/src/core/commands/text-commands.ts +119 -0
  18. package/src/core/schema/README.md +3 -0
  19. package/src/core/schema/text-schema.ts +512 -0
  20. package/src/core/selection/README.md +3 -0
  21. package/src/core/selection/mapping.ts +238 -0
  22. package/src/core/selection/review-anchors.ts +94 -0
  23. package/src/core/state/README.md +3 -0
  24. package/src/core/state/editor-state.ts +580 -0
  25. package/src/core/state/text-transaction.ts +276 -0
  26. package/src/formats/xlsx/io/parse-shared-strings.ts +41 -0
  27. package/src/formats/xlsx/io/parse-sheet.ts +289 -0
  28. package/src/formats/xlsx/io/parse-styles.ts +57 -0
  29. package/src/formats/xlsx/io/parse-workbook.ts +75 -0
  30. package/src/formats/xlsx/io/xlsx-session.ts +306 -0
  31. package/src/formats/xlsx/model/cell.ts +189 -0
  32. package/src/formats/xlsx/model/sheet.ts +244 -0
  33. package/src/formats/xlsx/model/styles.ts +118 -0
  34. package/src/formats/xlsx/model/workbook.ts +449 -0
  35. package/src/index.ts +45 -0
  36. package/src/io/README.md +10 -0
  37. package/src/io/docx-session.ts +1763 -0
  38. package/src/io/export/README.md +3 -0
  39. package/src/io/export/export-session.ts +165 -0
  40. package/src/io/export/minimal-docx.ts +115 -0
  41. package/src/io/export/reattach-preserved-parts.ts +54 -0
  42. package/src/io/export/serialize-comments.ts +876 -0
  43. package/src/io/export/serialize-footnotes.ts +217 -0
  44. package/src/io/export/serialize-headers-footers.ts +200 -0
  45. package/src/io/export/serialize-main-document.ts +982 -0
  46. package/src/io/export/serialize-numbering.ts +97 -0
  47. package/src/io/export/serialize-revisions.ts +389 -0
  48. package/src/io/export/serialize-runtime-revisions.ts +265 -0
  49. package/src/io/export/serialize-tables.ts +147 -0
  50. package/src/io/export/split-review-boundaries.ts +194 -0
  51. package/src/io/normalize/README.md +3 -0
  52. package/src/io/normalize/normalize-text.ts +437 -0
  53. package/src/io/ooxml/README.md +3 -0
  54. package/src/io/ooxml/parse-comments.ts +779 -0
  55. package/src/io/ooxml/parse-complex-content.ts +287 -0
  56. package/src/io/ooxml/parse-fields.ts +438 -0
  57. package/src/io/ooxml/parse-footnotes.ts +403 -0
  58. package/src/io/ooxml/parse-headers-footers.ts +483 -0
  59. package/src/io/ooxml/parse-inline-media.ts +431 -0
  60. package/src/io/ooxml/parse-main-document.ts +1846 -0
  61. package/src/io/ooxml/parse-numbering.ts +425 -0
  62. package/src/io/ooxml/parse-revisions.ts +658 -0
  63. package/src/io/ooxml/parse-shapes.ts +271 -0
  64. package/src/io/ooxml/parse-tables.ts +568 -0
  65. package/src/io/ooxml/parse-theme.ts +314 -0
  66. package/src/io/ooxml/part-manifest.ts +136 -0
  67. package/src/io/ooxml/revision-boundaries.ts +351 -0
  68. package/src/io/opc/README.md +3 -0
  69. package/src/io/opc/corrupt-package.ts +166 -0
  70. package/src/io/opc/docx-package.ts +74 -0
  71. package/src/io/opc/package-reader.ts +320 -0
  72. package/src/io/opc/package-writer.ts +273 -0
  73. package/src/legal/bookmarks.ts +196 -0
  74. package/src/legal/cross-references.ts +356 -0
  75. package/src/legal/defined-terms.ts +203 -0
  76. package/src/model/README.md +3 -0
  77. package/src/model/canonical-document.ts +1911 -0
  78. package/src/model/cds-1.0.0.ts +196 -0
  79. package/src/model/snapshot.ts +393 -0
  80. package/src/preservation/README.md +3 -0
  81. package/src/preservation/markup-compatibility.ts +48 -0
  82. package/src/preservation/opaque-fragment-store.ts +89 -0
  83. package/src/preservation/opaque-region.ts +233 -0
  84. package/src/preservation/package-preservation.ts +120 -0
  85. package/src/preservation/preserved-part-manifest.ts +56 -0
  86. package/src/preservation/relationship-retention.ts +57 -0
  87. package/src/preservation/store.ts +185 -0
  88. package/src/review/README.md +16 -0
  89. package/src/review/store/README.md +3 -0
  90. package/src/review/store/comment-anchors.ts +70 -0
  91. package/src/review/store/comment-remapping.ts +154 -0
  92. package/src/review/store/comment-store.ts +331 -0
  93. package/src/review/store/comment-thread.ts +109 -0
  94. package/src/review/store/revision-actions.ts +394 -0
  95. package/src/review/store/revision-store.ts +303 -0
  96. package/src/review/store/revision-types.ts +168 -0
  97. package/src/review/store/runtime-comment-store.ts +43 -0
  98. package/src/runtime/README.md +3 -0
  99. package/src/runtime/ai-action-policy.ts +764 -0
  100. package/src/runtime/document-runtime.ts +967 -0
  101. package/src/runtime/read-only-diagnostics-runtime.ts +232 -0
  102. package/src/runtime/review-runtime.ts +44 -0
  103. package/src/runtime/revision-runtime.ts +107 -0
  104. package/src/runtime/session-capabilities.ts +138 -0
  105. package/src/runtime/surface-projection.ts +570 -0
  106. package/src/runtime/table-commands.ts +87 -0
  107. package/src/runtime/table-schema.ts +140 -0
  108. package/src/runtime/virtualized-rendering.ts +258 -0
  109. package/src/ui/README.md +30 -0
  110. package/src/ui/WordReviewEditor.tsx +1504 -0
  111. package/src/ui/comments/README.md +3 -0
  112. package/src/ui/compatibility/README.md +3 -0
  113. package/src/ui/editor-surface/README.md +3 -0
  114. package/src/ui/headless/comment-decoration-model.ts +124 -0
  115. package/src/ui/headless/revision-decoration-model.ts +128 -0
  116. package/src/ui/headless/selection-helpers.ts +34 -0
  117. package/src/ui/headless/use-editor-keyboard.ts +98 -0
  118. package/src/ui/review/README.md +3 -0
  119. package/src/ui/shared/revision-filters.ts +31 -0
  120. package/src/ui/status/README.md +3 -0
  121. package/src/ui/theme/README.md +3 -0
  122. package/src/ui/toolbar/README.md +3 -0
  123. package/src/ui-tailwind/chrome/tw-alert-banner.tsx +48 -0
  124. package/src/ui-tailwind/chrome/tw-selection-toolbar.tsx +44 -0
  125. package/src/ui-tailwind/chrome/tw-unsaved-modal.tsx +58 -0
  126. package/src/ui-tailwind/chrome/use-before-unload.ts +20 -0
  127. package/src/ui-tailwind/editor-surface/pm-command-bridge.ts +139 -0
  128. package/src/ui-tailwind/editor-surface/pm-decorations.ts +98 -0
  129. package/src/ui-tailwind/editor-surface/pm-position-map.ts +123 -0
  130. package/src/ui-tailwind/editor-surface/pm-schema.ts +452 -0
  131. package/src/ui-tailwind/editor-surface/pm-state-from-snapshot.ts +327 -0
  132. package/src/ui-tailwind/editor-surface/search-plugin.ts +157 -0
  133. package/src/ui-tailwind/editor-surface/tw-caret.tsx +12 -0
  134. package/src/ui-tailwind/editor-surface/tw-editor-surface.tsx +150 -0
  135. package/src/ui-tailwind/editor-surface/tw-inline-token.tsx +118 -0
  136. package/src/ui-tailwind/editor-surface/tw-opaque-block.tsx +52 -0
  137. package/src/ui-tailwind/editor-surface/tw-paragraph-block.tsx +151 -0
  138. package/src/ui-tailwind/editor-surface/tw-prosemirror-surface.tsx +215 -0
  139. package/src/ui-tailwind/editor-surface/tw-segment-view.tsx +111 -0
  140. package/src/ui-tailwind/editor-surface/tw-table-node-view.tsx +122 -0
  141. package/src/ui-tailwind/index.ts +61 -0
  142. package/src/ui-tailwind/review/tw-comment-sidebar.tsx +276 -0
  143. package/src/ui-tailwind/review/tw-health-panel.tsx +120 -0
  144. package/src/ui-tailwind/review/tw-review-rail.tsx +120 -0
  145. package/src/ui-tailwind/review/tw-revision-sidebar.tsx +164 -0
  146. package/src/ui-tailwind/status/tw-status-bar.tsx +58 -0
  147. package/src/ui-tailwind/theme/editor-theme.css +190 -0
  148. package/src/ui-tailwind/toolbar/tw-toolbar-icon-button.tsx +48 -0
  149. package/src/ui-tailwind/toolbar/tw-toolbar.tsx +231 -0
  150. package/src/ui-tailwind/tw-review-workspace.tsx +140 -0
  151. package/src/validation/README.md +3 -0
  152. package/src/validation/compatibility-engine.ts +317 -0
  153. package/src/validation/compatibility-report.ts +160 -0
  154. package/src/validation/diagnostics.ts +203 -0
  155. package/src/validation/import-diagnostics.ts +128 -0
  156. package/src/validation/low-priority-word-surfaces.ts +373 -0
  157. package/dist/chunk-32W6IVQE.js +0 -7725
  158. package/dist/chunk-32W6IVQE.js.map +0 -1
  159. package/dist/index.cjs +0 -23722
  160. package/dist/index.cjs.map +0 -1
  161. package/dist/index.d.cts +0 -7
  162. package/dist/index.d.ts +0 -7
  163. package/dist/index.js +0 -16011
  164. package/dist/index.js.map +0 -1
  165. package/dist/public-types-DqCURAz8.d.cts +0 -1152
  166. package/dist/public-types-DqCURAz8.d.ts +0 -1152
  167. package/dist/tailwind.cjs +0 -8295
  168. package/dist/tailwind.cjs.map +0 -1
  169. package/dist/tailwind.d.cts +0 -323
  170. package/dist/tailwind.d.ts +0 -323
  171. package/dist/tailwind.js +0 -553
  172. package/dist/tailwind.js.map +0 -1
@@ -0,0 +1,1013 @@
1
+ import {
2
+ createSelectionSnapshot,
3
+ type CanonicalDocumentEnvelope,
4
+ type CommentThreadRecord,
5
+ type EditorState,
6
+ type EditorWarning,
7
+ normalizeCommentThreadRecord,
8
+ type SelectionSnapshot,
9
+ } from "../state/editor-state.ts";
10
+ import {
11
+ areAnchorsEqual,
12
+ createEmptyMapping,
13
+ mapAnchor,
14
+ type EditorAnchorProjection,
15
+ type MappingStep,
16
+ type TransactionMapping,
17
+ } from "../selection/mapping.ts";
18
+ import {
19
+ createAcceptRevisionCommand,
20
+ createRejectRevisionCommand,
21
+ type ReviewCommand,
22
+ } from "./review-commands.ts";
23
+ import {
24
+ deleteSelectionOrBackward,
25
+ deleteSelectionOrForward,
26
+ insertHardBreak,
27
+ insertTab,
28
+ insertText,
29
+ splitParagraph,
30
+ } from "./text-commands.ts";
31
+ import { remapCommentThreads } from "../../review/store/comment-remapping.ts";
32
+ import { applyRevisionRuntimeCommand } from "../../runtime/revision-runtime.ts";
33
+ import type { RevisionStore } from "../../review/store/revision-store.ts";
34
+
35
+ export interface CommandOrigin {
36
+ source:
37
+ | "keyboard"
38
+ | "toolbar"
39
+ | "context_menu"
40
+ | "comment_panel"
41
+ | "review_panel"
42
+ | "api"
43
+ | "runtime";
44
+ timestamp: string;
45
+ }
46
+
47
+ export type EditorCommand =
48
+ | {
49
+ type: "selection.set";
50
+ selection: SelectionSnapshot;
51
+ origin?: CommandOrigin;
52
+ }
53
+ | {
54
+ type: "document.replace";
55
+ document: CanonicalDocumentEnvelope;
56
+ mapping?: TransactionMapping;
57
+ selection?: SelectionSnapshot;
58
+ origin?: CommandOrigin;
59
+ }
60
+ | {
61
+ type: "text.insert";
62
+ text: string;
63
+ origin?: CommandOrigin;
64
+ }
65
+ | {
66
+ type: "text.delete-backward";
67
+ origin?: CommandOrigin;
68
+ }
69
+ | {
70
+ type: "text.delete-forward";
71
+ origin?: CommandOrigin;
72
+ }
73
+ | {
74
+ type: "text.insert-tab";
75
+ origin?: CommandOrigin;
76
+ }
77
+ | {
78
+ type: "text.insert-hard-break";
79
+ origin?: CommandOrigin;
80
+ }
81
+ | {
82
+ type: "paragraph.split";
83
+ origin?: CommandOrigin;
84
+ }
85
+ | {
86
+ type: "runtime.set-read-only";
87
+ readOnly: boolean;
88
+ origin?: CommandOrigin;
89
+ }
90
+ | {
91
+ type: "runtime.focus";
92
+ focused: boolean;
93
+ origin?: CommandOrigin;
94
+ }
95
+ | {
96
+ type: "warning.add";
97
+ warning: EditorWarning;
98
+ origin?: CommandOrigin;
99
+ }
100
+ | {
101
+ type: "warning.clear";
102
+ warningId: string;
103
+ origin?: CommandOrigin;
104
+ }
105
+ | {
106
+ type: "comment.add";
107
+ comment: CommentThreadRecord;
108
+ origin?: CommandOrigin;
109
+ }
110
+ | {
111
+ type: "comment.open";
112
+ commentId: string;
113
+ origin?: CommandOrigin;
114
+ }
115
+ | {
116
+ type: "comment.resolve";
117
+ commentId: string;
118
+ resolvedBy?: string;
119
+ origin?: CommandOrigin;
120
+ }
121
+ | {
122
+ type: "comment.reopen";
123
+ commentId: string;
124
+ origin?: CommandOrigin;
125
+ }
126
+ | {
127
+ type: "comment.add-reply";
128
+ commentId: string;
129
+ body: string;
130
+ authorId?: string;
131
+ origin?: CommandOrigin;
132
+ }
133
+ | {
134
+ type: "comment.edit-body";
135
+ commentId: string;
136
+ body: string;
137
+ origin?: CommandOrigin;
138
+ }
139
+ | {
140
+ type: "change.accept";
141
+ changeId: string;
142
+ origin?: CommandOrigin;
143
+ }
144
+ | {
145
+ type: "change.reject";
146
+ changeId: string;
147
+ origin?: CommandOrigin;
148
+ }
149
+ | {
150
+ type: "change.accept-all";
151
+ origin?: CommandOrigin;
152
+ }
153
+ | {
154
+ type: "change.reject-all";
155
+ origin?: CommandOrigin;
156
+ }
157
+ | {
158
+ type: "history.undo";
159
+ origin?: CommandOrigin;
160
+ }
161
+ | {
162
+ type: "history.redo";
163
+ origin?: CommandOrigin;
164
+ };
165
+
166
+ export interface TransactionEffects {
167
+ warningsAdded: EditorWarning[];
168
+ warningsCleared: Array<{ warningId: string; code: EditorWarning["code"] }>;
169
+ commentAdded?: { commentId: string; anchor: EditorAnchorProjection };
170
+ commentResolved?: { commentId: string };
171
+ commentReopened?: { commentId: string };
172
+ commentReplyAdded?: { commentId: string };
173
+ commentBodyEdited?: { commentId: string };
174
+ changeAccepted?: { changeId: string };
175
+ changeRejected?: { changeId: string };
176
+ }
177
+
178
+ export interface EditorTransaction {
179
+ nextState: EditorState;
180
+ mapping: TransactionMapping;
181
+ effects: TransactionEffects;
182
+ historyBoundary: "push" | "skip";
183
+ markDirty: boolean;
184
+ }
185
+
186
+ export interface CommandExecutionContext {
187
+ timestamp: string;
188
+ }
189
+
190
+ export function executeEditorCommand(
191
+ state: EditorState,
192
+ command: Exclude<EditorCommand, { type: "history.undo" } | { type: "history.redo" }>,
193
+ context: CommandExecutionContext,
194
+ ): EditorTransaction {
195
+ switch (command.type) {
196
+ case "selection.set":
197
+ return createTransaction(
198
+ {
199
+ ...state,
200
+ selection: normalizeSelection(command.selection),
201
+ },
202
+ {
203
+ historyBoundary: "skip",
204
+ markDirty: false,
205
+ },
206
+ );
207
+ case "document.replace": {
208
+ const mapping = command.mapping ?? createEmptyMapping();
209
+ const selection =
210
+ command.selection ?? remapSelection(state.selection, mapping);
211
+ const reviewState = remapReviewStateAfterContentChange(
212
+ state,
213
+ command.document,
214
+ mapping,
215
+ );
216
+
217
+ return createTransaction(
218
+ {
219
+ ...state,
220
+ document: reviewState.document,
221
+ selection,
222
+ warnings: reviewState.warnings,
223
+ runtime: {
224
+ ...state.runtime,
225
+ activeCommentId: reviewState.activeCommentId,
226
+ },
227
+ compatibility: {
228
+ ...state.compatibility,
229
+ generatedAt: context.timestamp,
230
+ warnings: reviewState.warnings,
231
+ featureEntries: state.compatibility.featureEntries.map((entry) =>
232
+ entry.affectedAnchor
233
+ ? {
234
+ ...entry,
235
+ affectedAnchor: mapAnchor(entry.affectedAnchor, mapping),
236
+ }
237
+ : entry,
238
+ ),
239
+ },
240
+ },
241
+ {
242
+ historyBoundary: "push",
243
+ markDirty: true,
244
+ mapping,
245
+ effects: reviewState.effects,
246
+ },
247
+ );
248
+ }
249
+ case "text.insert":
250
+ return applyTextCommand(state, context.timestamp, (document, selection) =>
251
+ insertText(document, selection, command.text, context),
252
+ );
253
+ case "text.delete-backward":
254
+ return applyTextCommand(state, context.timestamp, (document, selection) =>
255
+ deleteSelectionOrBackward(document, selection, context),
256
+ );
257
+ case "text.delete-forward":
258
+ return applyTextCommand(state, context.timestamp, (document, selection) =>
259
+ deleteSelectionOrForward(document, selection, context),
260
+ );
261
+ case "text.insert-tab":
262
+ return applyTextCommand(state, context.timestamp, (document, selection) =>
263
+ insertTab(document, selection, context),
264
+ );
265
+ case "text.insert-hard-break":
266
+ return applyTextCommand(state, context.timestamp, (document, selection) =>
267
+ insertHardBreak(document, selection, context),
268
+ );
269
+ case "paragraph.split":
270
+ return applyTextCommand(state, context.timestamp, (document, selection) =>
271
+ splitParagraph(document, selection, context),
272
+ );
273
+ case "runtime.set-read-only":
274
+ return createTransaction(
275
+ {
276
+ ...state,
277
+ readOnly: command.readOnly,
278
+ },
279
+ {
280
+ historyBoundary: "skip",
281
+ markDirty: false,
282
+ },
283
+ );
284
+ case "runtime.focus":
285
+ return createTransaction(
286
+ {
287
+ ...state,
288
+ runtime: {
289
+ ...state.runtime,
290
+ hasFocus: command.focused,
291
+ },
292
+ },
293
+ {
294
+ historyBoundary: "skip",
295
+ markDirty: false,
296
+ },
297
+ );
298
+ case "warning.add": {
299
+ if (state.warnings.some((warning) => warning.warningId === command.warning.warningId)) {
300
+ return createTransaction(state, {
301
+ historyBoundary: "skip",
302
+ markDirty: false,
303
+ });
304
+ }
305
+
306
+ const warnings = [...state.warnings, command.warning];
307
+ return createTransaction(
308
+ {
309
+ ...state,
310
+ warnings,
311
+ compatibility: {
312
+ ...state.compatibility,
313
+ generatedAt: context.timestamp,
314
+ warnings,
315
+ },
316
+ },
317
+ {
318
+ historyBoundary: "skip",
319
+ markDirty: false,
320
+ effects: {
321
+ warningsAdded: [command.warning],
322
+ },
323
+ },
324
+ );
325
+ }
326
+ case "warning.clear": {
327
+ const existing = state.warnings.find((warning) => warning.warningId === command.warningId);
328
+
329
+ if (!existing) {
330
+ return createTransaction(state, {
331
+ historyBoundary: "skip",
332
+ markDirty: false,
333
+ });
334
+ }
335
+
336
+ const warnings = state.warnings.filter((warning) => warning.warningId !== command.warningId);
337
+ return createTransaction(
338
+ {
339
+ ...state,
340
+ warnings,
341
+ compatibility: {
342
+ ...state.compatibility,
343
+ generatedAt: context.timestamp,
344
+ warnings,
345
+ },
346
+ },
347
+ {
348
+ historyBoundary: "skip",
349
+ markDirty: false,
350
+ effects: {
351
+ warningsCleared: [
352
+ {
353
+ warningId: existing.warningId,
354
+ code: existing.code,
355
+ },
356
+ ],
357
+ },
358
+ },
359
+ );
360
+ }
361
+ case "comment.add": {
362
+ const comments = {
363
+ ...state.document.review.comments,
364
+ [command.comment.commentId]: normalizeCommentThreadRecord(command.comment),
365
+ };
366
+
367
+ return createTransaction(
368
+ {
369
+ ...state,
370
+ document: {
371
+ ...state.document,
372
+ updatedAt: context.timestamp,
373
+ review: {
374
+ ...state.document.review,
375
+ comments,
376
+ },
377
+ },
378
+ runtime: {
379
+ ...state.runtime,
380
+ activeCommentId: command.comment.commentId,
381
+ },
382
+ },
383
+ {
384
+ historyBoundary: "push",
385
+ markDirty: true,
386
+ effects: {
387
+ commentAdded: {
388
+ commentId: command.comment.commentId,
389
+ anchor: command.comment.anchor,
390
+ },
391
+ },
392
+ },
393
+ );
394
+ }
395
+ case "comment.open":
396
+ return createTransaction(
397
+ {
398
+ ...state,
399
+ runtime: {
400
+ ...state.runtime,
401
+ activeCommentId: command.commentId,
402
+ },
403
+ },
404
+ {
405
+ historyBoundary: "skip",
406
+ markDirty: false,
407
+ },
408
+ );
409
+ case "comment.resolve": {
410
+ const existing = state.document.review.comments[command.commentId];
411
+ if (!existing) {
412
+ return createTransaction(state, {
413
+ historyBoundary: "skip",
414
+ markDirty: false,
415
+ });
416
+ }
417
+
418
+ const comments = {
419
+ ...state.document.review.comments,
420
+ [command.commentId]: {
421
+ ...existing,
422
+ status: (existing.anchor.kind === "detached" ? "detached" : "resolved") as "detached" | "resolved",
423
+ resolution: {
424
+ resolvedAt: context.timestamp,
425
+ resolvedBy:
426
+ command.resolvedBy ??
427
+ existing.createdBy ??
428
+ existing.authorId ??
429
+ existing.entries?.[0]?.authorId ??
430
+ "unknown",
431
+ },
432
+ isResolved: true,
433
+ resolvedAt: context.timestamp,
434
+ },
435
+ };
436
+
437
+ return createTransaction(
438
+ {
439
+ ...state,
440
+ document: {
441
+ ...state.document,
442
+ updatedAt: context.timestamp,
443
+ review: {
444
+ ...state.document.review,
445
+ comments,
446
+ },
447
+ },
448
+ },
449
+ {
450
+ historyBoundary: "push",
451
+ markDirty: true,
452
+ effects: {
453
+ commentResolved: {
454
+ commentId: command.commentId,
455
+ },
456
+ },
457
+ },
458
+ );
459
+ }
460
+ case "comment.reopen": {
461
+ const existingThread = state.document.review.comments[command.commentId];
462
+ if (!existingThread || existingThread.status === "detached") {
463
+ return createTransaction(state, { historyBoundary: "skip", markDirty: false });
464
+ }
465
+ const reopenedComments = {
466
+ ...state.document.review.comments,
467
+ [command.commentId]: {
468
+ ...existingThread,
469
+ status: "open" as const,
470
+ isResolved: false,
471
+ resolvedAt: undefined,
472
+ resolution: undefined,
473
+ },
474
+ };
475
+ return createTransaction(
476
+ {
477
+ ...state,
478
+ document: {
479
+ ...state.document,
480
+ updatedAt: context.timestamp,
481
+ review: { ...state.document.review, comments: reopenedComments },
482
+ },
483
+ runtime: { ...state.runtime, activeCommentId: command.commentId },
484
+ },
485
+ {
486
+ historyBoundary: "push",
487
+ markDirty: true,
488
+ effects: { commentReopened: { commentId: command.commentId } },
489
+ },
490
+ );
491
+ }
492
+ case "comment.add-reply": {
493
+ const threadForReply = state.document.review.comments[command.commentId];
494
+ if (!threadForReply) {
495
+ return createTransaction(state, { historyBoundary: "skip", markDirty: false });
496
+ }
497
+ // Block reply on resolved or detached threads (must reopen first)
498
+ if (threadForReply.status === "resolved" || threadForReply.status === "detached") {
499
+ return createTransaction(state, { historyBoundary: "skip", markDirty: false });
500
+ }
501
+ const entryId = `${command.commentId}-entry-${(threadForReply.entries?.length ?? 0) + 1}`;
502
+ const newEntry = {
503
+ entryId,
504
+ authorId: command.authorId ?? threadForReply.createdBy ?? "unknown",
505
+ body: command.body,
506
+ createdAt: context.timestamp,
507
+ };
508
+ const updatedThread = {
509
+ ...threadForReply,
510
+ entries: [...(threadForReply.entries ?? []), newEntry],
511
+ };
512
+ const replyComments = {
513
+ ...state.document.review.comments,
514
+ [command.commentId]: updatedThread,
515
+ };
516
+ return createTransaction(
517
+ {
518
+ ...state,
519
+ document: {
520
+ ...state.document,
521
+ updatedAt: context.timestamp,
522
+ review: { ...state.document.review, comments: replyComments },
523
+ },
524
+ },
525
+ {
526
+ historyBoundary: "push",
527
+ markDirty: true,
528
+ effects: { commentReplyAdded: { commentId: command.commentId } },
529
+ },
530
+ );
531
+ }
532
+ case "comment.edit-body": {
533
+ const threadToEdit = state.document.review.comments[command.commentId];
534
+ if (!threadToEdit || !threadToEdit.entries?.length) {
535
+ return createTransaction(state, { historyBoundary: "skip", markDirty: false });
536
+ }
537
+ const editedEntries = [...threadToEdit.entries];
538
+ editedEntries[0] = { ...editedEntries[0], body: command.body };
539
+ const editedThread = { ...threadToEdit, entries: editedEntries };
540
+ const editedComments = {
541
+ ...state.document.review.comments,
542
+ [command.commentId]: editedThread,
543
+ };
544
+ return createTransaction(
545
+ {
546
+ ...state,
547
+ document: {
548
+ ...state.document,
549
+ updatedAt: context.timestamp,
550
+ review: { ...state.document.review, comments: editedComments },
551
+ },
552
+ },
553
+ {
554
+ historyBoundary: "push",
555
+ markDirty: true,
556
+ effects: { commentBodyEdited: { commentId: command.commentId } },
557
+ },
558
+ );
559
+ }
560
+ case "change.accept":
561
+ return applyReviewCommand(
562
+ state,
563
+ createAcceptRevisionCommand(command.changeId, command.origin),
564
+ context.timestamp,
565
+ );
566
+ case "change.reject":
567
+ return applyReviewCommand(
568
+ state,
569
+ createRejectRevisionCommand(command.changeId, command.origin),
570
+ context.timestamp,
571
+ );
572
+ case "change.accept-all":
573
+ return applyReviewCommand(
574
+ state,
575
+ {
576
+ type: "review.accept-all-revisions",
577
+ ...(command.origin ? { origin: command.origin } : {}),
578
+ },
579
+ context.timestamp,
580
+ );
581
+ case "change.reject-all":
582
+ return applyReviewCommand(
583
+ state,
584
+ {
585
+ type: "review.reject-all-revisions",
586
+ ...(command.origin ? { origin: command.origin } : {}),
587
+ },
588
+ context.timestamp,
589
+ );
590
+ }
591
+ }
592
+
593
+ export function remapSelection(
594
+ selection: SelectionSnapshot,
595
+ mapping: TransactionMapping,
596
+ ): SelectionSnapshot {
597
+ const activeRange = mapAnchor(selection.activeRange, mapping);
598
+
599
+ if (activeRange.kind === "range") {
600
+ return {
601
+ anchor: activeRange.range.from,
602
+ head: activeRange.range.to,
603
+ isCollapsed: activeRange.range.from === activeRange.range.to,
604
+ activeRange,
605
+ };
606
+ }
607
+
608
+ if (activeRange.kind === "node") {
609
+ return createSelectionSnapshot(activeRange.at, activeRange.at);
610
+ }
611
+
612
+ return {
613
+ anchor: selection.anchor,
614
+ head: selection.head,
615
+ isCollapsed: selection.anchor === selection.head,
616
+ activeRange,
617
+ };
618
+ }
619
+
620
+ export function selectionChanged(
621
+ left: SelectionSnapshot,
622
+ right: SelectionSnapshot,
623
+ ): boolean {
624
+ return (
625
+ left.anchor !== right.anchor ||
626
+ left.head !== right.head ||
627
+ left.isCollapsed !== right.isCollapsed ||
628
+ !areAnchorsEqual(left.activeRange, right.activeRange)
629
+ );
630
+ }
631
+
632
+ function createTransaction(
633
+ nextState: EditorState,
634
+ options: {
635
+ mapping?: TransactionMapping;
636
+ historyBoundary: "push" | "skip";
637
+ markDirty: boolean;
638
+ effects?: Partial<TransactionEffects>;
639
+ },
640
+ ): EditorTransaction {
641
+ return {
642
+ nextState,
643
+ mapping: options.mapping ?? createEmptyMapping(),
644
+ historyBoundary: options.historyBoundary,
645
+ markDirty: options.markDirty,
646
+ effects: {
647
+ warningsAdded: options.effects?.warningsAdded ?? [],
648
+ warningsCleared: options.effects?.warningsCleared ?? [],
649
+ commentAdded: options.effects?.commentAdded,
650
+ commentResolved: options.effects?.commentResolved,
651
+ changeAccepted: options.effects?.changeAccepted,
652
+ changeRejected: options.effects?.changeRejected,
653
+ },
654
+ };
655
+ }
656
+
657
+ function normalizeSelection(selection: SelectionSnapshot): SelectionSnapshot {
658
+ if (selection.activeRange.kind === "range") {
659
+ return {
660
+ ...selection,
661
+ anchor: selection.activeRange.range.from,
662
+ head: selection.activeRange.range.to,
663
+ isCollapsed: selection.activeRange.range.from === selection.activeRange.range.to,
664
+ };
665
+ }
666
+
667
+ if (selection.activeRange.kind === "node") {
668
+ return createSelectionSnapshot(selection.activeRange.at, selection.activeRange.at);
669
+ }
670
+
671
+ return selection;
672
+ }
673
+
674
+ function applyTextCommand(
675
+ state: EditorState,
676
+ timestamp: string,
677
+ apply: (
678
+ document: CanonicalDocumentEnvelope,
679
+ selection: SelectionSnapshot,
680
+ ) => {
681
+ document: CanonicalDocumentEnvelope;
682
+ selection: SelectionSnapshot;
683
+ mapping: TransactionMapping;
684
+ },
685
+ ): EditorTransaction {
686
+ if (state.readOnly) {
687
+ return createTransaction(state, {
688
+ historyBoundary: "skip",
689
+ markDirty: false,
690
+ });
691
+ }
692
+
693
+ const result = apply(state.document, state.selection);
694
+ const reviewState = remapReviewStateAfterContentChange(
695
+ state,
696
+ result.document,
697
+ result.mapping,
698
+ );
699
+
700
+ return createTransaction(
701
+ {
702
+ ...state,
703
+ document: reviewState.document,
704
+ selection: result.selection,
705
+ warnings: reviewState.warnings,
706
+ runtime: {
707
+ ...state.runtime,
708
+ activeCommentId: reviewState.activeCommentId,
709
+ },
710
+ },
711
+ {
712
+ historyBoundary: "push",
713
+ markDirty: true,
714
+ mapping: result.mapping,
715
+ effects: reviewState.effects,
716
+ },
717
+ );
718
+ }
719
+
720
+ function applyReviewCommand(
721
+ state: EditorState,
722
+ command: ReviewCommand,
723
+ timestamp: string,
724
+ ): EditorTransaction {
725
+ if (state.readOnly) {
726
+ return createTransaction(state, {
727
+ historyBoundary: "skip",
728
+ markDirty: false,
729
+ });
730
+ }
731
+
732
+ const result = applyRevisionRuntimeCommand({
733
+ state: {
734
+ document: state.document,
735
+ store: createRevisionStoreFromState(state),
736
+ },
737
+ command,
738
+ timestamp,
739
+ });
740
+ const hasAppliedOutcome = result.outcomes.some((outcome) => outcome.kind === "applied");
741
+
742
+ if (!hasAppliedOutcome) {
743
+ return createTransaction(state, {
744
+ historyBoundary: "skip",
745
+ markDirty: false,
746
+ });
747
+ }
748
+
749
+ let selection = state.selection;
750
+ let comments = result.document.review.comments;
751
+ let warnings = state.warnings;
752
+ let activeCommentId = state.runtime.activeCommentId;
753
+ const mappingSteps: MappingStep[] = [];
754
+
755
+ for (const entry of result.mappings) {
756
+ if (entry.steps === 0) {
757
+ continue;
758
+ }
759
+
760
+ selection = remapSelection(selection, entry.mapping);
761
+ mappingSteps.push(...entry.mapping.steps);
762
+
763
+ const remappedComments = remapCommentThreads({
764
+ comments,
765
+ mapping: entry.mapping,
766
+ nextContent: result.document.content,
767
+ existingWarnings: mapWarningsThroughMapping(warnings, entry.mapping),
768
+ });
769
+ comments = remappedComments.comments;
770
+ warnings = remappedComments.warnings;
771
+ activeCommentId =
772
+ activeCommentId && comments[activeCommentId]
773
+ ? activeCommentId
774
+ : undefined;
775
+ }
776
+
777
+ warnings = mergeDetachedRevisionWarnings(result.store, warnings);
778
+
779
+ const nextDocument = {
780
+ ...result.document,
781
+ review: {
782
+ ...result.document.review,
783
+ comments,
784
+ revisions: toEditorRevisionRecords(result.store),
785
+ },
786
+ };
787
+ const appliedRevisionIds = result.effects.appliedRevisionIds;
788
+
789
+ return createTransaction(
790
+ {
791
+ ...state,
792
+ document: nextDocument,
793
+ selection,
794
+ warnings,
795
+ runtime: {
796
+ ...state.runtime,
797
+ activeCommentId,
798
+ },
799
+ },
800
+ {
801
+ historyBoundary: "push",
802
+ markDirty: true,
803
+ mapping: combineMappingSteps(mappingSteps),
804
+ effects: {
805
+ ...buildWarningEffects(state.warnings, warnings),
806
+ changeAccepted:
807
+ command.type === "review.accept-revision" && appliedRevisionIds[0]
808
+ ? {
809
+ changeId: appliedRevisionIds[0],
810
+ }
811
+ : undefined,
812
+ changeRejected:
813
+ command.type === "review.reject-revision" && appliedRevisionIds[0]
814
+ ? {
815
+ changeId: appliedRevisionIds[0],
816
+ }
817
+ : undefined,
818
+ },
819
+ },
820
+ );
821
+ }
822
+
823
+ function remapReviewStateAfterContentChange(
824
+ state: EditorState,
825
+ nextDocument: CanonicalDocumentEnvelope,
826
+ mapping: TransactionMapping,
827
+ ): {
828
+ document: CanonicalDocumentEnvelope;
829
+ warnings: EditorWarning[];
830
+ activeCommentId?: string;
831
+ effects: Pick<TransactionEffects, "warningsAdded" | "warningsCleared">;
832
+ } {
833
+ const mappedWarnings = mapWarningsThroughMapping(state.warnings, mapping);
834
+ const remappedComments = remapCommentThreads({
835
+ comments: nextDocument.review.comments,
836
+ mapping,
837
+ nextContent: nextDocument.content,
838
+ existingWarnings: mappedWarnings,
839
+ });
840
+ const revisions = Object.fromEntries(
841
+ Object.entries(nextDocument.review.revisions).map(([changeId, revision]) => [
842
+ changeId,
843
+ {
844
+ ...revision,
845
+ anchor: mapAnchor(revision.anchor, mapping),
846
+ },
847
+ ]),
848
+ );
849
+ const activeCommentId =
850
+ state.runtime.activeCommentId &&
851
+ remappedComments.comments[state.runtime.activeCommentId]
852
+ ? state.runtime.activeCommentId
853
+ : undefined;
854
+ const warnings = remappedComments.warnings;
855
+
856
+ return {
857
+ document: {
858
+ ...nextDocument,
859
+ review: {
860
+ ...nextDocument.review,
861
+ comments: remappedComments.comments,
862
+ revisions,
863
+ },
864
+ },
865
+ warnings,
866
+ activeCommentId,
867
+ effects: buildWarningEffects(state.warnings, warnings),
868
+ };
869
+ }
870
+
871
+ function createRevisionStoreFromState(
872
+ state: Pick<EditorState, "document">,
873
+ ): RevisionStore {
874
+ return {
875
+ version: "revision-store/1",
876
+ revisions: Object.fromEntries(
877
+ Object.values(state.document.review.revisions).map((revision) => [
878
+ revision.changeId,
879
+ {
880
+ revisionId: revision.changeId,
881
+ kind: revision.kind,
882
+ anchor: revision.anchor,
883
+ authorId: revision.authorId ?? "unknown",
884
+ createdAt: revision.createdAt,
885
+ status: revision.status === "open" ? "active" : revision.status,
886
+ warningIds: [...(revision.warningIds ?? [])],
887
+ metadata: {
888
+ source: revision.metadata?.source ?? "runtime",
889
+ preserveOnlyReason: revision.metadata?.preserveOnlyReason,
890
+ importedRevisionForm: revision.metadata?.importedRevisionForm,
891
+ originalRevisionType: revision.metadata?.originalRevisionType,
892
+ ooxmlRevisionId: revision.metadata?.ooxmlRevisionId,
893
+ },
894
+ },
895
+ ]),
896
+ ),
897
+ };
898
+ }
899
+
900
+ function toEditorRevisionRecords(
901
+ store: RevisionStore,
902
+ ): EditorState["document"]["review"]["revisions"] {
903
+ return Object.fromEntries(
904
+ Object.values(store.revisions).map((revision) => [
905
+ revision.revisionId,
906
+ {
907
+ changeId: revision.revisionId,
908
+ kind: revision.kind,
909
+ anchor: revision.anchor,
910
+ authorId: revision.authorId,
911
+ createdAt: revision.createdAt,
912
+ warningIds: [...revision.warningIds],
913
+ metadata: {
914
+ source: revision.metadata.source,
915
+ preserveOnlyReason: revision.metadata.preserveOnlyReason,
916
+ importedRevisionForm: revision.metadata.importedRevisionForm,
917
+ originalRevisionType: revision.metadata.originalRevisionType,
918
+ ooxmlRevisionId: revision.metadata.ooxmlRevisionId,
919
+ },
920
+ status: revision.status === "active" ? "open" : revision.status,
921
+ },
922
+ ]),
923
+ );
924
+ }
925
+
926
+ function mapWarningsThroughMapping(
927
+ warnings: EditorWarning[],
928
+ mapping: TransactionMapping,
929
+ ): EditorWarning[] {
930
+ return warnings.map((warning) =>
931
+ warning.affectedAnchor
932
+ ? {
933
+ ...warning,
934
+ affectedAnchor: mapAnchor(warning.affectedAnchor, mapping),
935
+ }
936
+ : warning,
937
+ );
938
+ }
939
+
940
+ function buildWarningEffects(
941
+ previousWarnings: EditorWarning[],
942
+ nextWarnings: EditorWarning[],
943
+ ): Pick<TransactionEffects, "warningsAdded" | "warningsCleared"> {
944
+ const previousById = new Set(previousWarnings.map((warning) => warning.warningId));
945
+ const nextById = new Set(nextWarnings.map((warning) => warning.warningId));
946
+
947
+ return {
948
+ warningsAdded: nextWarnings.filter((warning) => !previousById.has(warning.warningId)),
949
+ warningsCleared: previousWarnings
950
+ .filter((warning) => !nextById.has(warning.warningId))
951
+ .map((warning) => ({
952
+ warningId: warning.warningId,
953
+ code: warning.code,
954
+ })),
955
+ };
956
+ }
957
+
958
+ function mergeDetachedRevisionWarnings(
959
+ store: RevisionStore,
960
+ existingWarnings: EditorWarning[],
961
+ ): EditorWarning[] {
962
+ const retainedWarnings = existingWarnings.filter(
963
+ (warning) =>
964
+ warning.code !== "revision_anchor_detached" ||
965
+ !warning.details ||
966
+ typeof warning.details.changeId !== "string" ||
967
+ store.revisions[warning.details.changeId]?.status === "detached",
968
+ );
969
+
970
+ const knownDetachedIds = new Set(
971
+ retainedWarnings
972
+ .filter((warning) => warning.code === "revision_anchor_detached")
973
+ .map((warning) =>
974
+ typeof warning.details?.changeId === "string"
975
+ ? warning.details.changeId
976
+ : undefined,
977
+ )
978
+ .filter((value): value is string => Boolean(value)),
979
+ );
980
+
981
+ const detachedWarnings = Object.values(store.revisions)
982
+ .filter(
983
+ (revision) =>
984
+ revision.status === "detached" && !knownDetachedIds.has(revision.revisionId),
985
+ )
986
+ .map((revision) => ({
987
+ warningId: `warning:revision-anchor-detached:${revision.revisionId}`,
988
+ code: "revision_anchor_detached" as const,
989
+ severity: "warning" as const,
990
+ message: `Revision ${revision.revisionId} detached after review remapping.`,
991
+ source: "review" as const,
992
+ affectedAnchor: revision.anchor.kind === "detached" ? revision.anchor : undefined,
993
+ details: {
994
+ changeId: revision.revisionId,
995
+ reason:
996
+ revision.anchor.kind === "detached"
997
+ ? revision.anchor.reason
998
+ : undefined,
999
+ },
1000
+ }));
1001
+
1002
+ return [...retainedWarnings, ...detachedWarnings];
1003
+ }
1004
+
1005
+ function combineMappingSteps(
1006
+ steps: MappingStep[],
1007
+ ): TransactionMapping {
1008
+ return steps.length > 0
1009
+ ? {
1010
+ steps,
1011
+ }
1012
+ : createEmptyMapping();
1013
+ }