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

91.4% Statements 85/93
74.51% Branches 38/51
100% Functions 6/6
91.11% Lines 82/90

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 2831x 1x 1x   1x                     1x       1x       1x         1x                   4x 4x       4x   4x   4x   4x                 4x 4x   4x             4x                 4x                                                                 1x 2x 1x     1x   1x 1x   1x                   2x     1x   1x 1x   1x                                           1x             4x 12x     4x   4x     4x     4x 4x 12x 12x 12x     4x                   1x           8x 12x     4x 4x     4x 4x   4x     2x       2x     2x 2x 2x           2x 2x       4x 12x 12x 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 {
    isElementOfType,
    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';
 
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
): 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 DragAndDropHelper<CellResizerContext, CellResizerInitValue>(
        div,
        context,
        setPosition,
        handler,
        zoomScale,
        editor.getEnvironment().isMobileOrTablet
    );
 
    return { node: td, div, featureHandler };
}
 
/**
 * @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;
    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
    const columnIndex = td.cellIndex;
    const row =
        td.parentElement && isElementOfType(td.parentElement, 'tr') ? td.parentElement : undefined;
    const rowIndex = row?.rowIndex;
 
    Iif (rowIndex == undefined) {
        return {
            cmTable: undefined,
            anchorColumn: undefined,
            anchorRow: undefined,
            anchorRowHeight: -1,
            allWidths: [],
        }; // Just a fallback
    }
 
    const { editor, table } = context;
 
    // Get Table block in content model
    const cmTable = getCMTableFromTable(editor, table);
 
    Eif (rect && cmTable) {
        onStart();
 
        return {
            cmTable,
            anchorColumn: columnIndex,
            anchorRow: rowIndex,
            anchorRowHeight: cmTable.rows[rowIndex].height,
            allWidths: [...cmTable.widths],
        };
    } else {
        return {
            cmTable,
            anchorColumn: undefined,
            anchorRow: undefined,
            anchorRowHeight: -1,
            allWidths: [],
        }; // Just a fallback
    }
}
 
/**
 * @internal
 * Exported for testing
 */
export function onDraggingHorizontal(
    context: CellResizerContext,
    event: MouseEvent,
    initValue: CellResizerInitValue,
    deltaX: number,
    deltaY: number
) {
    const { table } = context;
    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 = table.rows[anchorRow];
        for (let col = 0; col < tableRow.cells.length; col++) {
            const td = tableRow.cells[col];
            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, allWidths } = initValue;
 
    // Assign new widths and heights to the CM table
    Eif (cmTable && anchorColumn != undefined) {
        const mutableTable = mutateBlock(cmTable);
 
        // Modify the CM Table size
        const lastColumn = anchorColumn == cmTable.widths.length - 1;
        const change = deltaX * (isRTL ? -1 : 1);
        // This is the last column
        if (lastColumn) {
            // 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[anchorColumn + 1] - change;
            Iif (
                anchorChange < MIN_ALLOWED_TABLE_CELL_WIDTH ||
                nextAnchorChange < MIN_ALLOWED_TABLE_CELL_WIDTH
            ) {
                return false;
            }
            mutableTable.widths[anchorColumn] = anchorChange;
            mutableTable.widths[anchorColumn + 1] = nextAnchorChange;
        }
 
        // Writeback CM Table size changes to DOM Table
        for (let row = 0; row < table.rows.length; row++) {
            const tableRow = table.rows[row];
            for (let col = 0; col < tableRow.cells.length; col++) {
                const td = tableRow.cells[col];
 
                td.style.width = cmTable.widths[col] + 'px';
                td.style.boxSizing = 'border-box';
            }
        }
 
        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';
    }
}