mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
799 lines
21 KiB
TypeScript
799 lines
21 KiB
TypeScript
import { GapCursor } from "prosemirror-gapcursor";
|
|
import type { Node, NodeType } from "prosemirror-model";
|
|
import { Slice } from "prosemirror-model";
|
|
import type { Command, EditorState, Transaction } from "prosemirror-state";
|
|
import { TextSelection } from "prosemirror-state";
|
|
import {
|
|
CellSelection,
|
|
addRow,
|
|
isInTable,
|
|
selectedRect,
|
|
tableNodeTypes,
|
|
toggleHeader,
|
|
addColumn,
|
|
deleteRow,
|
|
deleteColumn,
|
|
deleteTable,
|
|
mergeCells,
|
|
splitCell,
|
|
} from "prosemirror-tables";
|
|
import { ProsemirrorHelper } from "../../utils/ProsemirrorHelper";
|
|
import { CSVHelper } from "../../utils/csv";
|
|
import { chainTransactions } from "../lib/chainTransactions";
|
|
import {
|
|
getAllSelectedColumns,
|
|
getCellsInColumn,
|
|
getCellsInRow,
|
|
isHeaderEnabled,
|
|
isTableSelected,
|
|
getWidthFromDom,
|
|
getWidthFromNodes,
|
|
} from "../queries/table";
|
|
import { TableLayout } from "../types";
|
|
import { collapseSelection } from "./collapseSelection";
|
|
import { RowSelection } from "../selection/RowSelection";
|
|
import { ColumnSelection } from "../selection/ColumnSelection";
|
|
|
|
export function createTable({
|
|
rowsCount,
|
|
colsCount,
|
|
colWidth,
|
|
}: {
|
|
/** The number of rows in the table. */
|
|
rowsCount: number;
|
|
/** The number of columns in the table. */
|
|
colsCount: number;
|
|
/** The widths of each column in the table. */
|
|
colWidth: number;
|
|
}): Command {
|
|
return (state, dispatch) => {
|
|
if (dispatch) {
|
|
const offset = state.tr.selection.anchor + 1;
|
|
const nodes = createTableInner(state, rowsCount, colsCount, colWidth);
|
|
const tr = state.tr.replaceSelectionWith(nodes).scrollIntoView();
|
|
const resolvedPos = tr.doc.resolve(offset);
|
|
tr.setSelection(TextSelection.near(resolvedPos));
|
|
dispatch(tr);
|
|
}
|
|
return true;
|
|
};
|
|
}
|
|
|
|
export function createTableInner(
|
|
state: EditorState,
|
|
rowsCount: number,
|
|
colsCount: number,
|
|
colWidth?: number,
|
|
withHeaderRow = true,
|
|
cellContent?: Node
|
|
) {
|
|
const types = tableNodeTypes(state.schema);
|
|
const headerCells: Node[] = [];
|
|
const cells: Node[] = [];
|
|
const rows: Node[] = [];
|
|
|
|
const createCell = (cellType: NodeType, attrs: Record<string, any> | null) =>
|
|
cellContent
|
|
? cellType.createChecked(attrs, cellContent)
|
|
: cellType.createAndFill(attrs);
|
|
|
|
for (let index = 0; index < colsCount; index += 1) {
|
|
const attrs =
|
|
colWidth && index < colsCount - 1
|
|
? {
|
|
colwidth: [colWidth],
|
|
colspan: 1,
|
|
rowspan: 1,
|
|
}
|
|
: null;
|
|
const cell = createCell(types.cell, attrs);
|
|
|
|
if (cell) {
|
|
cells.push(cell);
|
|
}
|
|
|
|
if (withHeaderRow) {
|
|
const headerCell = createCell(types.header_cell, attrs);
|
|
|
|
if (headerCell) {
|
|
headerCells.push(headerCell);
|
|
}
|
|
}
|
|
}
|
|
|
|
for (let index = 0; index < rowsCount; index += 1) {
|
|
rows.push(
|
|
types.row.createChecked(
|
|
null,
|
|
withHeaderRow && index === 0 ? headerCells : cells
|
|
)
|
|
);
|
|
}
|
|
|
|
return types.table.createChecked(null, rows);
|
|
}
|
|
|
|
export function exportTable({
|
|
fileName,
|
|
}: {
|
|
format: string;
|
|
fileName: string;
|
|
}): Command {
|
|
return (state, dispatch) => {
|
|
if (!isInTable(state)) {
|
|
return false;
|
|
}
|
|
|
|
if (dispatch) {
|
|
const rect = selectedRect(state);
|
|
const table: Node[][] = [];
|
|
|
|
for (let r = 0; r < rect.map.height; r++) {
|
|
const cells = [];
|
|
for (let c = 0; c < rect.map.width; c++) {
|
|
const cell = state.doc.nodeAt(
|
|
rect.tableStart + rect.map.map[r * rect.map.width + c]
|
|
);
|
|
if (cell) {
|
|
cells.push(cell);
|
|
}
|
|
}
|
|
table.push(cells);
|
|
}
|
|
|
|
const csv = table
|
|
.map((row) =>
|
|
row
|
|
.map((cell) => {
|
|
let value = ProsemirrorHelper.toPlainText(cell);
|
|
|
|
// Escape double quotes by doubling them
|
|
if (value.includes('"')) {
|
|
value = value.replace(new RegExp('"', "g"), '""');
|
|
}
|
|
|
|
// Avoid cell content being interpreted as formulas by adding a leading single quote
|
|
value = CSVHelper.sanitizeValue(value);
|
|
|
|
return `"${value}"`;
|
|
})
|
|
.join(",")
|
|
)
|
|
.join("\n");
|
|
|
|
const blob = new Blob([csv], { type: "text/csv;charset=utf-8;" });
|
|
const url = URL.createObjectURL(blob);
|
|
const a = document.createElement("a");
|
|
a.href = url;
|
|
a.download = fileName;
|
|
a.click();
|
|
URL.revokeObjectURL(url);
|
|
}
|
|
|
|
return true;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* A Commands that distributes the width of all selected columns evenly between them in the current table selection.
|
|
*
|
|
*
|
|
* @returns {Command}
|
|
*/
|
|
export function distributeColumns(): Command {
|
|
return (state, dispatch, view) => {
|
|
if (!isInTable(state) || !dispatch) {
|
|
return false;
|
|
}
|
|
|
|
const rect = selectedRect(state);
|
|
const { tr, doc } = state;
|
|
const { map } = rect;
|
|
const selectedColumns = getAllSelectedColumns(state);
|
|
if (selectedColumns.length <= 1) {
|
|
return false;
|
|
}
|
|
|
|
const hasNullWidth = selectedColumns.some((colIndex) =>
|
|
isNullWidth({ state, colIndex })
|
|
);
|
|
|
|
// whenever we can, we want to take the column width that prose-mirror sets
|
|
// since that will always be accurate, when set
|
|
const totalWidth = hasNullWidth
|
|
? getWidthFromDom({ view, rect, selectedColumns })
|
|
: getWidthFromNodes({ state, selectedColumns });
|
|
|
|
if (totalWidth < 1) {
|
|
return false;
|
|
}
|
|
|
|
const evenWidth = totalWidth / selectedColumns.length;
|
|
const isLastColSelected = selectedColumns.includes(map.width - 1);
|
|
|
|
const tableNode = doc.nodeAt(rect.tableStart - 1);
|
|
const isFullWidth = tableNode?.attrs.layout === TableLayout.fullWidth;
|
|
|
|
for (let row = 0; row < map.height; row++) {
|
|
const cellsInRow = getCellsInRow(row)(state);
|
|
if (!cellsInRow || cellsInRow.length < 1) {
|
|
continue;
|
|
}
|
|
|
|
selectedColumns.forEach((colIndex) => {
|
|
const pos = cellsInRow[colIndex];
|
|
const cell = pos !== undefined ? doc.nodeAt(pos) : null;
|
|
if (!cell) {
|
|
return;
|
|
}
|
|
|
|
const isLastColumn = colIndex === map.width - 1;
|
|
const shouldKeepNull =
|
|
isLastColumn && isLastColSelected && isFullWidth && hasNullWidth;
|
|
|
|
tr.setNodeMarkup(pos, undefined, {
|
|
...cell.attrs,
|
|
colwidth: shouldKeepNull ? null : [evenWidth],
|
|
});
|
|
});
|
|
}
|
|
|
|
dispatch(tr);
|
|
return true;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Determines whether the width of a specified column is null.
|
|
*
|
|
* @param state - The current editor state.
|
|
* @param colIndex - The index of the column to check.
|
|
*
|
|
* @returns {boolean} True if the column width is null, false otherwise.
|
|
*/
|
|
function isNullWidth({
|
|
state,
|
|
colIndex,
|
|
}: {
|
|
state: EditorState;
|
|
colIndex: number;
|
|
}): boolean {
|
|
const firstRowCells = getCellsInRow(0)(state);
|
|
const cell =
|
|
firstRowCells?.[colIndex] !== undefined
|
|
? state.doc.nodeAt(firstRowCells[colIndex])
|
|
: null;
|
|
|
|
const colwidth = cell?.attrs.colwidth;
|
|
return !colwidth?.[0];
|
|
}
|
|
|
|
export function sortTable({
|
|
index,
|
|
direction,
|
|
}: {
|
|
index: number;
|
|
direction: "asc" | "desc";
|
|
}): Command {
|
|
return (state, dispatch) => {
|
|
if (!isInTable(state)) {
|
|
return false;
|
|
}
|
|
|
|
if (dispatch) {
|
|
const rect = selectedRect(state);
|
|
const table: Node[][] = [];
|
|
|
|
for (let r = 0; r < rect.map.height; r++) {
|
|
const cells = [];
|
|
for (let c = 0; c < rect.map.width; c++) {
|
|
const cell = state.doc.nodeAt(
|
|
rect.tableStart + rect.map.map[r * rect.map.width + c]
|
|
);
|
|
if (cell) {
|
|
cells.push(cell);
|
|
}
|
|
}
|
|
table.push(cells);
|
|
}
|
|
|
|
// check if all the cells in the column are a number
|
|
const compareAsText = table.some((row) => {
|
|
const cell = row[index]?.textContent;
|
|
return cell === "" ? false : isNaN(parseFloat(cell));
|
|
});
|
|
|
|
const hasHeaderRow = table[0].every(
|
|
(cell) => cell.type === state.schema.nodes.th
|
|
);
|
|
|
|
// remove the header row
|
|
const header = hasHeaderRow ? table.shift() : undefined;
|
|
|
|
// column data before sort
|
|
const columnData = table.map((row) => row[index]?.textContent ?? "");
|
|
|
|
// sort table data based on column at index
|
|
table.sort((a, b) => {
|
|
if (compareAsText) {
|
|
return (a[index]?.textContent ?? "").localeCompare(
|
|
b[index]?.textContent ?? ""
|
|
);
|
|
} else {
|
|
return (
|
|
parseFloat(a[index]?.textContent ?? "") -
|
|
parseFloat(b[index]?.textContent ?? "")
|
|
);
|
|
}
|
|
});
|
|
|
|
if (direction === "desc") {
|
|
table.reverse();
|
|
}
|
|
|
|
// check if column data changed, if not then do not replace table
|
|
if (
|
|
columnData.join() === table.map((row) => row[index]?.textContent).join()
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
// add the header row back
|
|
if (header) {
|
|
table.unshift(header);
|
|
}
|
|
|
|
// create the new table
|
|
const rows = [];
|
|
for (let i = 0; i < table.length; i += 1) {
|
|
rows.push(state.schema.nodes.tr.createChecked(null, table[i]));
|
|
}
|
|
|
|
// replace the original table with this sorted one
|
|
const nodes = state.schema.nodes.table.createChecked(
|
|
rect.table.attrs,
|
|
rows
|
|
);
|
|
const { tr } = state;
|
|
|
|
tr.replaceRangeWith(
|
|
rect.tableStart - 1,
|
|
rect.tableStart - 1 + rect.table.nodeSize,
|
|
nodes
|
|
);
|
|
|
|
dispatch(tr.scrollIntoView());
|
|
}
|
|
return true;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* A command that safely adds a row taking into account any existing heading column at the top of
|
|
* the table, and preventing it moving "into" the table.
|
|
*
|
|
* @param index The index to add the row at, if undefined the current selection is used
|
|
* @returns The command
|
|
*/
|
|
export function addRowBefore({ index }: { index?: number }): Command {
|
|
return (state, dispatch) => {
|
|
if (!isInTable(state)) {
|
|
return false;
|
|
}
|
|
|
|
const rect = selectedRect(state);
|
|
const isHeaderRowEnabled = isHeaderEnabled(state, "row", rect);
|
|
const position = index !== undefined ? index : rect.left;
|
|
|
|
// Special case when adding row to the beginning of the table to ensure the header does not
|
|
// move inwards.
|
|
const headerSpecialCase = position === 0 && isHeaderRowEnabled;
|
|
|
|
// Determine which row to copy alignment from (using original table indices)
|
|
// When inserting at position 0, copy from original row 0
|
|
// When inserting at other positions, copy from the row above (position - 1)
|
|
const copyFromRow = position === 0 ? 0 : position - 1;
|
|
|
|
chainTransactions(
|
|
headerSpecialCase ? toggleHeader("row") : undefined,
|
|
(s, d) =>
|
|
!!d?.(addRowWithAlignment(s.tr, rect, position, copyFromRow, s)),
|
|
headerSpecialCase ? toggleHeader("row") : undefined,
|
|
collapseSelection()
|
|
)(state, dispatch);
|
|
|
|
return true;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* A command that deletes the current selected row, if any.
|
|
*
|
|
* @returns The command
|
|
*/
|
|
export function deleteRowSelection(): Command {
|
|
return (state, dispatch) => {
|
|
if (
|
|
state.selection instanceof CellSelection &&
|
|
state.selection.isRowSelection()
|
|
) {
|
|
return deleteRow(state, dispatch);
|
|
}
|
|
return false;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* A command that deletes the current selected column, if any.
|
|
*
|
|
* @returns The command
|
|
*/
|
|
export function deleteColSelection(): Command {
|
|
return (state, dispatch) => {
|
|
if (
|
|
state.selection instanceof CellSelection &&
|
|
state.selection.isColSelection()
|
|
) {
|
|
return deleteColumn(state, dispatch);
|
|
}
|
|
return false;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* A command that safely adds a column taking into account any existing heading column on the far
|
|
* left of the table, and preventing it moving "into" the table.
|
|
*
|
|
* @param index The index to add the column at, if undefined the current selection is used
|
|
* @returns The command
|
|
*/
|
|
export function addColumnBefore({ index }: { index?: number }): Command {
|
|
return (state, dispatch) => {
|
|
if (!isInTable(state)) {
|
|
return false;
|
|
}
|
|
|
|
const rect = selectedRect(state);
|
|
const isHeaderColumnEnabled = isHeaderEnabled(state, "column", rect);
|
|
const position = index !== undefined ? index : rect.left;
|
|
|
|
// Special case when adding column to the beginning of the table to ensure the header does not
|
|
// move inwards.
|
|
const headerSpecialCase = position === 0 && isHeaderColumnEnabled;
|
|
|
|
chainTransactions(
|
|
headerSpecialCase ? toggleHeader("column") : undefined,
|
|
(s, d) => !!d?.(addColumn(s.tr, rect, position)),
|
|
headerSpecialCase ? toggleHeader("column") : undefined,
|
|
collapseSelection()
|
|
)(state, dispatch);
|
|
|
|
return true;
|
|
};
|
|
}
|
|
|
|
export function addRowAndMoveSelection({
|
|
index,
|
|
}: {
|
|
index?: number;
|
|
} = {}): Command {
|
|
return (state, dispatch, view) => {
|
|
if (!isInTable(state)) {
|
|
return false;
|
|
}
|
|
|
|
const rect = selectedRect(state);
|
|
const cells = getCellsInColumn(0)(state);
|
|
|
|
// If the cursor is at the beginning of the first column then insert row
|
|
// above instead of below.
|
|
if (rect.left === 0 && view?.endOfTextblock("backward", state)) {
|
|
const indexBefore = index !== undefined ? index - 1 : rect.top;
|
|
// Copy alignment from the current row (which will be pushed down)
|
|
const copyFromRow = indexBefore;
|
|
dispatch?.(
|
|
addRowWithAlignment(state.tr, rect, indexBefore, copyFromRow, state)
|
|
);
|
|
return true;
|
|
}
|
|
|
|
const indexAfter = index !== undefined ? index + 1 : rect.bottom;
|
|
// Copy alignment from the row above the insertion point
|
|
const copyFromRow = indexAfter > 0 ? indexAfter - 1 : undefined;
|
|
const tr = addRowWithAlignment(
|
|
state.tr,
|
|
rect,
|
|
indexAfter,
|
|
copyFromRow,
|
|
state
|
|
);
|
|
|
|
// Special case when adding row to the end of the table as the calculated
|
|
// rect does not include the row that we just added.
|
|
if (indexAfter !== rect.map.height) {
|
|
const pos = cells[Math.min(cells.length - 1, indexAfter)];
|
|
const $pos = tr.doc.resolve(pos);
|
|
dispatch?.(tr.setSelection(TextSelection.near($pos)));
|
|
} else {
|
|
const $pos = tr.doc.resolve(rect.tableStart + rect.table.nodeSize);
|
|
dispatch?.(tr.setSelection(TextSelection.near($pos)));
|
|
}
|
|
|
|
return true;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Set column attributes. Passed attributes will be merged with existing.
|
|
*
|
|
* @param attrs The attributes to set
|
|
* @returns The command
|
|
*/
|
|
export function setColumnAttr({
|
|
index,
|
|
alignment,
|
|
}: {
|
|
index: number;
|
|
alignment: string;
|
|
}): Command {
|
|
return (state, dispatch) => {
|
|
if (dispatch) {
|
|
const cells = getCellsInColumn(index)(state) || [];
|
|
let transaction = state.tr;
|
|
cells.forEach((pos) => {
|
|
const node = state.doc.nodeAt(pos);
|
|
transaction = transaction.setNodeMarkup(pos, undefined, {
|
|
...node?.attrs,
|
|
alignment,
|
|
});
|
|
});
|
|
dispatch(transaction);
|
|
}
|
|
return true;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Set table attributes. Passed attributes will be merged with existing.
|
|
*
|
|
* @param attrs The attributes to set
|
|
* @returns The command
|
|
*/
|
|
export function setTableAttr(attrs: { layout: TableLayout | null }): Command {
|
|
return (state, dispatch) => {
|
|
if (!isInTable(state)) {
|
|
return false;
|
|
}
|
|
|
|
if (dispatch) {
|
|
const { tr } = state;
|
|
const rect = selectedRect(state);
|
|
|
|
tr.setNodeMarkup(rect.tableStart - 1, undefined, {
|
|
...rect.table.attrs,
|
|
...attrs,
|
|
}).setSelection(TextSelection.near(tr.doc.resolve(rect.tableStart)));
|
|
dispatch(tr);
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
}
|
|
|
|
export function selectRow(index: number, expand = false): Command {
|
|
return (state: EditorState, dispatch): boolean => {
|
|
if (dispatch) {
|
|
const rect = selectedRect(state);
|
|
const pos = rect.map.positionAt(index, 0, rect.table);
|
|
const $pos = state.doc.resolve(rect.tableStart + pos);
|
|
const rowSelection =
|
|
expand && state.selection instanceof CellSelection
|
|
? RowSelection.rowSelection(state.selection.$anchorCell, $pos, index)
|
|
: RowSelection.rowSelection($pos, $pos, index);
|
|
dispatch(state.tr.setSelection(rowSelection));
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
}
|
|
|
|
export function selectColumn(index: number, expand = false): Command {
|
|
return (state, dispatch): boolean => {
|
|
if (dispatch) {
|
|
const rect = selectedRect(state);
|
|
const pos = rect.map.positionAt(0, index, rect.table);
|
|
const $pos = state.doc.resolve(rect.tableStart + pos);
|
|
const colSelection =
|
|
expand && state.selection instanceof CellSelection
|
|
? ColumnSelection.colSelection(state.selection.$anchorCell, $pos)
|
|
: ColumnSelection.colSelection($pos);
|
|
dispatch(state.tr.setSelection(colSelection));
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
}
|
|
|
|
export function selectTable(): Command {
|
|
return (state, dispatch): boolean => {
|
|
if (dispatch) {
|
|
const rect = selectedRect(state);
|
|
const map = rect.map.map;
|
|
const $anchor = state.doc.resolve(rect.tableStart + map[0]);
|
|
const $head = state.doc.resolve(rect.tableStart + map[map.length - 1]);
|
|
const tableSelection = new CellSelection($anchor, $head);
|
|
dispatch(state.tr.setSelection(tableSelection));
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
}
|
|
|
|
export function moveOutOfTable(direction: 1 | -1): Command {
|
|
return (state, dispatch): boolean => {
|
|
if (dispatch) {
|
|
if (state.selection instanceof GapCursor) {
|
|
return false;
|
|
}
|
|
if (!isInTable(state)) {
|
|
return false;
|
|
}
|
|
|
|
// check if current cursor position is at the top or bottom of the table
|
|
const rect = selectedRect(state);
|
|
const topOfTable =
|
|
rect.top === 0 && rect.bottom === 1 && direction === -1;
|
|
const bottomOfTable =
|
|
rect.top === rect.map.height - 1 &&
|
|
rect.bottom === rect.map.height &&
|
|
direction === 1;
|
|
|
|
if (!topOfTable && !bottomOfTable) {
|
|
return false;
|
|
}
|
|
|
|
const map = rect.map.map;
|
|
const $start = state.doc.resolve(rect.tableStart + map[0] - 1);
|
|
const $end = state.doc.resolve(rect.tableStart + map[map.length - 1] + 2);
|
|
|
|
// @ts-expect-error findGapCursorFrom is a ProseMirror internal method.
|
|
const $found = GapCursor.findGapCursorFrom(
|
|
direction > 0 ? $end : $start,
|
|
direction,
|
|
true
|
|
);
|
|
|
|
if ($found) {
|
|
dispatch(state.tr.setSelection(new GapCursor($found)));
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* A command that deletes the entire table if all cells are selected.
|
|
*
|
|
* @returns The command
|
|
*/
|
|
export function deleteTableIfSelected(): Command {
|
|
return (state, dispatch): boolean => {
|
|
if (isTableSelected(state)) {
|
|
return deleteTable(state, dispatch);
|
|
}
|
|
return false;
|
|
};
|
|
}
|
|
|
|
export function deleteCellSelection(
|
|
state: EditorState,
|
|
dispatch?: (tr: Transaction) => void
|
|
): boolean {
|
|
const sel = state.selection;
|
|
if (!(sel instanceof CellSelection)) {
|
|
return false;
|
|
}
|
|
if (dispatch) {
|
|
const tr = state.tr;
|
|
const baseContent = tableNodeTypes(state.schema).cell.createAndFill()!
|
|
.content;
|
|
sel.forEachCell((cell, pos) => {
|
|
if (!cell.content.eq(baseContent)) {
|
|
tr.replace(
|
|
tr.mapping.map(pos + 1),
|
|
tr.mapping.map(pos + cell.nodeSize - 1),
|
|
new Slice(baseContent, 0, 0)
|
|
);
|
|
}
|
|
});
|
|
if (tr.docChanged) {
|
|
dispatch(tr);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* A command that splits a cell and collapses the selection.
|
|
*
|
|
* @returns The command
|
|
*/
|
|
export function splitCellAndCollapse(): Command {
|
|
return chainTransactions(splitCell, collapseSelection());
|
|
}
|
|
|
|
/**
|
|
* Helper function to add a row while copying alignment attributes from an existing row.
|
|
*
|
|
* @param tr The transaction
|
|
* @param rect The table rect
|
|
* @param index The index where to insert the row
|
|
* @param copyFromRow The row index to copy alignment from (optional)
|
|
* @param state The editor state
|
|
* @returns The modified transaction
|
|
*/
|
|
function addRowWithAlignment(
|
|
tr: Transaction,
|
|
rect: any,
|
|
index: number,
|
|
copyFromRow: number | undefined,
|
|
state: EditorState
|
|
): Transaction {
|
|
// Get alignment attributes from the source row BEFORE inserting the new row
|
|
let sourceRowAlignments: (string | null)[] | undefined;
|
|
|
|
if (
|
|
copyFromRow !== undefined &&
|
|
copyFromRow >= 0 &&
|
|
copyFromRow < rect.map.height
|
|
) {
|
|
const cellsInSourceRow = getCellsInRow(copyFromRow)(state);
|
|
if (cellsInSourceRow) {
|
|
sourceRowAlignments = cellsInSourceRow.map((pos) => {
|
|
const node = tr.doc.nodeAt(pos);
|
|
return node?.attrs.alignment || null;
|
|
});
|
|
}
|
|
}
|
|
|
|
// Now add the row using the standard prosemirror function
|
|
const newTr = addRow(tr, rect, index);
|
|
|
|
// Apply the copied alignments to the new row
|
|
if (sourceRowAlignments) {
|
|
const newState = state.apply(newTr);
|
|
const cellsInNewRow = getCellsInRow(index)(newState);
|
|
|
|
if (cellsInNewRow) {
|
|
cellsInNewRow.forEach((newCellPos, colIndex) => {
|
|
if (
|
|
colIndex < sourceRowAlignments.length &&
|
|
sourceRowAlignments[colIndex]
|
|
) {
|
|
const newCellNode = newTr.doc.nodeAt(newCellPos);
|
|
if (newCellNode) {
|
|
const attrs = {
|
|
...newCellNode.attrs,
|
|
alignment: sourceRowAlignments[colIndex],
|
|
};
|
|
newTr.setNodeMarkup(newCellPos, undefined, attrs);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
return newTr;
|
|
}
|
|
|
|
/**
|
|
* A command that merges selected cells and collapses the selection.
|
|
*
|
|
* @returns The command
|
|
*/
|
|
export function mergeCellsAndCollapse(): Command {
|
|
return chainTransactions(mergeCells, collapseSelection());
|
|
}
|