mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-04-04 05:11:02 +02:00
improve the contact source loading synchronicity
This commit is contained in:
parent
72ccd10aa1
commit
91e645b08e
@ -18,6 +18,7 @@ import com.simplemobiletools.contacts.pro.dialogs.CallConfirmationDialog
|
|||||||
import com.simplemobiletools.contacts.pro.extensions.*
|
import com.simplemobiletools.contacts.pro.extensions.*
|
||||||
import com.simplemobiletools.contacts.pro.helpers.*
|
import com.simplemobiletools.contacts.pro.helpers.*
|
||||||
import com.simplemobiletools.contacts.pro.models.Contact
|
import com.simplemobiletools.contacts.pro.models.Contact
|
||||||
|
import com.simplemobiletools.contacts.pro.models.ContactSource
|
||||||
import com.simplemobiletools.contacts.pro.models.PhoneNumber
|
import com.simplemobiletools.contacts.pro.models.PhoneNumber
|
||||||
import kotlinx.android.synthetic.main.activity_view_contact.*
|
import kotlinx.android.synthetic.main.activity_view_contact.*
|
||||||
import kotlinx.android.synthetic.main.item_event.view.*
|
import kotlinx.android.synthetic.main.item_event.view.*
|
||||||
@ -32,8 +33,8 @@ import kotlinx.android.synthetic.main.item_website.view.*
|
|||||||
class ViewContactActivity : ContactActivity() {
|
class ViewContactActivity : ContactActivity() {
|
||||||
private var isViewIntent = false
|
private var isViewIntent = false
|
||||||
private var wasEditLaunched = false
|
private var wasEditLaunched = false
|
||||||
private var shownContactSources = ArrayList<String>()
|
|
||||||
private var duplicateContacts = ArrayList<Contact>()
|
private var duplicateContacts = ArrayList<Contact>()
|
||||||
|
private var contactSources = ArrayList<ContactSource>()
|
||||||
private var showFields = 0
|
private var showFields = 0
|
||||||
|
|
||||||
private val COMPARABLE_PHONE_NUMBER_LENGTH = 7
|
private val COMPARABLE_PHONE_NUMBER_LENGTH = 7
|
||||||
@ -201,9 +202,12 @@ class ViewContactActivity : ContactActivity() {
|
|||||||
setupFavorite()
|
setupFavorite()
|
||||||
setupNames()
|
setupNames()
|
||||||
|
|
||||||
getDuplicateContacts {
|
ContactsHelper(this).getContactSources {
|
||||||
setupPhoneNumbers()
|
contactSources = it
|
||||||
setupContactSources()
|
getDuplicateContacts {
|
||||||
|
setupPhoneNumbers()
|
||||||
|
setupContactSources()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
setupEmails()
|
setupEmails()
|
||||||
@ -499,8 +503,32 @@ class ViewContactActivity : ContactActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun setupContactSources() {
|
private fun setupContactSources() {
|
||||||
if (contact_sources_holder.childCount == 0) {
|
if (showFields and SHOW_CONTACT_SOURCE_FIELD != 0) {
|
||||||
addContactSource(contact!!)
|
val sources = LinkedHashMap<Contact, String>()
|
||||||
|
sources[contact!!] = contact!!.source
|
||||||
|
duplicateContacts.forEach {
|
||||||
|
sources[it] = it.source
|
||||||
|
}
|
||||||
|
|
||||||
|
contact_sources_holder.removeAllViews()
|
||||||
|
for ((key, value) in sources) {
|
||||||
|
layoutInflater.inflate(R.layout.item_view_contact_source, contact_sources_holder, false).apply {
|
||||||
|
val contactSource = getPublicContactSourceSync(value, contactSources)
|
||||||
|
contact_source.text = contactSource
|
||||||
|
contact_source.copyOnLongClick(contactSource)
|
||||||
|
contact_sources_holder.addView(this)
|
||||||
|
|
||||||
|
contact_source.setOnClickListener {
|
||||||
|
launchEditContact(key)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
contact_source_image.beVisible()
|
||||||
|
contact_sources_holder.beVisible()
|
||||||
|
} else {
|
||||||
|
contact_source_image.beGone()
|
||||||
|
contact_sources_holder.beGone()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -517,48 +545,11 @@ class ViewContactActivity : ContactActivity() {
|
|||||||
|
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
callback()
|
callback()
|
||||||
|
|
||||||
val currContactSources = duplicateContacts.map { it.source }
|
|
||||||
if (currContactSources.toString() != shownContactSources.toString()) {
|
|
||||||
for (i in (contact_sources_holder.childCount - 1) downTo 1) {
|
|
||||||
contact_sources_holder.removeView(contact_sources_holder.getChildAt(i))
|
|
||||||
shownContactSources.clear()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (shownContactSources.isEmpty()) {
|
|
||||||
duplicateContacts.forEach {
|
|
||||||
addContactSource(it)
|
|
||||||
shownContactSources.add(it.source)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun addContactSource(contact: Contact) {
|
|
||||||
if (showFields and SHOW_CONTACT_SOURCE_FIELD != 0) {
|
|
||||||
layoutInflater.inflate(R.layout.item_view_contact_source, contact_sources_holder, false).apply {
|
|
||||||
getPublicContactSource(contact.source) {
|
|
||||||
contact_source.text = it
|
|
||||||
contact_source.copyOnLongClick(it)
|
|
||||||
contact_sources_holder.addView(this)
|
|
||||||
|
|
||||||
contact_source.setOnClickListener {
|
|
||||||
launchEditContact(contact)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
contact_source_image.beVisible()
|
|
||||||
contact_sources_holder.beVisible()
|
|
||||||
} else {
|
|
||||||
contact_source_image.beGone()
|
|
||||||
contact_sources_holder.beGone()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun deleteContactFromAllSources() {
|
private fun deleteContactFromAllSources() {
|
||||||
val addition = if (contact_sources_holder.childCount > 1) {
|
val addition = if (contact_sources_holder.childCount > 1) {
|
||||||
"\n\n${getString(R.string.delete_from_all_sources)}"
|
"\n\n${getString(R.string.delete_from_all_sources)}"
|
||||||
|
@ -15,7 +15,10 @@ import android.provider.ContactsContract
|
|||||||
import android.telecom.TelecomManager
|
import android.telecom.TelecomManager
|
||||||
import androidx.core.content.FileProvider
|
import androidx.core.content.FileProvider
|
||||||
import com.simplemobiletools.commons.extensions.*
|
import com.simplemobiletools.commons.extensions.*
|
||||||
import com.simplemobiletools.commons.helpers.*
|
import com.simplemobiletools.commons.helpers.PERMISSION_READ_CONTACTS
|
||||||
|
import com.simplemobiletools.commons.helpers.PERMISSION_WRITE_CONTACTS
|
||||||
|
import com.simplemobiletools.commons.helpers.isMarshmallowPlus
|
||||||
|
import com.simplemobiletools.commons.helpers.isNougatPlus
|
||||||
import com.simplemobiletools.contacts.pro.BuildConfig
|
import com.simplemobiletools.contacts.pro.BuildConfig
|
||||||
import com.simplemobiletools.contacts.pro.R
|
import com.simplemobiletools.contacts.pro.R
|
||||||
import com.simplemobiletools.contacts.pro.activities.EditContactActivity
|
import com.simplemobiletools.contacts.pro.activities.EditContactActivity
|
||||||
@ -30,7 +33,6 @@ import com.simplemobiletools.contacts.pro.models.ContactSource
|
|||||||
import com.simplemobiletools.contacts.pro.models.Organization
|
import com.simplemobiletools.contacts.pro.models.Organization
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
|
|
||||||
val Context.config: Config get() = Config.newInstance(applicationContext)
|
val Context.config: Config get() = Config.newInstance(applicationContext)
|
||||||
|
|
||||||
val Context.contactsDB: ContactsDao get() = ContactsDatabase.getInstance(applicationContext).ContactsDao()
|
val Context.contactsDB: ContactsDao get() = ContactsDatabase.getInstance(applicationContext).ContactsDao()
|
||||||
@ -196,24 +198,39 @@ fun Context.getPublicContactSource(source: String, callback: (String) -> Unit) {
|
|||||||
when (source) {
|
when (source) {
|
||||||
SMT_PRIVATE -> callback(getString(R.string.phone_storage_hidden))
|
SMT_PRIVATE -> callback(getString(R.string.phone_storage_hidden))
|
||||||
else -> {
|
else -> {
|
||||||
ensureBackgroundThread {
|
ContactsHelper(this).getContactSources {
|
||||||
ContactsHelper(this).getContactSources {
|
var newSource = source
|
||||||
var newSource = source
|
for (contactSource in it) {
|
||||||
for (contactSource in it) {
|
if (contactSource.name == source && contactSource.type == TELEGRAM_PACKAGE) {
|
||||||
if (contactSource.name == source && contactSource.type == TELEGRAM_PACKAGE) {
|
newSource += " (${getString(R.string.telegram)})"
|
||||||
newSource += " (${getString(R.string.telegram)})"
|
break
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Handler(Looper.getMainLooper()).post {
|
|
||||||
callback(newSource)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Handler(Looper.getMainLooper()).post {
|
||||||
|
callback(newSource)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun Context.getPublicContactSourceSync(source: String, contactSources: ArrayList<ContactSource>): String {
|
||||||
|
return when (source) {
|
||||||
|
SMT_PRIVATE -> getString(R.string.phone_storage_hidden)
|
||||||
|
else -> {
|
||||||
|
var newSource = source
|
||||||
|
for (contactSource in contactSources) {
|
||||||
|
if (contactSource.name == source && contactSource.type == TELEGRAM_PACKAGE) {
|
||||||
|
newSource += " (${getString(R.string.telegram)})"
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return newSource
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun Context.sendSMSToContacts(contacts: ArrayList<Contact>) {
|
fun Context.sendSMSToContacts(contacts: ArrayList<Contact>) {
|
||||||
val numbers = StringBuilder()
|
val numbers = StringBuilder()
|
||||||
contacts.forEach {
|
contacts.forEach {
|
||||||
|
@ -848,7 +848,7 @@ class ContactsHelper(val context: Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getContactSourcesSync(): ArrayList<ContactSource> {
|
fun getContactSourcesSync(): ArrayList<ContactSource> {
|
||||||
val sources = getDeviceContactSources()
|
val sources = getDeviceContactSources()
|
||||||
sources.add(context.getPrivateContactSource())
|
sources.add(context.getPrivateContactSource())
|
||||||
return ArrayList(sources)
|
return ArrayList(sources)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user