最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to get startIndex and endIndex from the selected block in gutenberg?

programmeradmin0浏览0评论

I am trying to get the start index and end index of selection from a gutenberg block.

i could get the selected block by

wp.data.select('core/block-editor').getSelectedBlock()

Here is the object returned by block editor

the object returned doesn't have any methods to retrieve the selection start and end in the block, the attributes property does only have the full text, is there an API method which could get this start and end index?

P.s: i could find startIndex, endIndex in props when i register a toolbar button by using this example (/), the problem i am facing is i couldn't get it externally

I am trying to get the start index and end index of selection from a gutenberg block.

i could get the selected block by

wp.data.select('core/block-editor').getSelectedBlock()

Here is the object returned by block editor

the object returned doesn't have any methods to retrieve the selection start and end in the block, the attributes property does only have the full text, is there an API method which could get this start and end index?

P.s: i could find startIndex, endIndex in props when i register a toolbar button by using this example (https://developer.wordpress/block-editor/tutorials/format-api/3-apply-format/), the problem i am facing is i couldn't get it externally

Share Improve this question asked Feb 29, 2020 at 11:08 NaveenNaveen 1273 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can use these to get the start and end of the selection:

var startIndex = wp.data.select('core/block-editor').getSelectionStart();
var endIndex   = wp.data.select('core/block-editor').getSelectionEnd();
发布评论

评论列表(0)

  1. 暂无评论