Fix groups data

This commit is contained in:
世界 2024-04-07 15:58:41 +08:00
parent 7549225ae3
commit 15083b4f50
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 48 additions and 21 deletions

View file

@ -1,8 +1,41 @@
package io.nekohasekai.sfa.ui.dashboard package io.nekohasekai.sfa.ui.dashboard
import io.nekohasekai.libbox.OutboundGroup
import io.nekohasekai.libbox.OutboundGroupItem import io.nekohasekai.libbox.OutboundGroupItem
import io.nekohasekai.libbox.OutboundGroupItemIterator import io.nekohasekai.libbox.OutboundGroupItemIterator
data class Group(
val tag: String,
val type: String,
val selectable: Boolean,
var selected: String,
var isExpand: Boolean,
var items: List<GroupItem>,
) {
constructor(item: OutboundGroup) : this(
item.tag,
item.type,
item.selectable,
item.selected,
item.isExpand,
item.items.toList().map { GroupItem(it) },
)
}
data class GroupItem(
val tag: String,
val type: String,
val urlTestTime: Long,
val urlTestDelay: Int,
) {
constructor(item: OutboundGroupItem) : this(
item.tag,
item.type,
item.urlTestTime,
item.urlTestDelay,
)
}
internal fun OutboundGroupItemIterator.toList(): List<OutboundGroupItem> { internal fun OutboundGroupItemIterator.toList(): List<OutboundGroupItem> {
val list = mutableListOf<OutboundGroupItem>() val list = mutableListOf<OutboundGroupItem>()
while (hasNext()) { while (hasNext()) {

View file

@ -18,7 +18,6 @@ import androidx.recyclerview.widget.SimpleItemAnimator
import com.google.android.material.textfield.MaterialAutoCompleteTextView import com.google.android.material.textfield.MaterialAutoCompleteTextView
import io.nekohasekai.libbox.Libbox import io.nekohasekai.libbox.Libbox
import io.nekohasekai.libbox.OutboundGroup import io.nekohasekai.libbox.OutboundGroup
import io.nekohasekai.libbox.OutboundGroupItem
import io.nekohasekai.sfa.R import io.nekohasekai.sfa.R
import io.nekohasekai.sfa.constant.Status import io.nekohasekai.sfa.constant.Status
import io.nekohasekai.sfa.databinding.FragmentDashboardGroupsBinding import io.nekohasekai.sfa.databinding.FragmentDashboardGroupsBinding
@ -99,18 +98,18 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
val adapter = adapter ?: return val adapter = adapter ?: return
activity?.runOnUiThread { activity?.runOnUiThread {
updateDisplayed(newGroups.isNotEmpty()) updateDisplayed(newGroups.isNotEmpty())
adapter.setGroups(newGroups) adapter.setGroups(newGroups.map(::Group))
} }
} }
private class Adapter : RecyclerView.Adapter<GroupView>() { private class Adapter : RecyclerView.Adapter<GroupView>() {
private lateinit var groups: MutableList<OutboundGroup> private lateinit var groups: MutableList<Group>
@SuppressLint("NotifyDataSetChanged") @SuppressLint("NotifyDataSetChanged")
fun setGroups(newGroups: MutableList<OutboundGroup>) { fun setGroups(newGroups: List<Group>) {
if (!::groups.isInitialized || groups.size != newGroups.size) { if (!::groups.isInitialized || groups.size != newGroups.size) {
groups = newGroups groups = newGroups.toMutableList()
notifyDataSetChanged() notifyDataSetChanged()
} else { } else {
newGroups.forEachIndexed { index, group -> newGroups.forEachIndexed { index, group ->
@ -119,7 +118,6 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
notifyItemChanged(index) notifyItemChanged(index)
} }
} }
} }
} }
@ -148,14 +146,14 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
private class GroupView(val binding: ViewDashboardGroupBinding) : private class GroupView(val binding: ViewDashboardGroupBinding) :
RecyclerView.ViewHolder(binding.root) { RecyclerView.ViewHolder(binding.root) {
private lateinit var group: OutboundGroup private lateinit var group: Group
private lateinit var items: MutableList<OutboundGroupItem> private lateinit var items: List<GroupItem>
private lateinit var adapter: ItemAdapter private lateinit var adapter: ItemAdapter
private lateinit var textWatcher: TextWatcher private lateinit var textWatcher: TextWatcher
@OptIn(DelicateCoroutinesApi::class) @OptIn(DelicateCoroutinesApi::class)
@SuppressLint("NotifyDataSetChanged") @SuppressLint("NotifyDataSetChanged")
fun bind(group: OutboundGroup) { fun bind(group: Group) {
this.group = group this.group = group
binding.groupName.text = group.tag binding.groupName.text = group.tag
binding.groupType.text = Libbox.proxyDisplayType(group.type) binding.groupType.text = Libbox.proxyDisplayType(group.type)
@ -170,13 +168,9 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
} }
} }
} }
items = mutableListOf() items = group.items
val itemIterator = group.items
while (itemIterator.hasNext()) {
items.add(itemIterator.next())
}
if (!::adapter.isInitialized) { if (!::adapter.isInitialized) {
adapter = ItemAdapter(this, group, items) adapter = ItemAdapter(this, group, items.toMutableList())
binding.itemList.adapter = adapter binding.itemList.adapter = adapter
(binding.itemList.itemAnimator as SimpleItemAnimator).supportsChangeAnimations = (binding.itemList.itemAnimator as SimpleItemAnimator).supportsChangeAnimations =
false false
@ -231,7 +225,7 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
} }
} }
fun updateSelected(group: OutboundGroup, itemTag: String) { fun updateSelected(group: Group, itemTag: String) {
val oldSelected = items.indexOfFirst { it.tag == group.selected } val oldSelected = items.indexOfFirst { it.tag == group.selected }
group.selected = itemTag group.selected = itemTag
if (oldSelected != -1) { if (oldSelected != -1) {
@ -242,15 +236,15 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
private class ItemAdapter( private class ItemAdapter(
val groupView: GroupView, val groupView: GroupView,
var group: OutboundGroup, var group: Group,
private var items: MutableList<OutboundGroupItem> = mutableListOf() private var items: MutableList<GroupItem> = mutableListOf()
) : ) :
RecyclerView.Adapter<ItemGroupView>() { RecyclerView.Adapter<ItemGroupView>() {
@SuppressLint("NotifyDataSetChanged") @SuppressLint("NotifyDataSetChanged")
fun setItems(newItems: MutableList<OutboundGroupItem>) { fun setItems(newItems: List<GroupItem>) {
if (items.size != newItems.size) { if (items.size != newItems.size) {
items = newItems items = newItems.toMutableList()
notifyDataSetChanged() notifyDataSetChanged()
} else { } else {
newItems.forEachIndexed { index, item -> newItems.forEachIndexed { index, item ->
@ -285,7 +279,7 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
RecyclerView.ViewHolder(binding.root) { RecyclerView.ViewHolder(binding.root) {
@OptIn(DelicateCoroutinesApi::class) @OptIn(DelicateCoroutinesApi::class)
fun bind(groupView: GroupView, group: OutboundGroup, item: OutboundGroupItem) { fun bind(groupView: GroupView, group: Group, item: GroupItem) {
if (group.selectable) { if (group.selectable) {
binding.itemCard.setOnClickListener { binding.itemCard.setOnClickListener {
binding.selectedView.isVisible = true binding.selectedView.isVisible = true