forked from handsontable/hyperformula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContentChanges.ts
78 lines (65 loc) · 1.96 KB
/
ContentChanges.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
/**
* @license
* Copyright (c) 2024 Handsoncode. All rights reserved.
*/
import {addressKey, SimpleCellAddress} from './Cell'
import {InterpreterValue} from './interpreter/InterpreterValue'
import {SimpleRangeValue} from './SimpleRangeValue'
export interface CellValueChange {
address: SimpleCellAddress,
value: InterpreterValue,
oldValue?: InterpreterValue,
}
export interface ChangeExporter<T> {
exportChange: (arg: CellValueChange) => T | T[],
}
export type ChangeList = CellValueChange[]
export class ContentChanges {
private changes: Map<string, CellValueChange> = new Map()
public static empty() {
return new ContentChanges()
}
public addAll(other: ContentChanges): ContentChanges {
for (const change of other.changes.values()) {
this.add(change.address, change)
}
return this
}
public addChange(newValue: InterpreterValue, address: SimpleCellAddress, oldValue?: InterpreterValue): void {
this.addInterpreterValue(newValue, address, oldValue)
}
public exportChanges<T>(exporter: ChangeExporter<T>): T[] {
let ret: T[] = []
this.changes.forEach((e) => {
const change = exporter.exportChange(e)
if (Array.isArray(change)) {
ret = ret.concat(change)
} else {
ret.push(change)
}
})
return ret
}
public getChanges(): ChangeList {
return Array.from(this.changes.values())
}
public isEmpty(): boolean {
return this.changes.size === 0
}
private add(address: SimpleCellAddress, change: CellValueChange) {
const value = change.value
if (value instanceof SimpleRangeValue) {
for (const cellAddress of value.effectiveAddressesFromData(address)) {
this.changes.delete(addressKey(cellAddress))
}
}
this.changes.set(addressKey(address), change)
}
private addInterpreterValue(value: InterpreterValue, address: SimpleCellAddress, oldValue?: InterpreterValue) {
this.add(address, {
address,
value,
oldValue
})
}
}