package org.thoughtcrime.securesms.contacts; import android.content.Context; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import android.text.TextUtils; import android.util.AttributeSet; import android.view.View; import android.widget.CheckBox; import android.widget.LinearLayout; import android.widget.TextView; import org.thoughtcrime.securesms.R; import org.thoughtcrime.securesms.components.AvatarImageView; import org.thoughtcrime.securesms.components.FromTextView; import org.thoughtcrime.securesms.database.Address; import org.thoughtcrime.securesms.mms.GlideRequests; import org.thoughtcrime.securesms.recipients.LiveRecipient; import org.thoughtcrime.securesms.recipients.Recipient; import org.thoughtcrime.securesms.recipients.RecipientForeverObserver; import org.thoughtcrime.securesms.recipients.RecipientId; import org.thoughtcrime.securesms.util.GroupUtil; import org.thoughtcrime.securesms.util.Util; import org.thoughtcrime.securesms.util.ViewUtil; public class ContactSelectionListItem extends LinearLayout implements RecipientForeverObserver { @SuppressWarnings("unused") private static final String TAG = ContactSelectionListItem.class.getSimpleName(); private AvatarImageView contactPhotoImage; private TextView numberView; private FromTextView nameView; private TextView labelView; private CheckBox checkBox; private String number; private LiveRecipient recipient; private GlideRequests glideRequests; public ContactSelectionListItem(Context context) { super(context); } public ContactSelectionListItem(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onFinishInflate() { super.onFinishInflate(); this.contactPhotoImage = findViewById(R.id.contact_photo_image); this.numberView = findViewById(R.id.number); this.labelView = findViewById(R.id.label); this.nameView = findViewById(R.id.name); this.checkBox = findViewById(R.id.check_box); ViewUtil.setTextViewGravityStart(this.nameView, getContext()); } public void set(@NonNull GlideRequests glideRequests, @Nullable RecipientId recipientId, int type, String name, String number, String label, int color, boolean multiSelect) { this.glideRequests = glideRequests; this.number = number; if (type == ContactRepository.NEW_TYPE) { this.recipient = null; this.contactPhotoImage.setAvatar(glideRequests, null, false); } else if (recipientId != null) { this.recipient = Recipient.live(recipientId); this.recipient.observeForever(this); if (this.recipient.get().getName() != null) { name = this.recipient.get().getName(); } } Recipient recipientSnapshot = recipient != null ? recipient.get() : null; this.nameView.setTextColor(color); this.numberView.setTextColor(color); this.contactPhotoImage.setAvatar(glideRequests, recipientSnapshot, false); setText(recipientSnapshot, type, name, number, label); if (multiSelect) this.checkBox.setVisibility(View.VISIBLE); else this.checkBox.setVisibility(View.GONE); } public void setChecked(boolean selected) { this.checkBox.setChecked(selected); } public void unbind(GlideRequests glideRequests) { if (recipient != null) { recipient.removeForeverObserver(this); recipient = null; } } private void setText(@Nullable Recipient recipient, int type, String name, String number, String label) { if (number == null || number.isEmpty() || GroupUtil.isEncodedGroup(number)) { this.nameView.setEnabled(false); this.numberView.setText(""); this.labelView.setVisibility(View.GONE); } else if (type == ContactRepository.PUSH_TYPE) { this.numberView.setText(number); this.nameView.setEnabled(true); this.labelView.setVisibility(View.GONE); } else { this.numberView.setText(number); this.nameView.setEnabled(true); this.labelView.setText(label != null && !label.equals("null") ? label : ""); this.labelView.setVisibility(View.VISIBLE); } if (recipient != null) { this.nameView.setText(recipient); } else { this.nameView.setText(name); } } public String getNumber() { return number; } @Override public void onRecipientChanged(@NonNull Recipient recipient) { contactPhotoImage.setAvatar(glideRequests, recipient, false); nameView.setText(recipient); } }