Fix dashboard groups refresh

This commit is contained in:
世界 2024-03-12 18:58:29 +08:00
parent 096d5ef43d
commit 7ac5786548
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 40 additions and 16 deletions

View file

@ -92,18 +92,34 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
} }
@SuppressLint("NotifyDataSetChanged") @SuppressLint("NotifyDataSetChanged")
override fun updateGroups(groups: List<OutboundGroup>) { override fun updateGroups(newGroups: MutableList<OutboundGroup>) {
val adapter = adapter ?: return val adapter = adapter ?: return
activity?.runOnUiThread { activity?.runOnUiThread {
updateDisplayed(groups.isNotEmpty()) updateDisplayed(newGroups.isNotEmpty())
adapter.groups = groups adapter.setGroups(newGroups)
adapter.notifyDataSetChanged()
} }
} }
private class Adapter : RecyclerView.Adapter<GroupView>() { private class Adapter : RecyclerView.Adapter<GroupView>() {
lateinit var groups: List<OutboundGroup> private lateinit var groups: MutableList<OutboundGroup>
@SuppressLint("NotifyDataSetChanged")
fun setGroups(newGroups: MutableList<OutboundGroup>) {
if (!::groups.isInitialized || groups.size != newGroups.size) {
groups = newGroups
notifyDataSetChanged()
} else {
newGroups.forEachIndexed { index, group ->
if (this.groups[index] != group) {
this.groups[index] = group
notifyItemChanged(index)
}
}
}
}
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): GroupView { override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): GroupView {
return GroupView( return GroupView(
ViewDashboardGroupBinding.inflate( ViewDashboardGroupBinding.inflate(
@ -157,19 +173,11 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
if (!::adapter.isInitialized) { if (!::adapter.isInitialized) {
adapter = ItemAdapter(this, group, items) adapter = ItemAdapter(this, group, items)
binding.itemList.adapter = adapter binding.itemList.adapter = adapter
/* val divider =
MaterialDividerItemDecoration(
binding.root.context,
LinearLayoutManager.VERTICAL
)
divider.isLastItemDecorated = false
binding.itemList.addItemDecoration(divider)*/
(binding.itemList.itemAnimator as SimpleItemAnimator).supportsChangeAnimations = (binding.itemList.itemAnimator as SimpleItemAnimator).supportsChangeAnimations =
false false
binding.itemList.layoutManager = LinearLayoutManager(binding.root.context) binding.itemList.layoutManager = LinearLayoutManager(binding.root.context)
} else { } else {
adapter.items = items adapter.setItems(items)
adapter.notifyDataSetChanged()
} }
updateExpand() updateExpand()
} }
@ -234,9 +242,25 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
private class ItemAdapter( private class ItemAdapter(
val groupView: GroupView, val groupView: GroupView,
val group: OutboundGroup, val group: OutboundGroup,
var items: List<OutboundGroupItem> = emptyList() private var items: MutableList<OutboundGroupItem> = mutableListOf()
) : ) :
RecyclerView.Adapter<ItemGroupView>() { RecyclerView.Adapter<ItemGroupView>() {
@SuppressLint("NotifyDataSetChanged")
fun setItems(newItems: MutableList<OutboundGroupItem>) {
if (items.size != newItems.size) {
items = newItems
notifyDataSetChanged()
} else {
newItems.forEachIndexed { index, item ->
if (items[index] != item) {
items[index] = item
notifyItemChanged(index)
}
}
}
}
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ItemGroupView { override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ItemGroupView {
return ItemGroupView( return ItemGroupView(
ViewDashboardGroupItemBinding.inflate( ViewDashboardGroupItemBinding.inflate(

View file

@ -31,7 +31,7 @@ open class CommandClient(
fun onConnected() {} fun onConnected() {}
fun onDisconnected() {} fun onDisconnected() {}
fun updateStatus(status: StatusMessage) {} fun updateStatus(status: StatusMessage) {}
fun updateGroups(groups: List<OutboundGroup>) {} fun updateGroups(newGroups: MutableList<OutboundGroup>) {}
fun clearLog() {} fun clearLog() {}
fun appendLog(message: String) {} fun appendLog(message: String) {}
fun initializeClashMode(modeList: List<String>, currentMode: String) {} fun initializeClashMode(modeList: List<String>, currentMode: String) {}