mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-08-29 09:59:48 +02:00
add select
option to insertNodes
This commit is contained in:
@@ -23,14 +23,14 @@ export const NodeTransforms = {
|
|||||||
at?: Location
|
at?: Location
|
||||||
match?: NodeMatch
|
match?: NodeMatch
|
||||||
hanging?: boolean
|
hanging?: boolean
|
||||||
|
select?: boolean
|
||||||
voids?: boolean
|
voids?: boolean
|
||||||
} = {}
|
} = {}
|
||||||
) {
|
) {
|
||||||
Editor.withoutNormalizing(editor, () => {
|
Editor.withoutNormalizing(editor, () => {
|
||||||
const { selection } = editor
|
const { selection } = editor
|
||||||
const { hanging = false, voids = false } = options
|
const { hanging = false, voids = false } = options
|
||||||
let { at, match } = options
|
let { at, match, select } = options
|
||||||
let select = false
|
|
||||||
|
|
||||||
if (Node.isNode(nodes)) {
|
if (Node.isNode(nodes)) {
|
||||||
nodes = [nodes]
|
nodes = [nodes]
|
||||||
@@ -57,6 +57,10 @@ export const NodeTransforms = {
|
|||||||
select = true
|
select = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (select == null) {
|
||||||
|
select = false
|
||||||
|
}
|
||||||
|
|
||||||
if (Range.isRange(at)) {
|
if (Range.isRange(at)) {
|
||||||
if (!hanging) {
|
if (!hanging) {
|
||||||
at = Editor.unhangRange(editor, at)
|
at = Editor.unhangRange(editor, at)
|
||||||
|
@@ -0,0 +1,34 @@
|
|||||||
|
/** @jsx jsx */
|
||||||
|
|
||||||
|
import { Editor } from 'slate'
|
||||||
|
import { jsx } from '../../..'
|
||||||
|
|
||||||
|
export const input = (
|
||||||
|
<editor>
|
||||||
|
<block>
|
||||||
|
<cursor />
|
||||||
|
one
|
||||||
|
</block>
|
||||||
|
</editor>
|
||||||
|
)
|
||||||
|
|
||||||
|
export const run = editor => {
|
||||||
|
Editor.insertNodes(
|
||||||
|
editor,
|
||||||
|
<block>
|
||||||
|
<text />
|
||||||
|
</block>,
|
||||||
|
{ at: [0], select: true }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export const output = (
|
||||||
|
<editor>
|
||||||
|
<block>
|
||||||
|
<cursor />
|
||||||
|
</block>
|
||||||
|
<block>
|
||||||
|
one
|
||||||
|
</block>
|
||||||
|
</editor>
|
||||||
|
)
|
Reference in New Issue
Block a user