A Slate plugin to handle keyboard events in tables.
npm install slate-edit-table

A Slate plugin to handle table edition.
Demo: gitbookio.github.io/slate-edit-table/
```
npm install slate-edit-table
* Pressing Up/Down moves the cursor to the row above/below
* Pressing Enter inserts a new row
* Pressing Cmd+Enter (Ctrl+Enter on Windows/Linux) exits the table, into a new default block
* Pressing Tab moves the cursor to next cell
* Pressing Shift+Tab moves the cursor to previous cell
All these default features are configurable.
Here are how different cases of copy-paste are handled by the plugin:
1. Copying the content of a single cell into another cell → The content of the first cell is pasted inside the second cell
2. Copying the content of a single cell outside the table → Just the content of the cell is pasted (not the table)
3. Copying some content into a cell → The content is inserted inside the cell
4. Copying multiple cells somewhere else inside the table → The copied fragment of table is patched at the given position, overwritting cells and adding rows and columns if necessary.
5. Copying multiple cells outside the table → A new table is pasted, containing the copied cells.
`js
import EditTable from 'slate-edit-table';
const tablePlugin = EditTable(/ options /);
const plugins = [tablePlugin];
`
Here is what your Slate document containing tables should look like:
`jsx
OptionsOption object you can pass to the plugin.
*
[typeTable: string] — type for table
* [typeRow: string] — type for the rows.
* [typeCell: string] — type for the cells.
* [typeContent: string] — default type for blocks in cells. Also used as default type for blocks created when exiting the table with Mod+Enter.EditTable$3
Constructs an instance of the table plugin, for the given options. You can then add this instance to the list of plugins passed to Slate.
Once you have constructed an instance of the plugin, you get access to utilities and changes through
pluginInstance.utils and pluginInstance.changes.Utils
$3
isSelectionInTable(value: Slate.Value) => booleanReturn true if selection is inside a table cell.
$3
isSelectionOutOfTable(value: Slate.Value) => booleanReturn true if selection starts and ends both outside any table. (Notice: it is NOT the opposite value of
isSelectionInTable)$3
getPosition(value: Slate.Value) => TablePositionReturns the position of the cursor in a table (and all related infos).
$3
getPositionByKey(tableAncestor: Node, key: string) => TablePositionReturns the position of a particular node in a table (and all related infos).
$3
`js
createTable(
columns: number,
rows: number,
getCellContent?: (row: number, column: number) => Node[]
): Block
`Returns a table. The content can be filled with the given
getCellContent generator.$3
`js
createRow(
columns: number,
getCellContent?: (column: number) => Node[]
): Block
`Returns a row. The content can be filled with the given
getCellContent generator.$3
`js
createCell(opts: Options, nodes?: Node[]): Block
`Returns a cell. The content defaults to an empty
typeContent block.Changes
$3
insertTable(change: Change, columns: ?number, rows: ?number) => ChangeInsert a new empty table.
$3
`js
insertRow(
opts: Options,
change: Change,
at?: number, // row index
getRow?: (columns: number) => Block // Generate the row yourself
): Change
`Insert a new row after the current one or at the specific index (
at).$3
`js
insertColumn(
opts: Options,
change: Change,
at?: number, // Column index
getCell?: (column: number, row: number) => Block // Generate cells
): Change
`Insert a new column after the current one or at the specific index (
at).$3
removeTable(change: Change) => ChangeRemove current table.
$3
removeTableByKey(change: Change, key: string) => ChangeRemove the table containing the given key.
$3
removeRow(change: Change, at: ?number) => ChangeRemove current row or the one at a specific index (
at).$3
removeRowByKey(change: Change, key: string) => ChangeRemove the row containing the given key.
$3
removeColumn(change: Change, at: ?number) => ChangeRemove current column or the one at a specific index (
at).$3
removeColumnByKey(change: Change, key: string) => ChangeRemove the column containing the given key.
$3
moveSelection(change: Change, column: number, row: number) => ChangeMove the selection to a specific position in the table.
$3
moveSelectionBy(change: Change, column: number, row: number) => ChangeMove the selection by the given amount of columns and rows.
TablePosition
An instance of
TablePosition represents a position within a table (row and column).
You can get your current position in a table by using plugin.utils.getPosition(value).####
position.getWidth() => numberReturns the number of columns in the current table.
####
position.getHeight() => numberReturns the number of rows in the current table.
####
position.getRowIndex() => numberReturns the index of the current row in the table.
####
position.getColumnIndex() => numberReturn the index of the current column in the table.
####
position.isFirstCell() => booleanTrue if on first row and first column of the table
####
position.isLastCell() => booleanTrue if on last row and last column of the table
####
position.isFirstRow() => booleanTrue if on first row
####
position.isLastRow() => booleanTrue if on last row
####
position.isFirstColumn() => booleanTrue if on first column
####
position.isLastColumn() => boolean`True if on last column