Skip to content
Snippets Groups Projects
Commit 57ed93f2 authored by Taras's avatar Taras
Browse files

Fix cursor position after append

parent 828e4bb3
No related branches found
No related tags found
No related merge requests found
...@@ -124,19 +124,27 @@ class PreviewPostView( ...@@ -124,19 +124,27 @@ class PreviewPostView(
} }
fun insertEmoji(unicode: String) { fun insertEmoji(unicode: String) {
val selection = binding.etTextPost.selectionStart
binding.etTextPost.append(unicode) binding.etTextPost.append(unicode)
binding.etTextPost.setSelection(selection + unicode.length)
} }
private fun insertMentionMark() { private fun insertMentionMark() {
with(binding.etTextPost) { with(binding.etTextPost) {
val previousChar = text?.getOrNull(selectionStart - 1) val selection = selectionStart
val previousChar = text?.getOrNull(selection - 1)
val noNeedToAddSpace = previousChar?.isWhitespace() == true || previousChar == null val noNeedToAddSpace = previousChar?.isWhitespace() == true || previousChar == null
append(if (noNeedToAddSpace) "@" else " @") val textToInsert = if (noNeedToAddSpace) "@" else " @"
append(textToInsert)
setSelection(selection + textToInsert.length)
} }
} }
fun insertLink(title: String?, link: String) { fun insertLink(title: String?, link: String) {
binding.etTextPost.insertLink(link, title ?: link) val selection = binding.etTextPost.selectionStart
val text = title ?: link
binding.etTextPost.insertLink(link, text)
binding.etTextPost.setSelection(selection + text.length)
} }
fun setMediaFromExistingPost(mediaContent: MediaContent) { fun setMediaFromExistingPost(mediaContent: MediaContent) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment