| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /**
- * @module table/tablekeyboard
- */
- import TableSelection from './tableselection';
- import TableWalker from './tablewalker';
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
- import priorities from '@ckeditor/ckeditor5-utils/src/priorities';
- import {
- isArrowKeyCode,
- getLocalizedArrowKeyCodeDirection
- } from '@ckeditor/ckeditor5-utils/src/keyboard';
- import { getSelectedTableCells, getTableCellsContainingSelection } from './utils/selection';
- /**
- * This plugin enables keyboard navigation for tables.
- * It is loaded automatically by the {@link module:table/table~Table} plugin.
- *
- * @extends module:core/plugin~Plugin
- */
- export default class TableKeyboard extends Plugin {
- /**
- * @inheritDoc
- */
- static get pluginName() {
- return 'TableKeyboard';
- }
- /**
- * @inheritDoc
- */
- static get requires() {
- return [ TableSelection ];
- }
- /**
- * @inheritDoc
- */
- init() {
- const view = this.editor.editing.view;
- const viewDocument = view.document;
- // Handle Tab key navigation.
- this.editor.keystrokes.set( 'Tab', ( ...args ) => this._handleTabOnSelectedTable( ...args ), { priority: 'low' } );
- this.editor.keystrokes.set( 'Tab', this._getTabHandler( true ), { priority: 'low' } );
- this.editor.keystrokes.set( 'Shift+Tab', this._getTabHandler( false ), { priority: 'low' } );
- // Note: This listener has the "high-10" priority because it should allow the Widget plugin to handle the default
- // behavior first ("high") but it should not be "prevent–defaulted" by the Widget plugin ("high-20") because of
- // the fake selection retention on the fully selected widget.
- this.listenTo( viewDocument, 'keydown', ( ...args ) => this._onKeydown( ...args ), { priority: priorities.get( 'high' ) - 10 } );
- }
- /**
- * Handles {@link module:engine/view/document~Document#event:keydown keydown} events for the <kbd>Tab</kbd> key executed
- * when the table widget is selected.
- *
- * @private
- * @param {module:engine/view/observer/keyobserver~KeyEventData} data Key event data.
- * @param {Function} cancel The stop/stopPropagation/preventDefault function.
- */
- _handleTabOnSelectedTable( data, cancel ) {
- const editor = this.editor;
- const selection = editor.model.document.selection;
- const selectedElement = selection.getSelectedElement();
- if ( !selectedElement || !selectedElement.is( 'element', 'table' ) ) {
- return;
- }
- cancel();
- editor.model.change( writer => {
- writer.setSelection( writer.createRangeIn( selectedElement.getChild( 0 ).getChild( 0 ) ) );
- } );
- }
- /**
- * Returns a handler for {@link module:engine/view/document~Document#event:keydown keydown} events for the <kbd>Tab</kbd> key executed
- * inside table cells.
- *
- * @private
- * @param {Boolean} isForward Whether this handler will move the selection to the next or the previous cell.
- */
- _getTabHandler( isForward ) {
- const editor = this.editor;
- return ( domEventData, cancel ) => {
- const selection = editor.model.document.selection;
- let tableCell = getTableCellsContainingSelection( selection )[ 0 ];
- if ( !tableCell ) {
- tableCell = this.editor.plugins.get( 'TableSelection' ).getFocusCell();
- }
- if ( !tableCell ) {
- return;
- }
- cancel();
- const tableRow = tableCell.parent;
- const table = tableRow.parent;
- const currentRowIndex = table.getChildIndex( tableRow );
- const currentCellIndex = tableRow.getChildIndex( tableCell );
- const isFirstCellInRow = currentCellIndex === 0;
- if ( !isForward && isFirstCellInRow && currentRowIndex === 0 ) {
- // Set the selection over the whole table if the selection was in the first table cell.
- editor.model.change( writer => {
- writer.setSelection( writer.createRangeOn( table ) );
- } );
- return;
- }
- const isLastCellInRow = currentCellIndex === tableRow.childCount - 1;
- const isLastRow = currentRowIndex === table.childCount - 1;
- if ( isForward && isLastRow && isLastCellInRow ) {
- editor.execute( 'insertTableRowBelow' );
- // Check if the command actually added a row. If `insertTableRowBelow` execution didn't add a row (because it was disabled
- // or it got overwritten) set the selection over the whole table to mirror the first cell case.
- if ( currentRowIndex === table.childCount - 1 ) {
- editor.model.change( writer => {
- writer.setSelection( writer.createRangeOn( table ) );
- } );
- return;
- }
- }
- let cellToFocus;
- // Move to the first cell in the next row.
- if ( isForward && isLastCellInRow ) {
- const nextRow = table.getChild( currentRowIndex + 1 );
- cellToFocus = nextRow.getChild( 0 );
- }
- // Move to the last cell in the previous row.
- else if ( !isForward && isFirstCellInRow ) {
- const previousRow = table.getChild( currentRowIndex - 1 );
- cellToFocus = previousRow.getChild( previousRow.childCount - 1 );
- }
- // Move to the next/previous cell.
- else {
- cellToFocus = tableRow.getChild( currentCellIndex + ( isForward ? 1 : -1 ) );
- }
- editor.model.change( writer => {
- writer.setSelection( writer.createRangeIn( cellToFocus ) );
- } );
- };
- }
- /**
- * Handles {@link module:engine/view/document~Document#event:keydown keydown} events.
- *
- * @private
- * @param {module:utils/eventinfo~EventInfo} eventInfo
- * @param {module:engine/view/observer/domeventdata~DomEventData} domEventData
- */
- _onKeydown( eventInfo, domEventData ) {
- const editor = this.editor;
- const keyCode = domEventData.keyCode;
- if ( !isArrowKeyCode( keyCode ) ) {
- return;
- }
- const direction = getLocalizedArrowKeyCodeDirection( keyCode, editor.locale.contentLanguageDirection );
- const wasHandled = this._handleArrowKeys( direction, domEventData.shiftKey );
- if ( wasHandled ) {
- domEventData.preventDefault();
- domEventData.stopPropagation();
- eventInfo.stop();
- }
- }
- /**
- * Handles arrow keys to move the selection around the table.
- *
- * @private
- * @param {'left'|'up'|'right'|'down'} direction The direction of the arrow key.
- * @param {Boolean} expandSelection If the current selection should be expanded.
- * @returns {Boolean} Returns `true` if key was handled.
- */
- _handleArrowKeys( direction, expandSelection ) {
- const model = this.editor.model;
- const selection = model.document.selection;
- const isForward = [ 'right', 'down' ].includes( direction );
- // In case one or more table cells are selected (from outside),
- // move the selection to a cell adjacent to the selected table fragment.
- const selectedCells = getSelectedTableCells( selection );
- if ( selectedCells.length ) {
- let focusCell;
- if ( expandSelection ) {
- focusCell = this.editor.plugins.get( 'TableSelection' ).getFocusCell();
- } else {
- focusCell = isForward ? selectedCells[ selectedCells.length - 1 ] : selectedCells[ 0 ];
- }
- this._navigateFromCellInDirection( focusCell, direction, expandSelection );
- return true;
- }
- // Abort if we're not in a table cell.
- const tableCell = selection.focus.findAncestor( 'tableCell' );
- if ( !tableCell ) {
- return false;
- }
- // Navigation is in the opposite direction than the selection direction so this is shrinking of the selection.
- // Selection for sure will not approach cell edge.
- if ( expandSelection && !selection.isCollapsed && selection.isBackward == isForward ) {
- return false;
- }
- // Let's check if the selection is at the beginning/end of the cell.
- if ( this._isSelectionAtCellEdge( selection, tableCell, isForward ) ) {
- this._navigateFromCellInDirection( tableCell, direction, expandSelection );
- return true;
- }
- return false;
- }
- /**
- * Returns `true` if the selection is at the boundary of a table cell according to the navigation direction.
- *
- * @private
- * @param {module:engine/model/selection~Selection} selection The current selection.
- * @param {module:engine/model/element~Element} tableCell The current table cell element.
- * @param {Boolean} isForward The expected navigation direction.
- * @returns {Boolean}
- */
- _isSelectionAtCellEdge( selection, tableCell, isForward ) {
- const model = this.editor.model;
- const schema = this.editor.model.schema;
- const focus = isForward ? selection.getLastPosition() : selection.getFirstPosition();
- // If the current limit element is not table cell we are for sure not at the cell edge.
- // Also `modifySelection` will not let us out of it.
- if ( !schema.getLimitElement( focus ).is( 'element', 'tableCell' ) ) {
- const boundaryPosition = model.createPositionAt( tableCell, isForward ? 'end' : 0 );
- return boundaryPosition.isTouching( focus );
- }
- const probe = model.createSelection( focus );
- model.modifySelection( probe, { direction: isForward ? 'forward' : 'backward' } );
- // If there was no change in the focus position, then it's not possible to move the selection there.
- return focus.isEqual( probe.focus );
- }
- /**
- * Moves the selection from the given table cell in the specified direction.
- *
- * @protected
- * @param {module:engine/model/element~Element} focusCell The table cell that is current multi-cell selection focus.
- * @param {'left'|'up'|'right'|'down'} direction Direction in which selection should move.
- * @param {Boolean} [expandSelection=false] If the current selection should be expanded.
- */
- _navigateFromCellInDirection( focusCell, direction, expandSelection = false ) {
- const model = this.editor.model;
- const table = focusCell.findAncestor( 'table' );
- const tableMap = [ ...new TableWalker( table, { includeAllSlots: true } ) ];
- const { row: lastRow, column: lastColumn } = tableMap[ tableMap.length - 1 ];
- const currentCellInfo = tableMap.find( ( { cell } ) => cell == focusCell );
- let { row, column } = currentCellInfo;
- switch ( direction ) {
- case 'left':
- column--;
- break;
- case 'up':
- row--;
- break;
- case 'right':
- column += currentCellInfo.cellWidth;
- break;
- case 'down':
- row += currentCellInfo.cellHeight;
- break;
- }
- const isOutsideVertically = row < 0 || row > lastRow;
- const isBeforeFirstCell = column < 0 && row <= 0;
- const isAfterLastCell = column > lastColumn && row >= lastRow;
- // Note that if the table cell at the end of a row is row-spanned then isAfterLastCell will never be true.
- // However, we don't know if user was navigating on the last row or not, so let's stay in the table.
- if ( isOutsideVertically || isBeforeFirstCell || isAfterLastCell ) {
- model.change( writer => {
- writer.setSelection( writer.createRangeOn( table ) );
- } );
- return;
- }
- if ( column < 0 ) {
- column = expandSelection ? 0 : lastColumn;
- row--;
- } else if ( column > lastColumn ) {
- column = expandSelection ? lastColumn : 0;
- row++;
- }
- const cellToSelect = tableMap.find( cellInfo => cellInfo.row == row && cellInfo.column == column ).cell;
- const isForward = [ 'right', 'down' ].includes( direction );
- const tableSelection = this.editor.plugins.get( 'TableSelection' );
- if ( expandSelection && tableSelection.isEnabled ) {
- const anchorCell = tableSelection.getAnchorCell() || focusCell;
- tableSelection.setCellSelection( anchorCell, cellToSelect );
- } else {
- const positionToSelect = model.createPositionAt( cellToSelect, isForward ? 0 : 'end' );
- model.change( writer => {
- writer.setSelection( positionToSelect );
- } );
- }
- }
- }
|