All files / roosterjs-content-model-plugins/lib/tableEdit/editors/features CellResizer.ts

89.52% Statements 111/124
67.09% Branches 53/79
100% Functions 9/9
88.98% Lines 105/118

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 3491x 1x 1x   1x                     1x       1x       1x         1x                     4x 4x       4x   4x   4x   4x                 4x 4x   4x             4x                   4x     1x                       4x 4x     1x 4x 4x 4x   1x                                                                 1x 2x 1x         1x   2x     1x   1x 1x 1x 2x   2x   1x 1x 1x   1x           1x 1x             1x 1x       1x   1x 1x                                                 1x             12x     4x   4x     4x     4x   4x 12x   12x 12x 12x       4x                   1x           8x 16x     4x 4x   4x   4x     2x       2x     2x 2x 2x             2x 2x       4x 12x 12x 12x   12x 36x   36x 36x 36x 36x                 36x 36x         4x             4x             2x 2x 2x 2x 2x 2x 2x 2x         4x 2x 2x 2x 2x 2x 2x 2x      
import { createElement } from '../../../pluginUtils/CreateElement/createElement';
import { DragAndDropHelper } from '../../../pluginUtils/DragAndDrop/DragAndDropHelper';
import { getCMTableFromTable } from '../utils/getTableFromContentModel';
import type { TableEditFeature } from './TableEditFeature';
import {
    normalizeRect,
    MIN_ALLOWED_TABLE_CELL_WIDTH,
    mutateBlock,
    MIN_ALLOWED_TABLE_CELL_HEIGHT,
    parseValueWithUnit,
} from 'roosterjs-content-model-dom';
import type { DragAndDropHandler } from '../../../pluginUtils/DragAndDrop/DragAndDropHandler';
import type { IEditor, ReadonlyContentModelTable } from 'roosterjs-content-model-types';
import type { OnTableEditorCreatedCallback } from '../../OnTableEditorCreatedCallback';
 
const CELL_RESIZER_WIDTH = 4;
/**
 * @internal
 */
export const HORIZONTAL_RESIZER_ID = 'horizontalResizer';
/**
 * @internal
 */
export const VERTICAL_RESIZER_ID = 'verticalResizer';
 
/**
 * @internal
 */
export function createCellResizer(
    editor: IEditor,
    td: HTMLTableCellElement,
    table: HTMLTableElement,
    isRTL: boolean,
    isHorizontal: boolean,
    onStart: () => void,
    onEnd: () => false,
    anchorContainer?: HTMLElement,
    onTableEditorCreated?: OnTableEditorCreatedCallback
): TableEditFeature | null {
    const document = td.ownerDocument;
    const createElementData = {
        tag: 'div',
        style: `position: fixed; cursor: ${isHorizontal ? 'row' : 'col'}-resize; user-select: none`,
    };
    const zoomScale = editor.getDOMHelper().calculateZoomScale();
 
    const div = createElement(createElementData, document) as HTMLDivElement;
 
    (anchorContainer || document.body).appendChild(div);
 
    const context: CellResizerContext = {
        editor,
        td,
        table,
        isRTL,
        zoomScale,
        onStart,
        originalWidth: parseValueWithUnit(table.style.width),
    };
    const setPosition = isHorizontal ? setHorizontalPosition : setVerticalPosition;
    setPosition(context, div);
 
    const handler: DragAndDropHandler<CellResizerContext, CellResizerInitValue> = {
        onDragStart,
        // Horizontal modifies row height, vertical modifies column width
        onDragging: isHorizontal ? onDraggingHorizontal : onDraggingVertical,
        onDragEnd: onEnd,
    };
 
    const featureHandler = new CellResizer(
        div,
        context,
        setPosition,
        handler,
        zoomScale,
        editor.getEnvironment().isMobileOrTablet,
        onTableEditorCreated
    );
 
    return { node: td, div, featureHandler };
}
 
class CellResizer extends DragAndDropHelper<CellResizerContext, CellResizerInitValue> {
    private disposer: undefined | (() => void);
 
