-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.svelte.js
879 lines (821 loc) · 24.9 KB
/
classes.svelte.js
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
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
import { formula } from "./formula.js";
import { debounce, randomId } from "./helpers.js";
import { ParseError } from "./parsers.js";
import { rederivable } from "./store.js";
import { evalCode } from "./formula-functions.svelte.js";
import { get } from "svelte/store";
export const DEFAULT_WIDTH = 56,
DEFAULT_HEIGHT = 24;
function minmax(min, x, max) {
return Math.min(Math.max(x, min), max);
}
export class State {
sheets = $state([]);
currentSheetIndex = $state(0);
currentSheet = $derived(this.sheets[this.currentSheetIndex]);
selected = $state(new Selection());
mode = $state("normal");
keyQueue = $state([]);
pasteBuffer = $state(new Register());
elements = $state({});
helpOpen = $state(false);
editorOpen = $state(false);
imageOpen = $state(false);
formulaCode = $state(`// Examples of user-defined formula functions
functions.factorial = (n) => {
if (n == 0) return 1;
return n * functions.factorial(n - 1);
};
// Formula functions that modify the containing element using "this" must be
// declared with the "function" keyword - they cannot be arrow functions.
functions.checkbox = function (label) {
let value;
this.update((previous) => {
value = previous;
return previous;
});
this.element = Object.assign(document.createElement("label"), {
innerText: label,
style: "display: flex; align-items: center; gap: 1ch; margin: 0 0.5em;",
});
this.element.appendChild(
Object.assign(document.createElement("input"), {
type: "checkbox",
style: "appearance: auto;",
checked: value,
oninput: (e) => this.set(e.target.checked),
}),
);
return value;
};
// Formula functions can be async
functions.crypto = async (ticker) => {
return await fetch("https://api.gemini.com/v1/pricefeed", {
cache: "force-cache",
})
.then((r) => r.json())
.then((l) =>
Number(
l.filter((o) => o.pair === ticker.toUpperCase() + "USD")[0].price,
),
);
};
`);
static load(data) {
let result = new State(
data.sheets.map((sheet) => {
let s = new Sheet(
sheet.name,
sheet.heights.length,
sheet.widths.length,
(i, j) => sheet.cells[i][j].formula,
(i, j) => sheet.cells[i][j].value,
);
s.widths = sheet.widths;
s.heights = sheet.heights;
return s;
}),
data.formulaCode,
);
return result;
}
constructor(sheets, formulaCode) {
this.sheets = sheets;
this.sheets.forEach((sheet) => {
sheet.globals = this;
});
if (formulaCode != null) {
this.formulaCode = formulaCode;
evalCode(this.formulaCode);
}
}
getSelectedCells() {
switch (this.selected.type) {
case "cell":
const { x: startCol, y: startRow } = this.selected.min;
const { x: endCol, y: endRow } = this.selected.max;
return this.currentSheet.cells
.slice(startRow, endRow + 1)
.map((row) => row.slice(startCol, endCol + 1));
case "row":
return this.currentSheet.cells.slice(
this.selected.min,
this.selected.max + 1,
);
case "col":
return this.currentSheet.cells.map((row) =>
row.slice(this.selected.min, this.selected.max + 1),
);
}
}
yank() {
// TODO: Put a paste-able table into the clipboard as well
switch (this.selected.type) {
// Block scoping of case branches required for const declarations
case "cell": {
const {
min: { x: startX, y: startY },
max: { x: endX, y: endY },
} = this.selected;
this.pasteBuffer = new Register(
"cell",
this.getSelectedCells(),
this.currentSheet.widths.slice(startX, endX + 1),
this.currentSheet.heights.slice(startY, endY + 1),
);
break;
}
case "row": {
const { min, max } = this.selected;
this.pasteBuffer = new Register(
"row",
this.getSelectedCells(),
undefined,
this.currentSheet.heights.slice(min, max + 1),
);
break;
}
case "col": {
const { min, max } = this.selected;
this.pasteBuffer = new Register(
"col",
this.getSelectedCells(),
this.currentSheet.widths.slice(min, max + 1),
);
break;
}
}
}
put(after = true, values = false) {
switch (this.pasteBuffer.type) {
case "cell":
// TODO: Handle different selection types -- larger than paste buffer,
// smaller than paste buffer, etc., possibly by extrapolating formulas
// TODO: What does putting "before" even mean for a cell range? Before
// in the X direction or the Y direction? Both? Neither?
switch (this.selected.type) {
case "cell":
const {
min: { x, y },
} = this.selected;
if (
this.currentSheet.widths.length - x <
this.pasteBuffer.widths.length
) {
this.currentSheet.addCols(
this.pasteBuffer.widths.length -
(this.currentSheet.widths.length - x),
);
}
if (
this.currentSheet.heights.length - y <
this.pasteBuffer.heights.length
) {
this.currentSheet.addRows(
this.pasteBuffer.heights.length -
(this.currentSheet.heights.length - y),
);
}
this.pasteBuffer.data.forEach((row, i) => {
row.forEach(({ value, formula }, j) => {
// TODO: Handle sheet overflow (e.g., pasting 3x3 cells on the
// last row of a sheet raises an index error)
this.currentSheet.cells[i + y][j + x].formula = values
? value
: formula;
});
});
break;
case "row":
case "col":
// TODO: Handle properly
throw new Error("Not yet implemented");
}
break;
case "row":
let y;
switch (this.selected.type) {
case "cell":
if (after) {
y = this.selected.max.y + 1;
} else {
y = this.selected.min.y;
}
break;
case "row":
if (after) {
y = this.selected.max + 1;
} else {
y = this.selected.min;
}
break;
case "col":
if (after) {
y = this.currentSheet.heights.length;
} else {
y = 0;
}
break;
}
this.deselect();
const numRows = this.pasteBuffer.heights.length;
// Add rows, then fill them. This handles cases with rows from other
// sheets that are the wrong size and need to be extended or shrunk.
this.currentSheet.addRows(numRows, y);
this.pasteBuffer.heights.forEach((h, i) => {
this.currentSheet.heights[i + y] = h;
});
this.currentSheet.cells.slice(y, y + numRows).forEach((row, i) =>
row.forEach((cell, j) => {
cell.formula =
this.pasteBuffer.data[i][j][values ? "value" : "formula"];
}),
);
this.setSelectionStart("cell", { x: 0, y });
break;
case "col":
let x;
switch (this.selected.type) {
case "cell":
if (after) {
x = this.selected.max.x + 1;
} else {
x = this.selected.min.x;
}
break;
case "row":
if (after) {
x = this.currentSheet.widths.length;
} else {
x = 0;
}
break;
case "col":
if (after) {
x = this.selected.max + 1;
} else {
x = this.selected.min;
}
break;
}
this.deselect();
const numCols = this.pasteBuffer.widths.length;
// Add cols, then fill them. This handles cases with cols from other
// sheets that are the wrong size and need to be extended or shrunk.
this.currentSheet.addCols(numCols, x);
this.pasteBuffer.widths.forEach((w, i) => {
this.currentSheet.widths[i + x] = w;
});
this.currentSheet.cells.forEach((row, i) =>
row.slice(x, x + numCols).forEach((cell, j) => {
cell.formula =
this.pasteBuffer.data[i][j][values ? "value" : "formula"];
}),
);
this.setSelectionStart("cell", { x, y: 0 });
break;
}
}
setSelectedBorders(value = true) {
switch (this.selected.type) {
case "cell":
const { x: startCol, y: startRow } = this.selected.min;
const { x: endCol, y: endRow } = this.selected.max;
for (let i = startCol; i < endCol + 1; i++) {
this.currentSheet.cells[startRow][i].topBorder = value;
this.currentSheet.cells[endRow][i].bottomBorder = value;
}
for (let i = startRow; i < endRow + 1; i++) {
this.currentSheet.cells[i][startCol].leftBorder = value;
this.currentSheet.cells[i][endCol].rightBorder = value;
}
break;
case "row":
for (let i = 0; i < this.currentSheet.widths.length; i++) {
this.currentSheet.cells[this.selected.min][i].topBorder = value;
this.currentSheet.cells[this.selected.max][i].bottomBorder = value;
}
break;
case "col":
for (let i = 0; i < this.currentSheet.heights.length; i++) {
this.currentSheet.cells[i][this.selected.min].leftBorder = value;
this.currentSheet.cells[i][this.selected.max].rightBorder = value;
}
break;
}
}
scrollSelection(end) {
if (end == null) {
return;
}
// Don't scroll just from tapping a cell;
if (this.selected.isSingleton()) {
return;
}
// Scroll if highlighting at the edge of the screen
switch (this.selected.type) {
case "cell":
if (end.x > this.selected.end.x) {
this.currentSheet.cells[end.y]?.[end.x + 2]?.scrollIntoView();
} else {
this.currentSheet.cells[end.y]?.[end.x - 2]?.scrollIntoView();
}
if (end.y > this.selected.end.y) {
this.currentSheet.cells[end.y + 2]?.[end.x]?.scrollIntoView();
} else {
this.currentSheet.cells[end.y - 2]?.[end.x]?.scrollIntoView();
}
break;
case "row":
// TODO
break;
case "col":
// TODO
break;
}
}
withinSheet(type, selection) {
let result;
switch (type) {
case "cell":
const maxX = this.currentSheet.widths.length - 1;
const maxY = this.currentSheet.heights.length - 1;
result = {
x: minmax(0, selection.x, maxX),
y: minmax(0, selection.y, maxY),
};
break;
case "row":
result = minmax(0, selection, this.currentSheet.heights.length - 1);
break;
case "col":
result = minmax(0, selection, this.currentSheet.widths.length - 1);
break;
}
return result;
}
setSelectionStart(type, start) {
start = this.withinSheet(type, start);
this.setSelectedBorders(false);
this.selected.type = type;
this.selected._start = start;
this.selected._end = start;
this.setSelectedBorders(true);
}
setSelectionEnd(end) {
end = this.withinSheet(this.selected.type, end);
switch (this.selected.type) {
case "cell":
if (
!(this.selected.start.x == end.x && this.selected.start.y == end.y)
) {
this.mode = "visual";
}
break;
case "row":
case "col":
if (this.selected.start != end) {
this.mode = "visual";
}
break;
}
this.scrollSelection(end);
this.setSelectedBorders(false);
this.selected._end = end;
this.setSelectedBorders(true);
}
deselect() {
this.setSelectionStart(undefined, undefined);
this.mode = "normal";
}
addSheet(name, rows, cols, formula, initial, start = this.sheets.length) {
const sheet = new Sheet(name, rows, cols, formula, initial);
sheet.globals = this;
this.sheets.splice(start, 0, sheet);
}
deleteSheets(n, start = this.sheets.length - n) {
return this.sheets.splice(start, n);
}
}
function flattenArgs(computed) {
if (computed?.refs == null) {
return computed.value;
}
return (
computed.refs
.map((r) => flattenArgs(r))
.flat()
// Hack for detecting stores instead of primitive values
.filter((r) => r?.subscribe != null)
);
}
function flattenComputedToFunction(computed) {
if (computed?.refs == null) {
return (...args) => args;
}
let thunk = computed.thunk ?? ((...args) => args);
let refArgsCounts = computed.refs.map((r) => r?.numRefArgs ?? 1);
return async (...args) => {
let offset = 0;
// Call the thunk with the correct args from the flattened list. Use `.call`
// and `.apply` to pass the correct `this` value.
return await thunk.apply(
this,
(
await Promise.all(
computed.refs.map((r, i) => {
const oldOffset = offset;
offset += refArgsCounts[i];
// Recurse with the relevant portion of the flattened arguments list
return flattenComputedToFunction.call(
this,
r,
)(...args.slice(oldOffset, offset));
}),
)
).flat(),
);
};
}
export class Sheet {
name = $state();
cells = $state();
widths = $state();
heights = $state();
// Don't reactively update based on changes to globals to avoid risk of
// circular reactive references.
globals;
constructor(name, rows, cols, formula, initial) {
// TODO: Test optimizations using sparse arrays (without .fill)
this.name = name;
this.cells = new Array(rows)
.fill()
.map((_, i) =>
new Array(cols)
.fill()
.map((_, j) => this.newCell(formula?.(i, j), i, j, initial?.(i, j))),
);
this.widths = new Array(cols).fill(DEFAULT_WIDTH);
this.heights = new Array(rows).fill(DEFAULT_HEIGHT);
}
newCell(initialFormula, row, col, initialValue) {
const cell = new Cell(initialFormula, initialValue, row, col);
const maxUpdates = 1000;
let updateCount = 0;
const debouncedResetUpdateCount = debounce(() => (updateCount = 0), 100);
// Call inside $effect.root since this can sometimes be called outside of
// component initialization (and outside of other tracking scopes). Creating
// our own tracking scope means we have to destroy it when we are done. For
// more, see:
// https://www.matsimon.dev/blog/svelte-in-depth-effect-root
//
// TODO: Are there places where cells are being deleted, but not cleaned up?
cell.cleanup = $effect.root(() => {
// Having this effect outside of the Cell.svelte file means that we can
// lazily render cells, and still have off-screen cell values be updated.
$effect(() => {
cell.style = "";
cell.errorText = undefined;
cell.element = undefined;
// Re-run this effect if rows or columns are added or removed
this.heights.length;
this.widths.length;
if (cell.formula == null || cell.formula == "") {
cell.value.rederive([], (_, set) => set(undefined));
return;
}
try {
const parsed = formula.parse(cell.formula);
const computed = parsed.compute(
this.globals,
this.globals.sheets.indexOf(this),
cell.row,
cell.col,
);
cell.value.rederive(
flattenArgs(computed),
(dependencyValues, set, update) => {
let _this = {
set,
update,
// Recompute the sheet index in case it's changed between the
// parsed.compute call above and when this callback is called
sheet: this.globals.sheets.indexOf(this),
row: cell.row,
col: cell.col,
width: this.widths[cell.col],
height: this.heights[cell.row],
style: cell.style,
element: undefined,
globals: this.globals,
};
flattenComputedToFunction
.call(
_this,
computed,
)(...dependencyValues)
.then(([result]) => {
update((old) => {
// TODO: Find a better trigger for resets than just waiting
// after updates finish. If, for example, a self-referential
// cell's async formula takes longer than the debounce time to
// compute, it may run forever.
debouncedResetUpdateCount();
// Do a finite number of iterations if we're not converging.
if (updateCount++ > maxUpdates) {
return old;
}
// Svelte implementation of writable stores (from which
// rederivable stores inherit) does not check for approximate
// floating point equality when determining if dependents
// should refresh. Doing so here prevents spurious cyclic
// updates as values converge.
if (
Number.isFinite(old) &&
Number.isFinite(result) &&
Math.abs(old - result) < Number.EPSILON
) {
return old;
}
return result;
});
cell.style = _this.style;
cell.element = _this.element;
cell.errorText = _this.errorText;
})
.catch((e) => {
set(undefined);
cell.errorText = `Error: ${e?.message ?? e}`;
});
},
);
} catch (e) {
if (!(e instanceof ParseError)) {
cell.errorText = `Error: ${e.message}`;
cell.value.rederive([], (_, set) => set(undefined));
} else {
cell.value.rederive([], (_, set) => set(cell.formula));
}
}
});
});
return cell;
}
addRows(n, start = this.heights.length) {
if (n < 0) {
// Explicitly use the arguments object to avoid using the default value if
// no start is set
return this.deleteRows(-n, arguments[1]);
}
this.heights.splice(start, 0, ...new Array(n).fill(DEFAULT_HEIGHT));
this.cells
.slice(start)
.flat(Infinity)
.forEach((cell) => {
cell.row += n;
});
this.cells.splice(
start,
0,
...new Array(n)
.fill()
.map((_, i) =>
new Array(this.widths.length)
.fill()
.map((_, j) => this.newCell(undefined, start + i, j)),
),
);
}
deleteRows(n, start = this.heights.length - n) {
this.heights.splice(start, n);
this.cells
.slice(start)
.flat(Infinity)
.forEach((cell) => {
cell.row -= n;
});
this.cells
.splice(start, n)
.flat(Infinity)
.forEach((cell) => cell.cleanup());
}
addCols(n, start = this.widths.length) {
if (n < 0) {
// Explicitly use the arguments object to avoid using the default value if
// no start is set
return this.deleteCols(-n, arguments[1]);
}
this.widths.splice(start, 0, ...new Array(n).fill(DEFAULT_WIDTH));
this.cells.forEach((row) =>
row.slice(start).forEach((cell) => {
cell.col += n;
}),
);
this.cells.map((row, i) =>
row.splice(
start,
0,
...new Array(n)
.fill()
.map((_, j) => this.newCell(undefined, i, start + j)),
),
);
}
deleteCols(n, start = this.widths.length - n) {
this.widths.splice(start, n);
this.cells.forEach((row) =>
row.slice(start).forEach((cell) => {
cell.col -= n;
}),
);
this.cells
.map((row) => row.splice(start, n))
.flat(Infinity)
.forEach((cell) => cell.cleanup());
}
autoResizeCol(i) {
const newWidth = Math.max(
...this.cells
.map((row) => row[i])
.map((cell) => cell.naturalSize().width),
);
if (!Number.isNaN(newWidth)) {
this.widths[i] = newWidth;
}
}
autoResizeRow(i) {
const newHeight = Math.max(
...this.cells[i].map((cell) => cell.naturalSize().height),
);
if (!Number.isNaN(newHeight)) {
this.heights[i] = newHeight;
}
}
}
export class Cell {
value = $state();
style = $state("");
errorText = $state();
element = $state();
formula = $state();
td = $state();
row = $state();
col = $state();
topBorder = $state(false);
bottomBorder = $state(false);
rightBorder = $state(false);
leftBorder = $state(false);
editing = $state(false);
constructor(formula, value, row, col) {
this.formula = formula;
this.value = rederivable(value ?? formula);
this.row = row;
this.col = col;
}
get() {
return get(this.value);
}
scrollIntoView() {
this.td?.scrollIntoView({
block: "nearest",
inline: "nearest",
});
}
naturalSize() {
// TODO: Make this function faster.
// - svelte/store/get is slow
// - Writing DOM elements to the body and measuring is slow
//
// Note that measuring actual internal parts of cells doesn't work reliably
// because cell inner elements all have their width explicitly set. Changing
// the width and re-measuring can result in inconsistent results. That is
// why we create new <div>s instead of measuring existing ones.
const value = this.errorText != null ? this.errorText : this.get();
let width = 5,
height = 5;
if (value != null) {
const div = Object.assign(document.createElement("div"), {
// Match padding of cell in Cell.svelte
style: `padding: 0.1em 0.2em;
z-index: -1;
min-width: max-content;
width: max-content;
max-width: max-content;
min-height: max-content;
height: max-content;
max-height: max-content;
${this.style ?? ""}`,
});
if (this.element != null) {
div.appendChild(this.element.cloneNode(true));
} else {
div.innerText = value.toString();
}
document.body.append(div);
width = div.scrollWidth;
height = div.scrollHeight;
div.remove();
}
// Add 5 since the exact value still sometimes overflows (due to padding?)
return {
width: (width ?? 5) + 5,
height: (height ?? 5) + 5,
};
}
deselect() {
this.topBorder = false;
this.bottomBorder = false;
this.leftBorder = false;
this.rightBorder = false;
}
}
export class Selection {
type = $state();
_start = $state();
_end = $state();
get start() {
return this._start;
}
get end() {
return this._end;
}
set start(_) {
throw new Error(
"Do not set start directly! Set it through one of the methods.",
);
}
set end(_) {
throw new Error(
"Do not set end directly! Set it through one of the methods.",
);
}
get min() {
switch (this.type) {
case "cell":
return {
x: Math.min(this.start.x, this.end.x),
y: Math.min(this.start.y, this.end.y),
};
case "row":
case "col":
return Math.min(this.start, this.end);
}
}
get max() {
switch (this.type) {
case "cell":
return {
x: Math.max(this.start.x, this.end.x),
y: Math.max(this.start.y, this.end.y),
};
case "row":
case "col":
return Math.max(this.start, this.end);
}
}
contains(i, j) {
switch (this.type) {
case "cell":
return (
this.min.y <= i &&
i <= this.max.y &&
this.min.x <= j &&
j <= this.max.x
);
case "row":
case "col":
return this.min <= i && i <= this.max;
}
}
row(i) {
return this.type == "row" && this.contains(i);
}
col(i) {
return this.type == "col" && this.contains(i);
}
isSingleton() {
return (
this.type == "cell" &&
this.start.x == this.end.x &&
this.start.y == this.end.y
);
}
}
// Called "registers" in Vim, they're just buffers for yanked data
export class Register {
type = $state();
data = $state();
widths = $state();
heights = $state();
// Used to correlate clipboard data with paste buffer data
id = $state();
constructor(type, data, widths, heights) {
this.type = type;
this.data = data?.map((row) =>
row.map((cell) => ({ formula: cell.formula, value: cell.get() })),
);
this.widths = widths;
this.heights = heights;
this.id = randomId();
}
}