将空块添加到Draft.js而不移动选择

时间:2016-09-16 11:37:25

标签: reactjs draftjs

在不更改SelectionState的情况下,将一个空的无样式块添加到Draft.js编辑器的最佳方法是什么?

1 个答案:

答案 0 :(得分:13)

这就是我最终做的事情:

import { List } from 'immutable'
import {
  EditorState,
  ContentState,
  ContentBlock,
  genKey
} from 'draft-js'

const addEmptyBlock = (editorState) => {
  const newBlock = new ContentBlock({
    key: genKey(),
    type: 'unstyled',
    text: '',
    characterList: List()
  })

  const contentState = editorState.getCurrentContent()
  const newBlockMap = contentState.getBlockMap().set(newBlock.key, newBlock)

  return EditorState.push(
    editorState,
    ContentState
      .createFromBlockArray(newBlockMap.toArray())
      .set('selectionBefore', contentState.getSelectionBefore())
      .set('selectionAfter', contentState.getSelectionAfter())
  )
}