    constructor(
        trigger: HTMLElement,
        context: CellResizerContext,
        onSubmit: (context: CellResizerContext, trigger: HTMLElement) => void,
        handler: DragAndDropHandler<CellResizerContext, CellResizerInitValue>,
        zoomScale: number,
        forceMobile?: boolean,
        onTableEditorCreated?: OnTableEditorCreatedCallback
    ) {
        super(trigger, context, onSubmit, handler, zoomScale, forceMobile);
        this.disposer = onTableEditorCreated?.('CellResizer', trigger);
    }
 
    dispose(): void {
        this.disposer?.();
        this.disposer = undefined;
        super.dispose();
    }
}
 
/**
 * @internal
 * Exported for testing
 */
export interface CellResizerContext {
    editor: IEditor;
    td: HTMLTableCellElement;
    table: HTMLTableElement;
    isRTL: boolean;
    zoomScale: number;
    originalWidth: number;
    onStart: () => void;
}
 
/**
 * @internal
 * Exported for testing
 */
export interface CellResizerInitValue {
    cmTable: ReadonlyContentModelTable | undefined;
    anchorColumn: number | undefined;
    nextColumn: number;
    anchorRow: number | undefined;
    anchorRowHeight: number;
    allWidths: number[];
}
 
/**
 * @internal
 * Exported for testing
 */
export function onDragStart(context: CellResizerContext, event: MouseEvent): CellResizerInitValue {
    const { td, onStart } = context;
    const rect = normalizeRect(td.getBoundingClientRect());
 
    // Get cell coordinates
    let rowIndex: number | undefined;
    let columnIndex: number | undefined;
    let nextColumnIndex = -1;
 
    const { editor, table } = context;
 
    // Get Table block in content model
    const cmTable = getCMTableFromTable(editor, table);
 
    Eif (rect && cmTable) {
        for (let r = 0; r < cmTable?.rows.length; r++) {
            for (let c = 0; c < cmTable.rows[r].cells.length; c++) {
                const cell = cmTable.rows[r].cells[c];
 
                if (cell.cachedElement == td) {
                    // Target cell found, record its position
                    rowIndex = r;
                    columnIndex = c;
                } else Eif (rowIndex != undefined && columnIndex != undefined) {
                    // rowIndex and columnIndex are already found, we can find nextColumnIndex now
                    Iif (!cell.cachedElement) {
                        // No cached element means this cell is merged, so this could potentially be the right side of column
                        // We are trying to find the last merged cell so we can modify its width later
                        columnIndex = c;
                    } else {
                        // Since we already found the target cell, the first cell with cachedElement after that must be the next column
                        nextColumnIndex = c;
                        break;
                    }
                }
            }
 
            // As long as rowIndex is found, we can break here, no matter if nextColumnIndex is found or not
            // because for the last column case, nextColumnIndex will be -1
            Eif (rowIndex != undefined) {
                break;
            }
        }
 
        onStart();
 
        Eif (rowIndex !== undefined) {
            return {
                cmTable,
                anchorColumn: columnIndex,
                nextColumn: nextColumnIndex,
                anchorRow: rowIndex,
                anchorRowHeight: cmTable.rows[rowIndex].height,
                allWidths: [...cmTable.widths],
            };
        }
    }
 
    return {
        cmTable,
        anchorColumn: undefined,
        anchorRow: undefined,
        anchorRowHeight: -1,
        allWidths: [],
        nextColumn: -1,
    }; // Just a fallback
}
 
/**
 * @internal
 * Exported for testing
 */
export function onDraggingHorizontal(
    context: CellResizerContext,
    event: MouseEvent,
    initValue: CellResizerInitValue,
    deltaX: number,
    deltaY: number
) {
    const { cmTable, anchorRow, anchorRowHeight } = initValue;
 
    // Assign new widths and heights to the CM table
    Eif (cmTable && anchorRow != undefined && cmTable.rows[anchorRow] != undefined) {
        // Modify the CM Table size
        mutateBlock(cmTable).rows[anchorRow].height = (anchorRowHeight ?? 0) + deltaY;
 
        // Normalize the new height value
        const newHeight = Math.max(cmTable.rows[anchorRow].height, MIN_ALLOWED_TABLE_CELL_HEIGHT);
 
        // Writeback CM Table size changes to DOM Table
        const tableRow = cmTable.rows[anchorRow].cells;
 
        for (let col = 0; col < tableRow.length; col++) {
            const td = tableRow[col].cachedElement;
 
            Eif (td) {
                td.style.height = newHeight + 'px';
                td.style.boxSizing = 'border-box';
            }
        }
 
        return true;
    } else {
        return false;
    }
}
 
