|
|
|
@ -4,10 +4,15 @@ import android.content.Context
|
|
|
|
|
import android.view.LayoutInflater
|
|
|
|
|
import android.view.ViewGroup
|
|
|
|
|
import androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
import network.loki.messenger.R
|
|
|
|
|
import network.loki.messenger.databinding.ContactSectionHeaderBinding
|
|
|
|
|
import network.loki.messenger.databinding.ViewContactBinding
|
|
|
|
|
import org.session.libsession.utilities.recipients.Recipient
|
|
|
|
|
import org.session.libsignal.utilities.Log
|
|
|
|
|
import org.thoughtcrime.securesms.database.Storage
|
|
|
|
|
import org.thoughtcrime.securesms.mms.GlideRequests
|
|
|
|
|
import org.thoughtcrime.securesms.showSessionDialog
|
|
|
|
|
import org.thoughtcrime.securesms.util.ConfigurationMessageUtilities
|
|
|
|
|
|
|
|
|
|
sealed class ContactListItem {
|
|
|
|
|
class Header(val name: String) : ContactListItem()
|
|
|
|
@ -35,11 +40,28 @@ class ContactListAdapter(
|
|
|
|
|
binding.profilePictureView.update(contact.recipient)
|
|
|
|
|
binding.nameTextView.text = contact.displayName
|
|
|
|
|
binding.root.setOnClickListener { listener(contact.recipient) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fun unbind() {
|
|
|
|
|
binding.profilePictureView.recycle()
|
|
|
|
|
// TODO: When we implement deleting contacts then probably do it here w/ something like:
|
|
|
|
|
/*
|
|
|
|
|
binding.root.setOnLongClickListener {
|
|
|
|
|
Log.w("[ACL]", "Long clicked on contact ${contact.recipient.name}")
|
|
|
|
|
binding.contentView.context.showSessionDialog {
|
|
|
|
|
title("Delete Contact")
|
|
|
|
|
text("Are you sure you want to delete this contact?")
|
|
|
|
|
button(R.string.delete) {
|
|
|
|
|
val contacts = configFactory.contacts ?: return
|
|
|
|
|
contacts.upsertContact(contact.recipient.address.serialize()) { priority = PRIORITY_HIDDEN }
|
|
|
|
|
ConfigurationMessageUtilities.forceSyncConfigurationNowIfNeeded(context)
|
|
|
|
|
endActionMode()
|
|
|
|
|
}
|
|
|
|
|
cancelButton(::endActionMode)
|
|
|
|
|
}
|
|
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fun unbind() { binding.profilePictureView.recycle() }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class HeaderViewHolder(
|
|
|
|
@ -52,15 +74,11 @@ class ContactListAdapter(
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
override fun getItemCount(): Int {
|
|
|
|
|
return items.size
|
|
|
|
|
}
|
|
|
|
|
override fun getItemCount(): Int { return items.size }
|
|
|
|
|
|
|
|
|
|
override fun onViewRecycled(holder: RecyclerView.ViewHolder) {
|
|
|
|
|
super.onViewRecycled(holder)
|
|
|
|
|
if (holder is ContactViewHolder) {
|
|
|
|
|
holder.unbind()
|
|
|
|
|
}
|
|
|
|
|
if (holder is ContactViewHolder) { holder.unbind() }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
override fun getItemViewType(position: Int): Int {
|
|
|
|
@ -72,13 +90,9 @@ class ContactListAdapter(
|
|
|
|
|
|
|
|
|
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder {
|
|
|
|
|
return if (viewType == ViewType.Contact) {
|
|
|
|
|
ContactViewHolder(
|
|
|
|
|
ViewContactBinding.inflate(LayoutInflater.from(context), parent, false)
|
|
|
|
|
)
|
|
|
|
|
ContactViewHolder(ViewContactBinding.inflate(LayoutInflater.from(context), parent, false))
|
|
|
|
|
} else {
|
|
|
|
|
HeaderViewHolder(
|
|
|
|
|
ContactSectionHeaderBinding.inflate(LayoutInflater.from(context), parent, false)
|
|
|
|
|
)
|
|
|
|
|
HeaderViewHolder(ContactSectionHeaderBinding.inflate(LayoutInflater.from(context), parent, false))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|