set selection to first cell after table insert

fixes #447
This commit is contained in:
Chrissi2812 2019-10-02 15:47:41 +02:00
parent 01493e825b
commit 8cce2508a9
No known key found for this signature in database
GPG Key ID: B4B82C7E618271DA

View File

@ -19,6 +19,7 @@ import {
fixTables, fixTables,
} from 'prosemirror-tables' } from 'prosemirror-tables'
import { createTable } from 'prosemirror-utils' import { createTable } from 'prosemirror-utils'
import { TextSelection } from 'prosemirror-state'
import TableNodes from './TableNodes' import TableNodes from './TableNodes'
export default class Table extends Node { export default class Table extends Node {
@ -43,6 +44,11 @@ export default class Table extends Node {
(state, dispatch) => { (state, dispatch) => {
const nodes = createTable(schema, rowsCount, colsCount, withHeaderRow) const nodes = createTable(schema, rowsCount, colsCount, withHeaderRow)
const tr = state.tr.replaceSelectionWith(nodes).scrollIntoView() const tr = state.tr.replaceSelectionWith(nodes).scrollIntoView()
// get selection for first cell
const resolvedPos = tr.doc.resolve(tr.selection.anchor - nodes.content.size)
tr.setSelection(TextSelection.near(resolvedPos))
dispatch(tr) dispatch(tr)
} }
), ),