mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 19:15:16 +00:00
48 lines
2.0 KiB
Kotlin
48 lines
2.0 KiB
Kotlin
package org.thoughtcrime.securesms.loki
|
|
|
|
import android.content.Context
|
|
import android.graphics.Outline
|
|
import android.util.AttributeSet
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import android.view.ViewOutlineProvider
|
|
import android.widget.LinearLayout
|
|
import kotlinx.android.synthetic.main.cell_mention_candidate_selection_view.view.*
|
|
import network.loki.messenger.R
|
|
import org.whispersystems.signalservice.loki.api.LokiGroupChatAPI
|
|
import org.whispersystems.signalservice.loki.messaging.Mention
|
|
|
|
class MentionCandidateSelectionViewCell(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout(context, attrs, defStyleAttr) {
|
|
var mentionCandidate = Mention("", "")
|
|
set(newValue) { field = newValue; update() }
|
|
var hasGroupContext = false
|
|
|
|
constructor(context: Context, attrs: AttributeSet?) : this(context, attrs, 0)
|
|
constructor(context: Context) : this(context, null)
|
|
|
|
companion object {
|
|
|
|
fun inflate(layoutInflater: LayoutInflater, parent: ViewGroup): MentionCandidateSelectionViewCell {
|
|
return layoutInflater.inflate(R.layout.cell_mention_candidate_selection_view, parent, false) as MentionCandidateSelectionViewCell
|
|
}
|
|
}
|
|
|
|
override fun onFinishInflate() {
|
|
super.onFinishInflate()
|
|
profilePictureImageViewContainer.outlineProvider = object : ViewOutlineProvider() {
|
|
|
|
override fun getOutline(view: View, outline: Outline) {
|
|
outline.setOval(0, 0, view.width, view.height)
|
|
}
|
|
}
|
|
profilePictureImageViewContainer.clipToOutline = true
|
|
}
|
|
|
|
private fun update() {
|
|
displayNameTextView.text = mentionCandidate.displayName
|
|
profilePictureImageView.update(mentionCandidate.hexEncodedPublicKey)
|
|
val isUserModerator = LokiGroupChatAPI.isUserModerator(mentionCandidate.hexEncodedPublicKey, LokiGroupChatAPI.publicChatServerID, LokiGroupChatAPI.publicChatServer)
|
|
moderatorIconImageView.visibility = if (isUserModerator && hasGroupContext) View.VISIBLE else View.GONE
|
|
}
|
|
} |