-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathUndoRedo.ts
784 lines (643 loc) · 22.2 KB
/
UndoRedo.ts
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
import {equalSimpleCellAddress, simpleCellAddress, SimpleCellAddress} from './Cell'
import {RawCellContent} from './CellContentParser'
import {ClipboardCell} from './ClipboardOperations'
import {Config} from './Config'
import {InternalNamedExpression, NamedExpressionOptions} from './NamedExpressions'
import {
AddColumnsCommand,
AddRowsCommand,
ColumnsRemoval,
Operations,
RemoveColumnsCommand,
RemoveRowsCommand,
RowsRemoval
} from './Operations'
export interface UndoEntry {
doUndo(undoRedo: UndoRedo): void,
doRedo(undoRedo: UndoRedo): void,
}
export abstract class BaseUndoEntry implements UndoEntry {
abstract doUndo(undoRedo: UndoRedo): void
abstract doRedo(undoRedo: UndoRedo): void
}
export class RemoveRowsUndoEntry extends BaseUndoEntry {
constructor(
public readonly command: RemoveRowsCommand,
public readonly rowsRemovals: RowsRemoval[],
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoRemoveRows(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoRemoveRows(this)
}
}
export class MoveCellsUndoEntry extends BaseUndoEntry {
constructor(
public readonly sourceLeftCorner: SimpleCellAddress,
public readonly width: number,
public readonly height: number,
public readonly destinationLeftCorner: SimpleCellAddress,
public readonly overwrittenCellsData: [SimpleCellAddress, ClipboardCell][],
public readonly addedGlobalNamedExpressions: string[],
public readonly version: number,
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoMoveCells(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoMoveCells(this)
}
}
export class AddRowsUndoEntry extends BaseUndoEntry {
constructor(
public readonly command: AddRowsCommand,
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoAddRows(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoAddRows(this)
}
}
export class SetRowOrderUndoEntry extends BaseUndoEntry {
constructor(
public readonly sheetId: number,
public readonly rowMapping: [number, number][],
public readonly oldContent: [SimpleCellAddress, ClipboardCell][]
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoSetRowOrder(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoSetRowOrder(this)
}
}
export class SetColumnOrderUndoEntry extends BaseUndoEntry {
constructor(
public readonly sheetId: number,
public readonly columnMapping: [number, number][],
public readonly oldContent: [SimpleCellAddress, ClipboardCell][]
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoSetColumnOrder(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoSetColumnOrder(this)
}
}
export class SetSheetContentUndoEntry extends BaseUndoEntry {
constructor(
public readonly sheetId: number,
public readonly oldSheetContent: ClipboardCell[][],
public readonly newSheetContent: RawCellContent[][],
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoSetSheetContent(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoSetSheetContent(this)
}
}
export class MoveRowsUndoEntry extends BaseUndoEntry {
public readonly undoStart: number
public readonly undoEnd: number
constructor(
public readonly sheet: number,
public readonly startRow: number,
public readonly numberOfRows: number,
public readonly targetRow: number,
public readonly version: number,
) {
super()
this.undoStart = this.startRow < this.targetRow ? this.targetRow - this.numberOfRows : this.targetRow
this.undoEnd = this.startRow > this.targetRow ? this.startRow + this.numberOfRows : this.startRow
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoMoveRows(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoMoveRows(this)
}
}
export class MoveColumnsUndoEntry extends BaseUndoEntry {
public readonly undoStart: number
public readonly undoEnd: number
constructor(
public readonly sheet: number,
public readonly startColumn: number,
public readonly numberOfColumns: number,
public readonly targetColumn: number,
public readonly version: number,
) {
super()
this.undoStart = this.startColumn < this.targetColumn ? this.targetColumn - this.numberOfColumns : this.targetColumn
this.undoEnd = this.startColumn > this.targetColumn ? this.startColumn + this.numberOfColumns : this.startColumn
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoMoveColumns(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoMoveColumns(this)
}
}
export class AddColumnsUndoEntry extends BaseUndoEntry {
constructor(
public readonly command: AddColumnsCommand,
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoAddColumns(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoAddColumns(this)
}
}
export class RemoveColumnsUndoEntry extends BaseUndoEntry {
constructor(
public readonly command: RemoveColumnsCommand,
public readonly columnsRemovals: ColumnsRemoval[],
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoRemoveColumns(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoRemoveColumns(this)
}
}
export class AddSheetUndoEntry extends BaseUndoEntry {
constructor(
public readonly sheetName: string,
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoAddSheet(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoAddSheet(this)
}
}
export class RemoveSheetUndoEntry extends BaseUndoEntry {
constructor(
public readonly sheetName: string,
public readonly sheetId: number,
public readonly oldSheetContent: ClipboardCell[][],
public readonly scopedNamedExpressions: [InternalNamedExpression, ClipboardCell][],
public readonly version: number,
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoRemoveSheet(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoRemoveSheet(this)
}
}
export class RenameSheetUndoEntry extends BaseUndoEntry {
constructor(
public readonly sheetId: number,
public readonly oldName: string,
public readonly newName: string,
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoRenameSheet(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoRenameSheet(this)
}
}
export class ClearSheetUndoEntry extends BaseUndoEntry {
constructor(
public readonly sheetId: number,
public readonly oldSheetContent: ClipboardCell[][],
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoClearSheet(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoClearSheet(this)
}
}
export class SetCellContentsUndoEntry extends BaseUndoEntry {
constructor(
public readonly cellContents: {
address: SimpleCellAddress,
newContent: RawCellContent,
oldContent: [SimpleCellAddress, ClipboardCell],
}[],
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoSetCellContents(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoSetCellContents(this)
}
}
export class PasteUndoEntry extends BaseUndoEntry {
constructor(
public readonly targetLeftCorner: SimpleCellAddress,
public readonly oldContent: [SimpleCellAddress, ClipboardCell][],
public readonly newContent: ClipboardCell[][],
public readonly addedGlobalNamedExpressions: string[],
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoPaste(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoPaste(this)
}
}
export class AddNamedExpressionUndoEntry extends BaseUndoEntry {
constructor(
public readonly name: string,
public readonly newContent: RawCellContent,
public readonly scope?: number,
public readonly options?: NamedExpressionOptions
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoAddNamedExpression(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoAddNamedExpression(this)
}
}
export class RemoveNamedExpressionUndoEntry extends BaseUndoEntry {
constructor(
public readonly namedExpression: InternalNamedExpression,
public readonly content: ClipboardCell,
public readonly scope?: number,
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoRemoveNamedExpression(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoRemoveNamedExpression(this)
}
}
export class ChangeNamedExpressionUndoEntry extends BaseUndoEntry {
constructor(
public readonly namedExpression: InternalNamedExpression,
public readonly newContent: RawCellContent,
public readonly oldContent: ClipboardCell,
public readonly scope?: number,
public readonly options?: NamedExpressionOptions
) {
super()
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoChangeNamedExpression(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoChangeNamedExpression(this)
}
}
export class BatchUndoEntry extends BaseUndoEntry {
public readonly operations: UndoEntry[] = []
public add(operation: UndoEntry) {
this.operations.push(operation)
}
public* reversedOperations() {
for (let i = this.operations.length - 1; i >= 0; i--) {
yield this.operations[i]
}
}
public doUndo(undoRedo: UndoRedo): void {
undoRedo.undoBatch(this)
}
public doRedo(undoRedo: UndoRedo): void {
undoRedo.redoBatch(this)
}
}
export class UndoRedo {
public oldData: Map<number, [SimpleCellAddress, string][]> = new Map()
private undoStack: UndoEntry[] = []
private redoStack: UndoEntry[] = []
private readonly undoLimit: number
private batchUndoEntry?: BatchUndoEntry
constructor(
config: Config,
private readonly operations: Operations,
) {
this.undoLimit = config.undoLimit
}
public saveOperation(operation: UndoEntry) {
if (this.batchUndoEntry !== undefined) {
this.batchUndoEntry.add(operation)
} else {
this.addUndoEntry(operation)
}
}
public beginBatchMode() {
this.batchUndoEntry = new BatchUndoEntry()
}
public commitBatchMode() {
if (this.batchUndoEntry === undefined) {
throw Error('Batch mode wasn\'t started')
}
this.addUndoEntry(this.batchUndoEntry)
this.batchUndoEntry = undefined
}
public storeDataForVersion(version: number, address: SimpleCellAddress, astHash: string) {
if (!this.oldData.has(version)) {
this.oldData.set(version, [])
}
const currentOldData = this.oldData.get(version)!
currentOldData.push([address, astHash])
}
public clearRedoStack() {
this.redoStack = []
}
public clearUndoStack() {
this.undoStack = []
}
public isUndoStackEmpty(): boolean {
return this.undoStack.length === 0
}
public isRedoStackEmpty(): boolean {
return this.redoStack.length === 0
}
public undo() {
const operation = this.undoStack.pop()
if (!operation) {
throw Error('Attempted to undo without operation on stack')
}
this.undoEntry(operation)
this.redoStack.push(operation)
}
public undoBatch(batchOperation: BatchUndoEntry) {
for (const operation of batchOperation.reversedOperations()) {
this.undoEntry(operation)
}
}
public undoRemoveRows(operation: RemoveRowsUndoEntry) {
this.operations.forceApplyPostponedTransformations()
const {command: {sheet}, rowsRemovals} = operation
for (let i = rowsRemovals.length - 1; i >= 0; --i) {
const rowsRemoval = rowsRemovals[i]
this.operations.addRows(new AddRowsCommand(sheet, [[rowsRemoval.rowFrom, rowsRemoval.rowCount]]))
for (const {address, cellType} of rowsRemoval.removedCells) {
this.operations.restoreCell(address, cellType)
}
this.restoreOldDataFromVersion(rowsRemoval.version - 1)
}
}
public undoRemoveColumns(operation: RemoveColumnsUndoEntry) {
this.operations.forceApplyPostponedTransformations()
const {command: {sheet}, columnsRemovals} = operation
for (let i = columnsRemovals.length - 1; i >= 0; --i) {
const columnsRemoval = columnsRemovals[i]
this.operations.addColumns(new AddColumnsCommand(sheet, [[columnsRemoval.columnFrom, columnsRemoval.columnCount]]))
for (const {address, cellType} of columnsRemoval.removedCells) {
this.operations.restoreCell(address, cellType)
}
this.restoreOldDataFromVersion(columnsRemoval.version - 1)
}
}
public undoAddRows(operation: AddRowsUndoEntry) {
const addedRowsSpans = operation.command.rowsSpans()
for (let i = addedRowsSpans.length - 1; i >= 0; --i) {
const addedRows = addedRowsSpans[i]
this.operations.removeRows(new RemoveRowsCommand(operation.command.sheet, [[addedRows.rowStart, addedRows.numberOfRows]]))
}
}
public undoAddColumns(operation: AddColumnsUndoEntry) {
const addedColumnsSpans = operation.command.columnsSpans()
for (let i = addedColumnsSpans.length - 1; i >= 0; --i) {
const addedColumns = addedColumnsSpans[i]
this.operations.removeColumns(new RemoveColumnsCommand(operation.command.sheet, [[addedColumns.columnStart, addedColumns.numberOfColumns]]))
}
}
public undoSetCellContents(operation: SetCellContentsUndoEntry) {
for (const cellContentData of operation.cellContents) {
const address = cellContentData.address
const [oldContentAddress, oldContent] = cellContentData.oldContent
if (!equalSimpleCellAddress(address, oldContentAddress)) {
this.operations.setCellEmpty(address)
}
this.operations.restoreCell(oldContentAddress, oldContent)
}
}
public undoPaste(operation: PasteUndoEntry) {
this.restoreOperationOldContent(operation.oldContent)
for (const namedExpression of operation.addedGlobalNamedExpressions) {
this.operations.removeNamedExpression(namedExpression)
}
}
public undoMoveRows(operation: MoveRowsUndoEntry) {
const {sheet} = operation
this.operations.moveRows(sheet, operation.undoStart, operation.numberOfRows, operation.undoEnd)
this.restoreOldDataFromVersion(operation.version - 1)
}
public undoMoveColumns(operation: MoveColumnsUndoEntry) {
const {sheet} = operation
this.operations.moveColumns(sheet, operation.undoStart, operation.numberOfColumns, operation.undoEnd)
this.restoreOldDataFromVersion(operation.version - 1)
}
public undoMoveCells(operation: MoveCellsUndoEntry): void {
this.operations.forceApplyPostponedTransformations()
this.operations.moveCells(operation.destinationLeftCorner, operation.width, operation.height, operation.sourceLeftCorner)
this.restoreOperationOldContent(operation.overwrittenCellsData)
this.restoreOldDataFromVersion(operation.version - 1)
for (const namedExpression of operation.addedGlobalNamedExpressions) {
this.operations.removeNamedExpression(namedExpression)
}
}
public undoAddSheet(operation: AddSheetUndoEntry) {
const {sheetName} = operation
this.operations.removeSheetByName(sheetName)
}
public undoRemoveSheet(operation: RemoveSheetUndoEntry) {
this.operations.forceApplyPostponedTransformations()
const {oldSheetContent, sheetId} = operation
this.operations.addSheet(operation.sheetName)
for (let rowIndex = 0; rowIndex < oldSheetContent.length; rowIndex++) {
const row = oldSheetContent[rowIndex]
for (let col = 0; col < row.length; col++) {
const cellType = row[col]
const address = simpleCellAddress(sheetId, col, rowIndex)
this.operations.restoreCell(address, cellType)
}
}
for (const [namedexpression, content] of operation.scopedNamedExpressions) {
this.operations.restoreNamedExpression(namedexpression, content, sheetId)
}
this.restoreOldDataFromVersion(operation.version - 1)
}
public undoRenameSheet(operation: RenameSheetUndoEntry) {
this.operations.renameSheet(operation.sheetId, operation.oldName)
}
public undoClearSheet(operation: ClearSheetUndoEntry) {
const {oldSheetContent, sheetId} = operation
for (let rowIndex = 0; rowIndex < oldSheetContent.length; rowIndex++) {
const row = oldSheetContent[rowIndex]
for (let col = 0; col < row.length; col++) {
const cellType = row[col]
const address = simpleCellAddress(sheetId, col, rowIndex)
this.operations.restoreCell(address, cellType)
}
}
}
public undoSetSheetContent(operation: SetSheetContentUndoEntry) {
const {oldSheetContent, sheetId} = operation
this.operations.clearSheet(sheetId)
for (let rowIndex = 0; rowIndex < oldSheetContent.length; rowIndex++) {
const row = oldSheetContent[rowIndex]
for (let col = 0; col < row.length; col++) {
const cellType = row[col]
const address = simpleCellAddress(sheetId, col, rowIndex)
this.operations.restoreCell(address, cellType)
}
}
}
public undoAddNamedExpression(operation: AddNamedExpressionUndoEntry) {
this.operations.removeNamedExpression(operation.name, operation.scope)
}
public undoRemoveNamedExpression(operation: RemoveNamedExpressionUndoEntry) {
this.operations.restoreNamedExpression(operation.namedExpression, operation.content, operation.scope)
}
public undoChangeNamedExpression(operation: ChangeNamedExpressionUndoEntry) {
this.operations.restoreNamedExpression(operation.namedExpression, operation.oldContent, operation.scope)
}
public undoSetRowOrder(operation: SetRowOrderUndoEntry) {
this.restoreOperationOldContent(operation.oldContent)
}
public undoSetColumnOrder(operation: SetColumnOrderUndoEntry) {
this.restoreOperationOldContent(operation.oldContent)
}
public redo() {
const operation = this.redoStack.pop()
if (!operation) {
throw Error('Attempted to redo without operation on stack')
}
this.redoEntry(operation)
this.undoStack.push(operation)
}
public redoBatch(batchOperation: BatchUndoEntry) {
for (const operation of batchOperation.operations) {
this.redoEntry(operation)
}
}
public redoRemoveRows(operation: RemoveRowsUndoEntry) {
this.operations.removeRows(operation.command)
}
public redoMoveCells(operation: MoveCellsUndoEntry) {
this.operations.moveCells(operation.sourceLeftCorner, operation.width, operation.height, operation.destinationLeftCorner)
}
public redoRemoveColumns(operation: RemoveColumnsUndoEntry) {
this.operations.removeColumns(operation.command)
}
public redoPaste(operation: PasteUndoEntry) {
const {targetLeftCorner, newContent} = operation
const height = newContent.length
const width = newContent[0].length
for (let y = 0; y < height; ++y) {
for (let x = 0; x < width; ++x) {
const address = simpleCellAddress(targetLeftCorner.sheet, targetLeftCorner.col + x, targetLeftCorner.row + y)
this.operations.restoreCell(address, newContent[y][x])
}
}
}
public redoSetCellContents(operation: SetCellContentsUndoEntry) {
for (const cellContentData of operation.cellContents) {
this.operations.setCellContent(cellContentData.address, cellContentData.newContent)
}
}
public redoAddRows(operation: AddRowsUndoEntry) {
this.operations.addRows(operation.command)
}
public redoAddColumns(operation: AddColumnsUndoEntry) {
this.operations.addColumns(operation.command)
}
public redoRemoveSheet(operation: RemoveSheetUndoEntry) {
this.operations.removeSheetByName(operation.sheetName)
}
public redoAddSheet(operation: AddSheetUndoEntry) {
this.operations.addSheet(operation.sheetName)
}
public redoRenameSheet(operation: RenameSheetUndoEntry) {
this.operations.renameSheet(operation.sheetId, operation.newName)
}
public redoMoveRows(operation: MoveRowsUndoEntry) {
this.operations.moveRows(operation.sheet, operation.startRow, operation.numberOfRows, operation.targetRow)
}
public redoMoveColumns(operation: MoveColumnsUndoEntry) {
this.operations.moveColumns(operation.sheet, operation.startColumn, operation.numberOfColumns, operation.targetColumn)
}
public redoClearSheet(operation: ClearSheetUndoEntry) {
this.operations.clearSheet(operation.sheetId)
}
public redoSetSheetContent(operation: SetSheetContentUndoEntry) {
const {sheetId, newSheetContent} = operation
this.operations.setSheetContent(sheetId, newSheetContent)
}
public redoAddNamedExpression(operation: AddNamedExpressionUndoEntry) {
this.operations.addNamedExpression(operation.name, operation.newContent, operation.scope, operation.options)
}
public redoRemoveNamedExpression(operation: RemoveNamedExpressionUndoEntry) {
this.operations.removeNamedExpression(operation.namedExpression.displayName, operation.scope)
}
public redoChangeNamedExpression(operation: ChangeNamedExpressionUndoEntry) {
this.operations.changeNamedExpressionExpression(operation.namedExpression.displayName, operation.newContent, operation.scope, operation.options)
}
public redoSetRowOrder(operation: SetRowOrderUndoEntry) {
this.operations.setRowOrder(operation.sheetId, operation.rowMapping)
}
public redoSetColumnOrder(operation: SetColumnOrderUndoEntry) {
this.operations.setColumnOrder(operation.sheetId, operation.columnMapping)
}
private addUndoEntry(operation: UndoEntry) {
this.undoStack.push(operation)
this.undoStack.splice(0, Math.max(0, this.undoStack.length - this.undoLimit))
}
private undoEntry(operation: UndoEntry) {
operation.doUndo(this)
}
private restoreOperationOldContent(oldContent: [SimpleCellAddress, ClipboardCell][]) {
for (const [address, clipboardCell] of oldContent) {
this.operations.restoreCell(address, clipboardCell)
}
}
private redoEntry(operation: UndoEntry) {
operation.doRedo(this)
}
private restoreOldDataFromVersion(version: number) {
const oldDataToRestore = this.oldData.get(version) || []
for (const entryToRestore of oldDataToRestore) {
const [address, hash] = entryToRestore
this.operations.setFormulaToCellFromCache(hash, address)
}
}
}