/**
 * @internal
 * Exported for testing
 */
export function onDraggingVertical(
    context: CellResizerContext,
    event: MouseEvent,
    initValue: CellResizerInitValue,
    deltaX: number
) {
    const { table, isRTL } = context;
    const { cmTable, anchorColumn, nextColumn, allWidths } = initValue;
 
    // Assign new widths and heights to the CM table
    Eif (cmTable && anchorColumn != undefined) {
        const mutableTable = mutateBlock(cmTable);
 
        const change = deltaX * (isRTL ? -1 : 1);
        // This is the last column
        if (nextColumn == -1) {
            // Only the last column changes
            // Normalize the new width value
            const newWidth = Math.max(
                allWidths[anchorColumn] + change,
                MIN_ALLOWED_TABLE_CELL_WIDTH
            );
            mutableTable.widths[anchorColumn] = newWidth;
        } else {
            // Any other two columns
            const anchorChange = allWidths[anchorColumn] + change;
            const nextAnchorChange = allWidths[nextColumn] - change;
            Iif (
                anchorChange < MIN_ALLOWED_TABLE_CELL_WIDTH ||
                nextAnchorChange < MIN_ALLOWED_TABLE_CELL_WIDTH
            ) {
                return false;
            }
 
            mutableTable.widths[anchorColumn] = anchorChange;
            mutableTable.widths[nextColumn] = nextAnchorChange;
        }
 
        // Write back CM Table size changes to DOM Table
        for (let row = 0; row < cmTable.rows.length; row++) {
            const tableRow = cmTable.rows[row].cells;
            let lastTd: HTMLTableCellElement | null = null;
            let lastWidth = 0;
 
            for (let col = 0; col < tableRow.length; col++) {
                const td = tableRow[col].cachedElement;
 
                Eif (td) {
                    td.style.boxSizing = 'border-box';
                    lastTd = td;
                    lastWidth = cmTable.widths[col];
                } else if (lastTd && tableRow[col].spanLeft) {
                    lastWidth += cmTable.widths[col];
                } else if (tableRow[col].spanAbove) {
                    // For span above case, we don't need to adjust width, just clear lastTd and lastWidth
                    lastTd = null;
                    lastWidth = 0;
                }
 
                Eif (lastTd) {
                    lastTd.style.width = lastWidth + 'px';
                }
            }
        }
 
        Iif (context.originalWidth > 0) {
            const newWidth = context.originalWidth + change + 'px';
 
            mutableTable.format.width = newWidth;
            table.style.width = newWidth;
        }
 
        return true;
    } else {
        return false;
    }
}
 
function setHorizontalPosition(context: CellResizerContext, trigger: HTMLElement) {
    const { td } = context;
    const rect = normalizeRect(td.getBoundingClientRect());
    Eif (rect) {
        trigger.id = HORIZONTAL_RESIZER_ID;
        trigger.style.top = rect.bottom - CELL_RESIZER_WIDTH + 'px';
        trigger.style.left = rect.left + 'px';
        trigger.style.width = rect.right - rect.left + 'px';
        trigger.style.height = CELL_RESIZER_WIDTH + 'px';
    }
}
 
function setVerticalPosition(context: CellResizerContext, trigger: HTMLElement) {
    const { td, isRTL } = context;
    const rect = normalizeRect(td.getBoundingClientRect());
    Eif (rect) {
        trigger.id = VERTICAL_RESIZER_ID;
        trigger.style.top = rect.top + 'px';
        trigger.style.left = (isRTL ? rect.left : rect.right) - CELL_RESIZER_WIDTH + 1 + 'px';
        trigger.style.width = CELL_RESIZER_WIDTH + 'px';
        trigger.style.height = rect.bottom - rect.top + 'px';
    }
}