|
import { computed, type Ref } from 'vue' |
|
import type { TableCell } from '@/types/slides' |
|
|
|
|
|
|
|
export default (cells: Ref<TableCell[][]>) => { |
|
const hideCells = computed(() => { |
|
const hideCells = [] |
|
|
|
for (let i = 0; i < cells.value.length; i++) { |
|
const rowCells = cells.value[i] |
|
|
|
for (let j = 0; j < rowCells.length; j++) { |
|
const cell = rowCells[j] |
|
|
|
if (cell.colspan > 1 || cell.rowspan > 1) { |
|
for (let row = i; row < i + cell.rowspan; row++) { |
|
for (let col = row === i ? j + 1 : j; col < j + cell.colspan; col++) { |
|
hideCells.push(`${row}_${col}`) |
|
} |
|
} |
|
} |
|
} |
|
} |
|
return hideCells |
|
}) |
|
|
|
return { |
|
hideCells, |
|
} |
|
} |