Skip to content

Update all the placeholders on content change #1032

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,22 @@ class PlaceholderManager(
return drawable
}

private suspend fun updateAllBelowSelection(selectionStart: Int) {
positionToId.filter {
it.elementPosition >= selectionStart - 1
}.forEach {
/**
* Call this method to reload all the placeholders
*/
suspend fun reloadAllPlaceholders() {
positionToId.forEach {
insertContentOverSpanWithId(it.uuid)
}
}

/**
* Call this method to relaod a placeholder with UUID
*/
suspend fun refreshWithUuid(uuid: String) {
insertContentOverSpanWithId(uuid)
}

private suspend fun insertContentOverSpanWithId(uuid: String) {
var aztecAttributes: AztecAttributes? = null
val predicate = object : AztecText.AttributePredicate {
Expand Down Expand Up @@ -218,7 +226,7 @@ class PlaceholderManager(
*/
override fun onContentChanged() {
launch {
updateAllBelowSelection(aztecText.selectionStart)
reloadAllPlaceholders()
}
}

Expand Down