UNPKG

@atlaskit/editor-plugin-layout

Version:

Layout plugin for @atlaskit/editor-core

971 lines (944 loc) 36.6 kB
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD, LAYOUT_TYPE } from '@atlaskit/editor-common/analytics'; import { withAnalytics } from '@atlaskit/editor-common/editor-analytics'; import { flatmap, getStepRange, isEmptyDocument, mapChildren } from '@atlaskit/editor-common/utils'; import { Fragment, Slice } from '@atlaskit/editor-prosemirror/model'; import { NodeSelection, TextSelection } from '@atlaskit/editor-prosemirror/state'; import { Mapping, StepMap } from '@atlaskit/editor-prosemirror/transform'; import { safeInsert } from '@atlaskit/editor-prosemirror/utils'; import { fg } from '@atlaskit/platform-feature-flags'; import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals'; import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments'; import { DEFAULT_LAYOUT_COLUMN_VALIGN, EVEN_DISTRIBUTED_COL_WIDTHS, MAX_LAYOUT_COLUMNS, MAX_STANDARD_LAYOUT_COLUMNS, MIN_LAYOUT_COLUMN_WIDTH_PERCENT } from './consts'; import { pluginKey } from './plugin-key'; import { calculateDistribution, isDistributedUniformly, redistributeAfterDeletion, redistributeProportionally } from './utils/layout-column-distribution'; import { getAllLayoutColumnsFromSelection, getLayoutColumnsFromContentSelection, getLayoutColumnValign, getSelectedLayoutColumnsFromSelection } from './utils/layout-column-selection'; export const ONE_COL_LAYOUTS = ['single']; export const TWO_COL_LAYOUTS = ['two_equal', 'two_left_sidebar', 'two_right_sidebar']; export const THREE_COL_LAYOUTS = ['three_equal', 'three_with_sidebars']; const getWidthsForPreset = presetLayout => { if (editorExperiment('advanced_layouts', true)) { switch (presetLayout) { case 'single': return [100]; case 'two_equal': return [50, 50]; case 'three_equal': return [33.33, 33.33, 33.33]; case 'two_left_sidebar': return [33.33, 66.66]; case 'two_right_sidebar': return [66.66, 33.33]; case 'three_with_sidebars': return [25, 50, 25]; case 'three_left_sidebars': return [25, 25, 50]; case 'three_right_sidebars': return [50, 25, 25]; case 'four_equal': return [25, 25, 25, 25]; case 'five_equal': return [20, 20, 20, 20, 20]; } } switch (presetLayout) { case 'single': return [100]; case 'two_equal': return [50, 50]; case 'three_equal': return [33.33, 33.33, 33.33]; case 'two_left_sidebar': return [33.33, 66.66]; case 'two_right_sidebar': return [66.66, 33.33]; case 'three_with_sidebars': return [25, 50, 25]; } return []; }; const isValidLayoutWidthDistributions = layoutSection => { let totalWidth = 0; let hasInvalidWidth = false; mapChildren(layoutSection, column => column.attrs.width).forEach(width => { if (typeof width === 'number' && isFinite(width) && width > 0 && width <= 100) { totalWidth += width; } else { hasInvalidWidth = true; } }); return !hasInvalidWidth && Math.round(totalWidth) === 100; }; /** * Finds layout preset based on the width attrs of all the layoutColumn nodes * inside the layoutSection node */ export const getPresetLayout = section => { const widths = mapChildren(section, column => column.attrs.width).join(','); if (editorExperiment('advanced_layouts', true)) { switch (widths) { case '100': return 'single'; case '33.33,33.33,33.33': return 'three_equal'; case '25,50,25': return 'three_with_sidebars'; case '50,25,25': return 'three_right_sidebars'; case '25,25,50': return 'three_left_sidebars'; case '50,50': return 'two_equal'; case '33.33,66.66': return 'two_left_sidebar'; case '66.66,33.33': return 'two_right_sidebar'; case '25,25,25,25': return 'four_equal'; case '20,20,20,20,20': return 'five_equal'; } return; } switch (widths) { case '100': return 'single'; case '33.33,33.33,33.33': return 'three_equal'; case '25,50,25': return 'three_with_sidebars'; case '50,50': return 'two_equal'; case '33.33,66.66': return 'two_left_sidebar'; case '66.66,33.33': return 'two_right_sidebar'; } return; }; const isLayoutOutOfSync = (node, presetLayout) => { return node.childCount !== getWidthsForPreset(presetLayout).length; }; export const getSelectedLayout = (maybeLayoutSection, current) => { if (maybeLayoutSection && isLayoutOutOfSync(maybeLayoutSection, current) && editorExperiment('advanced_layouts', true)) { return getDefaultPresetLayout(maybeLayoutSection); } if (maybeLayoutSection && getPresetLayout(maybeLayoutSection)) { return getPresetLayout(maybeLayoutSection) || current; } return current; }; export const createMultiColumnLayoutSection = (state, numberOfColumns = 2) => { const { layoutSection, layoutColumn } = state.schema.nodes; const columns = Fragment.fromArray(Array.from({ length: numberOfColumns }, () => layoutColumn.createAndFill({ width: EVEN_DISTRIBUTED_COL_WIDTHS[numberOfColumns] }))); return layoutSection.createAndFill(undefined, columns); }; export const createDefaultLayoutSection = state => { const { layoutSection, layoutColumn } = state.schema.nodes; // create a 50-50 layout by default const columns = Fragment.fromArray([layoutColumn.createAndFill({ width: 50 }), layoutColumn.createAndFill({ width: 50 })]); return layoutSection.createAndFill(undefined, columns); }; export const insertLayoutColumns = (state, dispatch) => { if (dispatch) { dispatch(safeInsert(createDefaultLayoutSection(state))(state.tr)); } return true; }; export const insertLayoutColumnsWithAnalytics = editorAnalyticsAPI => inputMethod => withAnalytics(editorAnalyticsAPI, { action: ACTION.INSERTED, actionSubject: ACTION_SUBJECT.DOCUMENT, actionSubjectId: ACTION_SUBJECT_ID.LAYOUT, attributes: { inputMethod: fg('platform_editor_element_browser_analytic') ? inputMethod : INPUT_METHOD.QUICK_INSERT, columnCount: fg('platform_editor_column_count_analytics') ? 2 : undefined }, eventType: EVENT_TYPE.TRACK })((state, dispatch) => { if (dispatch) { dispatch(safeInsert(createDefaultLayoutSection(state))(state.tr)); } return true; }); /** * Add a column to the right of existing layout */ function addColumn(schema, pos) { if (editorExperiment('advanced_layouts', false)) { return tr => { tr.replaceWith(tr.mapping.map(pos), tr.mapping.map(pos), schema.nodes.layoutColumn.createAndFill()); }; } return tr => { tr.replaceWith(tr.mapping.map(pos), tr.mapping.map(pos), schema.nodes.layoutColumn.createAndFill(undefined)); }; } function removeLastColumnInLayout(column, columnPos, insideRightEdgePos) { return tr => { // check if the column only contains a paragraph with a placeholder text // if so, remove the whole column, otherwise just remove the paragraph if (isEmptyDocument(column)) { const fromPos = editorExperiment('single_column_layouts', true) ? columnPos : columnPos - 1; tr.replaceRange(tr.mapping.map(fromPos), tr.mapping.map(insideRightEdgePos), Slice.empty); } else { tr.replaceRange(tr.mapping.map(columnPos - 1), tr.mapping.map(columnPos + 1), Slice.empty); } }; } const fromTwoColsToThree = addColumn; const fromOneColToTwo = addColumn; const fromTwoColsToOne = removeLastColumnInLayout; const fromThreeColsToTwo = removeLastColumnInLayout; const fromOneColToThree = (schema, pos) => { return tr => { addColumn(schema, pos)(tr); addColumn(schema, pos)(tr); }; }; const fromThreeColstoOne = (node, tr, insideRightEdgePos) => { const thirdColumn = node.content.child(2); fromThreeColsToTwo(thirdColumn, insideRightEdgePos - thirdColumn.nodeSize, insideRightEdgePos)(tr); const secondColumn = node.content.child(1); fromTwoColsToOne(secondColumn, insideRightEdgePos - thirdColumn.nodeSize - secondColumn.nodeSize, insideRightEdgePos)(tr); }; const increaseColumns = (schema, pos, newColumnsNumber = 1) => { return tr => { for (let i = 0; i < newColumnsNumber; i++) { addColumn(schema, pos)(tr); } }; }; const decreaseColumns = (node, insideRightEdgePos, columnsNumberToRemove = 1) => { return tr => { let endPos = insideRightEdgePos; let lastColumn = node.content.lastChild; for (let i = 0; i < columnsNumberToRemove; i++) { var _lastColumn; lastColumn && removeLastColumnInLayout(lastColumn, endPos - lastColumn.nodeSize, endPos)(tr); endPos -= ((_lastColumn = lastColumn) === null || _lastColumn === void 0 ? void 0 : _lastColumn.nodeSize) || 0; lastColumn = node.content.child(node.childCount - i - 2); } }; }; /** * Handles switching from 2 -> 3 cols, or 3 -> 2 cols * Switching from 2 -> 3 just adds a new one at the end * Switching from 3 -> 2 moves all the content of the third col inside the second before * removing it */ function forceColumnStructure(state, node, pos, presetLayout) { const tr = state.tr; const insideRightEdgeOfLayoutSection = pos + node.nodeSize - 1; const numCols = node.childCount; // 3 columns -> 2 columns if (TWO_COL_LAYOUTS.indexOf(presetLayout) >= 0 && numCols === 3) { const thirdColumn = node.content.child(2); const columnPos = insideRightEdgeOfLayoutSection - thirdColumn.nodeSize; fromThreeColsToTwo(thirdColumn, columnPos, insideRightEdgeOfLayoutSection)(tr); // 2 columns -> 3 columns } else if (THREE_COL_LAYOUTS.indexOf(presetLayout) >= 0 && numCols === 2) { fromTwoColsToThree(state.schema, insideRightEdgeOfLayoutSection)(tr); // 2 columns -> 1 column } else if (ONE_COL_LAYOUTS.indexOf(presetLayout) >= 0 && numCols === 2) { const secondColumn = node.content.child(1); const columnPos = insideRightEdgeOfLayoutSection - secondColumn.nodeSize; fromTwoColsToOne(secondColumn, columnPos, insideRightEdgeOfLayoutSection)(tr); // 3 columns -> 1 column } else if (ONE_COL_LAYOUTS.indexOf(presetLayout) >= 0 && numCols === 3) { fromThreeColstoOne(node, tr, insideRightEdgeOfLayoutSection); // 1 column -> 2 columns } else if (TWO_COL_LAYOUTS.indexOf(presetLayout) >= 0 && numCols === 1) { fromOneColToTwo(state.schema, insideRightEdgeOfLayoutSection)(tr); // 1 column -> 3 columns } else if (THREE_COL_LAYOUTS.indexOf(presetLayout) >= 0 && numCols === 1) { fromOneColToThree(state.schema, insideRightEdgeOfLayoutSection)(tr); } return tr; } function forceColumnStructureNew(state, node, pos, presetLayout) { const tr = state.tr; const insideRightEdgeOfLayoutSection = pos + node.nodeSize - 1; const numCols = node.childCount; const columnChange = getWidthsForPreset(presetLayout).length - numCols; if (columnChange > 0) { increaseColumns(state.schema, insideRightEdgeOfLayoutSection, columnChange)(tr); } else if (columnChange < 0) { decreaseColumns(node, insideRightEdgeOfLayoutSection, -columnChange)(tr); } return tr; } function columnWidth(node, schema, widths) { const { layoutColumn } = schema.nodes; const truncatedWidths = widths.map(w => Number(w.toFixed(2))); return flatmap(node.content, (column, idx) => { if (column.type === layoutColumn) { return layoutColumn.create({ ...column.attrs, width: truncatedWidths[idx] }, column.content, column.marks); } else { return column; } }); } function forceColumnWidths(state, tr, pos, presetLayout) { const node = tr.doc.nodeAt(pos); if (!node) { return tr; } return tr.replaceWith(pos + 1, pos + node.nodeSize - 1, columnWidth(node, state.schema, getWidthsForPreset(presetLayout))); } /** * Forces a layout section node to match the given preset layout by adjusting * its column structure and widths, then restoring the original selection. */ export function forceSectionToPresetLayout(state, node, pos, presetLayout) { const forceColumnStructureFn = editorExperiment('advanced_layouts', true) ? forceColumnStructureNew : forceColumnStructure; let tr = forceColumnStructureFn(state, node, pos, presetLayout); // save the selection here, since forcing column widths causes a change over the // entire layoutSection, which remaps selection to the end. not remapping here // is safe because the structure is no longer changing. const selection = tr.selection; tr = forceColumnWidths(state, tr, pos, presetLayout); const selectionPos$ = tr.doc.resolve(selection.$from.pos); return tr.setSelection(state.selection instanceof NodeSelection ? new NodeSelection(selectionPos$) : new TextSelection(selectionPos$)); } export const setPresetLayout = editorAnalyticsAPI => layout => (state, dispatch) => { const { pos, selectedLayout } = pluginKey.getState(state); if (pos === null) { return false; } const node = state.doc.nodeAt(pos); if (!node) { return false; } if (selectedLayout === layout && node.childCount > 1) { return false; } const tr = forceSectionToPresetLayout(state, node, pos, layout); if (tr) { editorAnalyticsAPI === null || editorAnalyticsAPI === void 0 ? void 0 : editorAnalyticsAPI.attachAnalyticsEvent({ action: ACTION.CHANGED_LAYOUT, actionSubject: ACTION_SUBJECT.LAYOUT, attributes: { previousLayout: formatLayoutName(selectedLayout), newLayout: formatLayoutName(layout) }, eventType: EVENT_TYPE.TRACK })(tr); tr.setMeta('scrollIntoView', false); if (dispatch) { dispatch(tr); } return true; } return false; }; function layoutNeedChanges(node) { if (editorExperiment('advanced_layouts', true)) { if (editorExperiment('platform_editor_layout_column_resize_handle', true)) { // Custom widths that sum to 100% are valid and should not be forced back to presets if (isValidLayoutWidthDistributions(node)) { return false; } return true; } return !getPresetLayout(node) || !isValidLayoutWidthDistributions(node); } return !getPresetLayout(node); } const getDefaultPresetLayout = layoutNode => { const layoutColumnCount = layoutNode.childCount; if (layoutColumnCount <= 1) { return 'single'; } switch (layoutColumnCount) { case 1: return 'single'; case 2: return 'two_equal'; case 3: return 'three_equal'; case 4: return 'four_equal'; case 5: return 'five_equal'; default: return 'five_equal'; } }; function getLayoutChange(node, pos, schema) { if (node.type === schema.nodes.layoutSection) { if (!layoutNeedChanges(node)) { return; } const presetLayout = editorExperiment('advanced_layouts', true) ? getDefaultPresetLayout(node) : node.childCount === 2 ? 'two_equal' : node.childCount === 3 ? 'three_equal' : 'single'; const fixedColumns = columnWidth(node, schema, getWidthsForPreset(presetLayout)); return { from: pos + 1, to: pos + node.nodeSize - 1, slice: new Slice(fixedColumns, 0, 0) }; } } export const fixColumnSizes = (changedTr, state) => { const { layoutSection } = state.schema.nodes; let change; const range = getStepRange(changedTr); if (!range) { return undefined; } changedTr.doc.nodesBetween(range.from, range.to, (node, pos) => { if (node.type !== layoutSection) { return true; // Check all internal nodes expect for layout section } // Node is a section if (layoutNeedChanges(node)) { change = getLayoutChange(node, pos, state.schema); } return false; // We dont go deep, We dont accept nested layouts }); // Hack to prevent: https://product-fabric.atlassian.net/browse/ED-7523 // By default prosemirror try to recreate the node with the default attributes // The default attribute is invalid adf though. when this happen the node after // current position is a layout section const $pos = changedTr.doc.resolve(range.to); if ($pos.depth > 0) { // 'range.to' position could resolve to doc, in this ResolvedPos.after will throws const pos = $pos.after(); const node = changedTr.doc.nodeAt(pos); if (node && node.type === layoutSection && layoutNeedChanges(node)) { change = getLayoutChange(node, pos, state.schema); } } return change; }; export const fixColumnStructure = state => { const { pos, selectedLayout } = pluginKey.getState(state); if (pos !== null && selectedLayout) { const node = state.doc.nodeAt(pos); if (node) { if (node.childCount !== getWidthsForPreset(selectedLayout).length) { // If the resize handle experiment is on and widths are valid, don't force preset // (column count mismatch might be from a different preset being selected) if (editorExperiment('advanced_layouts', true) && editorExperiment('platform_editor_layout_column_resize_handle', true) && isValidLayoutWidthDistributions(node)) { return; } return forceSectionToPresetLayout(state, node, pos, selectedLayout); } if (!isValidLayoutWidthDistributions(node) && editorExperiment('advanced_layouts', true)) { return forceSectionToPresetLayout(state, node, pos, selectedLayout); } } } return; }; export const deleteActiveLayoutNode = (editorAnalyticsAPI, inputMethod) => (state, dispatch) => { const { pos, selectedLayout } = pluginKey.getState(state); if (pos !== null) { const node = state.doc.nodeAt(pos); if (dispatch) { const tr = state.tr.delete(pos, pos + node.nodeSize); editorAnalyticsAPI === null || editorAnalyticsAPI === void 0 ? void 0 : editorAnalyticsAPI.attachAnalyticsEvent({ action: ACTION.DELETED, actionSubject: ACTION_SUBJECT.LAYOUT, attributes: { layout: formatLayoutName(selectedLayout), inputMethod }, eventType: EVENT_TYPE.TRACK })(tr); dispatch(tr); } return true; } return false; }; const formatLayoutName = layout => { if (editorExperiment('advanced_layouts', true)) { switch (layout) { case 'single': return LAYOUT_TYPE.SINGLE_COL; case 'two_equal': return LAYOUT_TYPE.TWO_COLS_EQUAL; case 'three_equal': return LAYOUT_TYPE.THREE_COLS_EQUAL; case 'two_left_sidebar': return LAYOUT_TYPE.LEFT_SIDEBAR; case 'two_right_sidebar': return LAYOUT_TYPE.RIGHT_SIDEBAR; case 'three_with_sidebars': return LAYOUT_TYPE.THREE_WITH_SIDEBARS; case 'four_equal': return LAYOUT_TYPE.FOUR_COLS_EQUAL; case 'five_equal': return LAYOUT_TYPE.FIVE_COLS_EQUAL; } } switch (layout) { case 'single': return LAYOUT_TYPE.SINGLE_COL; case 'two_equal': return LAYOUT_TYPE.TWO_COLS_EQUAL; case 'three_equal': return LAYOUT_TYPE.THREE_COLS_EQUAL; case 'two_left_sidebar': return LAYOUT_TYPE.LEFT_SIDEBAR; case 'two_right_sidebar': return LAYOUT_TYPE.RIGHT_SIDEBAR; case 'three_with_sidebars': return LAYOUT_TYPE.THREE_WITH_SIDEBARS; } }; export const LAYOUT_COLUMN_INSERT_META = 'layoutColumnInsert'; const getPreviousLayoutColumnValign = selectedLayoutColumns => { var _selectedLayoutColumn; const firstValign = getLayoutColumnValign((_selectedLayoutColumn = selectedLayoutColumns[0]) === null || _selectedLayoutColumn === void 0 ? void 0 : _selectedLayoutColumn.node); const hasMixedValign = selectedLayoutColumns.some(({ node }) => getLayoutColumnValign(node) !== firstValign); return hasMixedValign ? 'mixed' : firstValign !== null && firstValign !== void 0 ? firstValign : DEFAULT_LAYOUT_COLUMN_VALIGN; }; const hasLayoutColumnContent = node => !isEmptyDocument(node); /** * Remaps a selection through a position mapping, preserving its type. Used after replacing a * layout section's contents so the selection stays in its column instead of being mapped out * of the layout. Returns `undefined` if no valid selection can be derived (NodeSelection * whose node is no longer selectable falls back to a nearby caret). */ const remapSelectionThroughMapping = (selection, mapping, doc) => { const docSize = doc.content.size; const clamp = pos => Math.min(Math.max(pos, 0), docSize); if (selection instanceof NodeSelection) { var _TextSelection$findFr; const mappedPos = clamp(mapping.map(selection.from)); const nodeAtPos = doc.nodeAt(mappedPos); if (nodeAtPos && NodeSelection.isSelectable(nodeAtPos)) { return NodeSelection.create(doc, mappedPos); } return (_TextSelection$findFr = TextSelection.findFrom(doc.resolve(mappedPos), 1, true)) !== null && _TextSelection$findFr !== void 0 ? _TextSelection$findFr : undefined; } if (selection instanceof TextSelection) { const mappedFrom = clamp(mapping.map(selection.from)); const mappedTo = clamp(mapping.map(selection.to)); try { return TextSelection.create(doc, mappedFrom, mappedTo); } catch { return undefined; } } return undefined; }; const mapLayoutColumnPreservedSelection = (tr, api) => { const insertMeta = tr.getMeta(LAYOUT_COLUMN_INSERT_META); if (insertMeta) { var _api$blockControls; const mapping = insertMeta.side === 'left' ? new Mapping([new StepMap([insertMeta.insertedColumnPos, 0, insertMeta.insertedColumnNodeSize])]) : new Mapping(); api === null || api === void 0 ? void 0 : (_api$blockControls = api.blockControls) === null || _api$blockControls === void 0 ? void 0 : _api$blockControls.commands.mapPreservedSelection(mapping)({ tr }); return; } // Width and alignment updates should keep original layout column selection unchanged. if (tr.getMeta('scrollIntoView') === false && tr.docChanged) { var _api$blockControls2; api === null || api === void 0 ? void 0 : (_api$blockControls2 = api.blockControls) === null || _api$blockControls2 === void 0 ? void 0 : _api$blockControls2.commands.mapPreservedSelection(new Mapping())({ tr }); } }; /** * Returns the active maximum layout column count for the current advanced layouts experiment state. */ export function getEffectiveMaxLayoutColumns() { return editorExperiment('advanced_layouts', true) ? MAX_LAYOUT_COLUMNS : MAX_STANDARD_LAYOUT_COLUMNS; } const insertLayoutColumnAt = (side, editorAnalyticsAPI, inputMethod = INPUT_METHOD.LAYOUT_COLUMN_MENU) => ({ tr }) => { if (!expValEquals('platform_editor_layout_column_menu', 'isEnabled', true)) { return null; } const selectedLayoutColumnsResult = getLayoutColumnsFromContentSelection(tr.selection); if (!selectedLayoutColumnsResult || selectedLayoutColumnsResult.selectedLayoutColumns.length === 0) { return null; } const { layoutSectionNode, layoutSectionPos, startIndex, endIndex, selectedLayoutColumns } = selectedLayoutColumnsResult; const selectedColumnIndex = side === 'left' ? startIndex : endIndex; const selectedColumnCount = selectedLayoutColumns.length; if (layoutSectionNode.childCount >= getEffectiveMaxLayoutColumns()) { return null; } const insertIndex = side === 'left' ? selectedColumnIndex : selectedColumnIndex + 1; const existingWidths = mapChildren(layoutSectionNode, column => column.attrs.width); const redistributedWidths = redistributeProportionally(existingWidths, insertIndex, getEffectiveMaxLayoutColumns(), MIN_LAYOUT_COLUMN_WIDTH_PERCENT); if (redistributedWidths === existingWidths) { return null; } const { layoutColumn } = tr.doc.type.schema.nodes; const newColumn = layoutColumn.createAndFill({ width: redistributedWidths[insertIndex] }); if (!newColumn) { return null; } const updatedColumns = []; layoutSectionNode.forEach((column, _offset, index) => { if (index === insertIndex) { updatedColumns.push(newColumn); } updatedColumns.push(column); }); if (insertIndex === layoutSectionNode.childCount) { updatedColumns.push(newColumn); } const updatedLayoutSectionNode = layoutSectionNode.copy(Fragment.fromArray(updatedColumns)); let insertedColumnOffset = 0; layoutSectionNode.forEach((column, _offset, index) => { if (index < insertIndex) { insertedColumnOffset += column.nodeSize; } }); const insertedColumnPos = layoutSectionPos + 1 + insertedColumnOffset; tr.setMeta(LAYOUT_COLUMN_INSERT_META, { insertedColumnNodeSize: newColumn.nodeSize, insertedColumnPos, side }); // Capture the selection before the section content is replaced (the replace below maps // it out of the layout by default). The menu path restores its own preserved selection // afterwards, so this restoration only matters for the cursor-in-column case. const originalSelection = tr.selection; tr.replaceWith(layoutSectionPos + 1, layoutSectionPos + layoutSectionNode.nodeSize - 1, columnWidth(updatedLayoutSectionNode, tr.doc.type.schema, redistributedWidths)); // Inserting left shifts positions at/after the new column right by its size; inserting // right leaves them unchanged. Remap the original selection through that mapping. if (!fg('platform_editor_layout_column_menu_kill_switch_1')) { const insertMapping = side === 'left' ? new Mapping([new StepMap([insertedColumnPos, 0, newColumn.nodeSize])]) : new Mapping(); const restoredSelection = remapSelectionThroughMapping(originalSelection, insertMapping, tr.doc); if (restoredSelection) { tr.setSelection(restoredSelection); } } editorAnalyticsAPI === null || editorAnalyticsAPI === void 0 ? void 0 : editorAnalyticsAPI.attachAnalyticsEvent({ action: ACTION.INSERTED, actionSubject: ACTION_SUBJECT.DOCUMENT, actionSubjectId: ACTION_SUBJECT_ID.LAYOUT_COLUMN, attributes: { endIndex, inputMethod, newColumnCount: redistributedWidths.length, previousColumnCount: layoutSectionNode.childCount, selectedCount: selectedColumnCount, side, startIndex }, eventType: EVENT_TYPE.TRACK })(tr); tr.setMeta('scrollIntoView', false); return tr; }; export const insertLayoutColumn = ({ side, inputMethod = INPUT_METHOD.LAYOUT_COLUMN_MENU }, editorAnalyticsAPI, api) => ({ tr }) => { const result = insertLayoutColumnAt(side, editorAnalyticsAPI, inputMethod)({ tr }); if (result) { mapLayoutColumnPreservedSelection(tr, api); } return result; }; export const setLayoutColumnValign = ({ valign, inputMethod = INPUT_METHOD.LAYOUT_COLUMN_MENU }, editorAnalyticsAPI, api) => ({ tr }) => { if (!expValEquals('platform_editor_layout_column_menu', 'isEnabled', true)) { return null; } const selectedLayoutColumnsResult = getSelectedLayoutColumnsFromSelection(tr.selection); if (!selectedLayoutColumnsResult) { return null; } const { layoutSectionNode, startIndex, endIndex, selectedLayoutColumns } = selectedLayoutColumnsResult; const previousValign = getPreviousLayoutColumnValign(selectedLayoutColumns); const columnsToUpdate = selectedLayoutColumns.filter(({ node }) => getLayoutColumnValign(node) !== valign); if (columnsToUpdate.length === 0) { return null; } const updatedColumnCount = columnsToUpdate.length; columnsToUpdate.forEach(({ node, pos }) => { tr.setNodeMarkup(pos, node.type, { ...node.attrs, valign }); }); editorAnalyticsAPI === null || editorAnalyticsAPI === void 0 ? void 0 : editorAnalyticsAPI.attachAnalyticsEvent({ action: ACTION.UPDATED, actionSubject: ACTION_SUBJECT.DOCUMENT, actionSubjectId: ACTION_SUBJECT_ID.LAYOUT_COLUMN, attributes: { columnCount: layoutSectionNode.childCount, endIndex, inputMethod, previousValign, selectedCount: selectedLayoutColumns.length, startIndex, updatedCount: updatedColumnCount, valign }, eventType: EVENT_TYPE.TRACK })(tr); tr.setMeta('scrollIntoView', false); mapLayoutColumnPreservedSelection(tr, api); return tr; }; export const distributeLayoutColumns = (editorAnalyticsAPI, api) => ({ inputMethod = INPUT_METHOD.LAYOUT_COLUMN_MENU, target = 'selectedColumns' } = {}) => ({ tr }) => { if (!expValEquals('platform_editor_layout_column_menu', 'isEnabled', true)) { return null; } const selectedLayoutColumnsResult = target === 'allColumns' ? getAllLayoutColumnsFromSelection(tr.selection) : getSelectedLayoutColumnsFromSelection(tr.selection); if (!selectedLayoutColumnsResult || selectedLayoutColumnsResult.selectedLayoutColumns.length < 2) { return null; } const { layoutSectionNode, startIndex, endIndex, selectedLayoutColumns } = selectedLayoutColumnsResult; const existingWidths = mapChildren(layoutSectionNode, column => column.attrs.width); const selectedWidths = selectedLayoutColumns.map(({ node }) => node.attrs.width); const distribution = calculateDistribution(selectedWidths); if (!distribution) { return null; } const { selectedTotal, equalWidth } = distribution; if (isDistributedUniformly(selectedWidths, distribution)) { return null; } // Build new widths array: selected columns get equal share, unselected unchanged. // Assign rounded (2dp) equal widths to all selected cols except the last, which absorbs // the rounding remainder so the sum of selected widths equals selectedTotal exactly. let assignedToSelected = 0; let selectedAssignedCount = 0; const newWidths = existingWidths.map((w, idx) => { if (idx < startIndex || idx > endIndex) { return w; } selectedAssignedCount += 1; if (selectedAssignedCount < selectedLayoutColumns.length) { assignedToSelected += equalWidth; return equalWidth; } // Last selected column: absorb the remainder to avoid drift return Number((selectedTotal - assignedToSelected).toFixed(2)); }); // Apply widths via setNodeMarkup per selected column — keeps nodes in place (preserves identity, marks, decorations) selectedLayoutColumns.forEach(({ node, pos }, i) => { const colIdx = startIndex + i; tr.setNodeMarkup(pos, node.type, { ...node.attrs, width: newWidths[colIdx] }); }); editorAnalyticsAPI === null || editorAnalyticsAPI === void 0 ? void 0 : editorAnalyticsAPI.attachAnalyticsEvent({ action: ACTION.UPDATED, actionSubject: ACTION_SUBJECT.DOCUMENT, actionSubjectId: ACTION_SUBJECT_ID.LAYOUT_COLUMN, attributes: { columnCount: layoutSectionNode.childCount, endIndex, inputMethod, selectedCount: selectedLayoutColumns.length, startIndex, target }, eventType: EVENT_TYPE.TRACK })(tr); tr.setMeta('scrollIntoView', false); mapLayoutColumnPreservedSelection(tr, api); return tr; }; // Omitting `isOpen` (toggle) requires `anchorPos`, so a toggle can never open the menu // without a valid anchor. Explicit open/close keeps `anchorPos` optional (close needs none). export const toggleLayoutColumnMenu = options => ({ tr }) => { tr.setMeta('toggleLayoutColumnMenu', options); tr.setMeta('scrollIntoView', false); return tr; }; export const setLayoutColumnDangerPreview = show => ({ tr }) => { var _selectedLayoutColumn2; const selectedLayoutColumnsResult = getSelectedLayoutColumnsFromSelection(tr.selection); const positions = show ? (_selectedLayoutColumn2 = selectedLayoutColumnsResult === null || selectedLayoutColumnsResult === void 0 ? void 0 : selectedLayoutColumnsResult.selectedLayoutColumns.map(({ pos }) => pos)) !== null && _selectedLayoutColumn2 !== void 0 ? _selectedLayoutColumn2 : [] : null; tr.setMeta('layoutColumnDangerPreview', positions); tr.setMeta('addToHistory', false); tr.setMeta('scrollIntoView', false); return tr; }; export const deleteLayoutColumn = ({ inputMethod = INPUT_METHOD.LAYOUT_COLUMN_MENU } = {}, editorAnalyticsAPI, api) => ({ tr }) => { var _api$blockControls4; if (!expValEquals('platform_editor_layout_column_menu', 'isEnabled', true)) { return null; } const selectedLayoutColumnsResult = getLayoutColumnsFromContentSelection(tr.selection); if (!selectedLayoutColumnsResult || selectedLayoutColumnsResult.selectedLayoutColumns.length === 0) { return null; } const { layoutSectionNode, layoutSectionPos, selectedLayoutColumns, startIndex, endIndex } = selectedLayoutColumnsResult; const hadContent = selectedLayoutColumns.some(({ node }) => hasLayoutColumnContent(node)); const emitDeleteColumnAnalytics = newColumnCount => { editorAnalyticsAPI === null || editorAnalyticsAPI === void 0 ? void 0 : editorAnalyticsAPI.attachAnalyticsEvent({ action: ACTION.DELETED, actionSubject: ACTION_SUBJECT.DOCUMENT, actionSubjectId: ACTION_SUBJECT_ID.LAYOUT_COLUMN, attributes: { endIndex, hadContent, inputMethod, newColumnCount, previousColumnCount: layoutSectionNode.childCount, selectedCount: selectedLayoutColumns.length, startIndex }, eventType: EVENT_TYPE.TRACK })(tr); }; // If all columns are selected, remove the entire layoutSection if (selectedLayoutColumns.length === layoutSectionNode.childCount) { var _api$blockControls3; tr.delete(layoutSectionPos, layoutSectionPos + layoutSectionNode.nodeSize); emitDeleteColumnAnalytics(0); tr.setMeta('scrollIntoView', false); api === null || api === void 0 ? void 0 : (_api$blockControls3 = api.blockControls) === null || _api$blockControls3 === void 0 ? void 0 : _api$blockControls3.commands.stopPreservingSelection()({ tr }); return tr; } // Build new column list without the selected columns const remainingColumns = []; layoutSectionNode.forEach((column, _offset, index) => { if (index < startIndex || index > endIndex) { remainingColumns.push(column); } }); // Redistribute widths proportionally among remaining columns using shared utility const existingWidths = mapChildren(layoutSectionNode, column => column.attrs.width); const redistributed = selectedLayoutColumns.map((_, i) => startIndex + i) // Delete highest indices first so lower original indices still point at the same columns // as each redistribution step shrinks the widths array. .reverse().reduce((widths, selectedIndex) => redistributeAfterDeletion(widths, selectedIndex, MIN_LAYOUT_COLUMN_WIDTH_PERCENT), existingWidths); const updatedLayoutSectionNode = layoutSectionNode.copy(Fragment.fromArray(remainingColumns)); // The cursor-in-column (keyboard) path has a plain text selection; the menu path has a // column NodeSelection whose post-delete landing is owned by the block-controls // preserved-selection plugin, so we only restore the caret for the former. const hadTextSelection = tr.selection instanceof TextSelection; tr.replaceWith(layoutSectionPos + 1, layoutSectionPos + layoutSectionNode.nodeSize - 1, columnWidth(updatedLayoutSectionNode, tr.doc.type.schema, redistributed)); // Land the caret in a remaining column — the one now occupying the deleted slot, or the // last column when the deleted slot no longer exists. Otherwise the replace above maps // the caret out of the layout to the following paragraph. const remainingColumnCount = remainingColumns.length; if (hadTextSelection && !fg('platform_editor_layout_column_menu_kill_switch_1') && remainingColumnCount > 0) { const targetColumnIndex = Math.min(startIndex, remainingColumnCount - 1); const updatedSectionNode = tr.doc.nodeAt(layoutSectionPos); if (updatedSectionNode) { let columnOffset = 1; for (let columnIndex = 0; columnIndex < targetColumnIndex; columnIndex++) { columnOffset += updatedSectionNode.child(columnIndex).nodeSize; } // +1 to land inside the column's first child rather than on the column boundary. const caretPos = layoutSectionPos + columnOffset + 1; if (caretPos >= 0 && caretPos <= tr.doc.content.size) { const caretSelection = TextSelection.findFrom(tr.doc.resolve(caretPos), 1, true); if (caretSelection) { tr.setSelection(caretSelection); } } } } emitDeleteColumnAnalytics(redistributed.length); tr.setMeta('scrollIntoView', false); api === null || api === void 0 ? void 0 : (_api$blockControls4 = api.blockControls) === null || _api$blockControls4 === void 0 ? void 0 : _api$blockControls4.commands.stopPreservingSelection()({ tr }); return tr; };