admin管理员组文章数量:1345119
I'm trying insert a new sentence to a Quill's delta when an edit is made to the Quill, all the while retaining the position of the user's cursor. When an edit is made I retrieve the cursor index from quill.getSelection().index
, and then after applying the new delta using quill.setContents()
I attempted to set the cursor index back to it's previous position using quill.setSelection()
. This causes Quill to throw a "The given range isn't in document" error. Even trying to use quill.setSelection()
before touching the delta inside the editor change event does not work (nothing happens). Why is setSelection
not working as expected?
Here's a JSFiddle showcasing my issue: /
Try editing the Quill editor text to see the issue. You can set withInsert
to false
to see how setSelection
doesn't work even without an insert.
I'm trying insert a new sentence to a Quill's delta when an edit is made to the Quill, all the while retaining the position of the user's cursor. When an edit is made I retrieve the cursor index from quill.getSelection().index
, and then after applying the new delta using quill.setContents()
I attempted to set the cursor index back to it's previous position using quill.setSelection()
. This causes Quill to throw a "The given range isn't in document" error. Even trying to use quill.setSelection()
before touching the delta inside the editor change event does not work (nothing happens). Why is setSelection
not working as expected?
Here's a JSFiddle showcasing my issue: https://jsfiddle/nadavrt/gaLareyw/15/
Try editing the Quill editor text to see the issue. You can set withInsert
to false
to see how setSelection
doesn't work even without an insert.
2 Answers
Reset to default 5Actually, in the first case(inserting a sentence at the end of the editor) you don't need to change selection programmatically, you can just use Quill's insertText
method:
quill.insertText(quill.getLength(), "A new sentence has appeared.")
JSFiddle: https://jsfiddle/jaimies/r4ksnma8/29/
The second case(changing cursor position when the user types) is, however, trickier. I've discovered that changing selection just after the user has typed a character is not possible with Quill. The workaround is to wrap setSelection
call into a setTimeout
with a timeout of 0:
setTimeout(() => quill.setSelection(quill.getSelection().index + 10, 0), 0)
The reason this works is that the code inside of setTimeout
is not executed immediately, even if the timeout is actually 0. By the way, you may also omit the last parameter of setTimeout
as it is set to 0 by default
This solution is not perfect and the cursor may sometimes flicker, but that's the only way of solving this problem I've found so far.
JSFiddle: https://jsfiddle/jaimies/9h3uqktL/3/
I'm trying insert a new sentence to a Quill's delta when an edit is made to the Quill, all the while retaining the position of the user's cursor.
I remend using quill.updateContents()
and constructing a new Delta as opposed to using quill.getContents()
and quill.setContents()
.
quill.updateContents(new Delta()
.retain(quill.getSelection().index)
.insert('A new sentence has appeared.')
);
本文标签: javascriptSetting the cursor position after setting a new delta in QuillStack Overflow
版权声明:本文标题:javascript - Setting the cursor position after setting a new delta in Quill - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743782524a2538078.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论