mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 18:35:40 +03:00
Split into small methods
This commit is contained in:
parent
d73a1135ae
commit
c4fe0bdb7f
1 changed files with 68 additions and 50 deletions
|
@ -17,6 +17,7 @@
|
||||||
package im.vector.riotx.features.home.room.detail
|
package im.vector.riotx.features.home.room.detail
|
||||||
|
|
||||||
import android.graphics.drawable.ColorDrawable
|
import android.graphics.drawable.ColorDrawable
|
||||||
|
import android.graphics.drawable.Drawable
|
||||||
import android.text.Editable
|
import android.text.Editable
|
||||||
import android.text.Spannable
|
import android.text.Spannable
|
||||||
import android.widget.EditText
|
import android.widget.EditText
|
||||||
|
@ -68,12 +69,19 @@ class AutoCompleter @Inject constructor(
|
||||||
fun setup(fragment: Fragment, editText: EditText, listener: AutoCompleterListener) {
|
fun setup(fragment: Fragment, editText: EditText, listener: AutoCompleterListener) {
|
||||||
this.fragment = fragment
|
this.fragment = fragment
|
||||||
|
|
||||||
val elevation = 6f
|
|
||||||
val backgroundDrawable = ColorDrawable(ThemeUtils.getColor(fragment.requireContext(), R.attr.riotx_background))
|
val backgroundDrawable = ColorDrawable(ThemeUtils.getColor(fragment.requireContext(), R.attr.riotx_background))
|
||||||
|
|
||||||
|
setupCommands(backgroundDrawable, editText)
|
||||||
|
setupUsers(backgroundDrawable, editText, listener)
|
||||||
|
setupRooms(backgroundDrawable, editText, listener)
|
||||||
|
setupGroups(backgroundDrawable, editText, listener)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupCommands(backgroundDrawable: Drawable, editText: EditText) {
|
||||||
Autocomplete.on<Command>(editText)
|
Autocomplete.on<Command>(editText)
|
||||||
.with(commandAutocompletePolicy)
|
.with(commandAutocompletePolicy)
|
||||||
.with(autocompleteCommandPresenter)
|
.with(autocompleteCommandPresenter)
|
||||||
.with(elevation)
|
.with(ELEVATION)
|
||||||
.with(backgroundDrawable)
|
.with(backgroundDrawable)
|
||||||
.with(object : AutocompleteCallback<Command> {
|
.with(object : AutocompleteCallback<Command> {
|
||||||
override fun onPopupItemClicked(editable: Editable, item: Command): Boolean {
|
override fun onPopupItemClicked(editable: Editable, item: Command): Boolean {
|
||||||
|
@ -88,12 +96,62 @@ class AutoCompleter @Inject constructor(
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.build()
|
.build()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupUsers(backgroundDrawable: ColorDrawable, editText: EditText, listener: AutocompleteUserPresenter.Callback) {
|
||||||
|
autocompleteUserPresenter.callback = listener
|
||||||
|
Autocomplete.on<User>(editText)
|
||||||
|
.with(CharPolicy('@', true))
|
||||||
|
.with(autocompleteUserPresenter)
|
||||||
|
.with(ELEVATION)
|
||||||
|
.with(backgroundDrawable)
|
||||||
|
.with(object : AutocompleteCallback<User> {
|
||||||
|
override fun onPopupItemClicked(editable: Editable, item: User): Boolean {
|
||||||
|
// Detect last '@' and remove it
|
||||||
|
var startIndex = editable.lastIndexOf("@")
|
||||||
|
if (startIndex == -1) {
|
||||||
|
startIndex = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
// Detect next word separator
|
||||||
|
var endIndex = editable.indexOf(" ", startIndex)
|
||||||
|
if (endIndex == -1) {
|
||||||
|
endIndex = editable.length
|
||||||
|
}
|
||||||
|
|
||||||
|
// Replace the word by its completion
|
||||||
|
val matrixItem = item.toMatrixItem()
|
||||||
|
val displayName = matrixItem.getBestName()
|
||||||
|
|
||||||
|
// with a trailing space
|
||||||
|
editable.replace(startIndex, endIndex, "$displayName ")
|
||||||
|
|
||||||
|
// Add the span
|
||||||
|
val span = PillImageSpan(
|
||||||
|
glideRequests,
|
||||||
|
avatarRenderer,
|
||||||
|
fragment.requireContext(),
|
||||||
|
matrixItem
|
||||||
|
)
|
||||||
|
span.bind(editText)
|
||||||
|
|
||||||
|
editable.setSpan(span, startIndex, startIndex + displayName.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onPopupVisibilityChanged(shown: Boolean) {
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.build()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupRooms(backgroundDrawable: ColorDrawable, editText: EditText, listener: AutocompleteRoomPresenter.Callback) {
|
||||||
autocompleteRoomPresenter.callback = listener
|
autocompleteRoomPresenter.callback = listener
|
||||||
Autocomplete.on<RoomSummary>(editText)
|
Autocomplete.on<RoomSummary>(editText)
|
||||||
.with(CharPolicy('#', true))
|
.with(CharPolicy('#', true))
|
||||||
.with(autocompleteRoomPresenter)
|
.with(autocompleteRoomPresenter)
|
||||||
.with(elevation)
|
.with(ELEVATION)
|
||||||
.with(backgroundDrawable)
|
.with(backgroundDrawable)
|
||||||
.with(object : AutocompleteCallback<RoomSummary> {
|
.with(object : AutocompleteCallback<RoomSummary> {
|
||||||
override fun onPopupItemClicked(editable: Editable, item: RoomSummary): Boolean {
|
override fun onPopupItemClicked(editable: Editable, item: RoomSummary): Boolean {
|
||||||
|
@ -134,12 +192,14 @@ class AutoCompleter @Inject constructor(
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.build()
|
.build()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupGroups(backgroundDrawable: ColorDrawable, editText: EditText, listener: AutocompleteGroupPresenter.Callback) {
|
||||||
autocompleteGroupPresenter.callback = listener
|
autocompleteGroupPresenter.callback = listener
|
||||||
Autocomplete.on<GroupSummary>(editText)
|
Autocomplete.on<GroupSummary>(editText)
|
||||||
.with(CharPolicy('+', true))
|
.with(CharPolicy('+', true))
|
||||||
.with(autocompleteGroupPresenter)
|
.with(autocompleteGroupPresenter)
|
||||||
.with(elevation)
|
.with(ELEVATION)
|
||||||
.with(backgroundDrawable)
|
.with(backgroundDrawable)
|
||||||
.with(object : AutocompleteCallback<GroupSummary> {
|
.with(object : AutocompleteCallback<GroupSummary> {
|
||||||
override fun onPopupItemClicked(editable: Editable, item: GroupSummary): Boolean {
|
override fun onPopupItemClicked(editable: Editable, item: GroupSummary): Boolean {
|
||||||
|
@ -180,52 +240,6 @@ class AutoCompleter @Inject constructor(
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.build()
|
.build()
|
||||||
|
|
||||||
autocompleteUserPresenter.callback = listener
|
|
||||||
Autocomplete.on<User>(editText)
|
|
||||||
.with(CharPolicy('@', true))
|
|
||||||
.with(autocompleteUserPresenter)
|
|
||||||
.with(elevation)
|
|
||||||
.with(backgroundDrawable)
|
|
||||||
.with(object : AutocompleteCallback<User> {
|
|
||||||
override fun onPopupItemClicked(editable: Editable, item: User): Boolean {
|
|
||||||
// Detect last '@' and remove it
|
|
||||||
var startIndex = editable.lastIndexOf("@")
|
|
||||||
if (startIndex == -1) {
|
|
||||||
startIndex = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
// Detect next word separator
|
|
||||||
var endIndex = editable.indexOf(" ", startIndex)
|
|
||||||
if (endIndex == -1) {
|
|
||||||
endIndex = editable.length
|
|
||||||
}
|
|
||||||
|
|
||||||
// Replace the word by its completion
|
|
||||||
val matrixItem = item.toMatrixItem()
|
|
||||||
val displayName = matrixItem.getBestName()
|
|
||||||
|
|
||||||
// with a trailing space
|
|
||||||
editable.replace(startIndex, endIndex, "$displayName ")
|
|
||||||
|
|
||||||
// Add the span
|
|
||||||
val span = PillImageSpan(
|
|
||||||
glideRequests,
|
|
||||||
avatarRenderer,
|
|
||||||
fragment.requireContext(),
|
|
||||||
matrixItem
|
|
||||||
)
|
|
||||||
span.bind(editText)
|
|
||||||
|
|
||||||
editable.setSpan(span, startIndex, startIndex + displayName.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
|
|
||||||
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onPopupVisibilityChanged(shown: Boolean) {
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.build()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun render(state: TextComposerViewState) {
|
fun render(state: TextComposerViewState) {
|
||||||
|
@ -238,4 +252,8 @@ class AutoCompleter @Inject constructor(
|
||||||
AutocompleteUserPresenter.Callback,
|
AutocompleteUserPresenter.Callback,
|
||||||
AutocompleteRoomPresenter.Callback,
|
AutocompleteRoomPresenter.Callback,
|
||||||
AutocompleteGroupPresenter.Callback
|
AutocompleteGroupPresenter.Callback
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
private const val ELEVATION = 6f
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue