1
0
Fork 0
mirror of synced 2024-09-10 06:26:02 +12:00

Add comments

This commit is contained in:
Andrew Kingston 2024-06-23 13:39:29 +01:00
parent 70fd643431
commit a3be0f1cd1
No known key found for this signature in database

View file

@ -83,7 +83,7 @@ export const createActions = context => {
const $rowChangeCache = get(rowChangeCache)
const $rows = get(rows)
// Extract value of each selected cell
// Extract value of each selected cell, accounting for the change cache
let value = []
for (let row of $selectedCells) {
const rowValues = []
@ -133,10 +133,10 @@ export const createActions = context => {
// Choose paste strategy
if (multiCellCopy) {
if (multiCellPaste) {
// Multi to multi (only paste selected cells)
// Multi to multi - try pasting into all selected cells
await pasteIntoSelectedCells(value)
} else {
// Multi to single (expand to paste all values)
// Multi to single - expand to paste all values
// Get indices of focused cell
const $focusedCellId = get(focusedCellId)
const { id, field } = parseCellID($focusedCellId)
@ -172,14 +172,11 @@ export const createActions = context => {
}
} else {
if (multiCellPaste) {
// Single to multi (duplicate value in all selected cells)
const $selectedCells = get(selectedCells)
const pastableValue = $selectedCells.map(row => {
return row.map(() => value)
})
await pasteIntoSelectedCells(pastableValue)
// Single to multi - duplicate value to all selected cells
const newValue = get(selectedCells).map(row => row.map(() => value))
await pasteIntoSelectedCells(newValue)
} else {
// Single to single
// Single to single - just update the cell's value
get(focusedCellAPI).setValue(value)
}
}