2021-10-31 20:19:25 +01:00
|
|
|
package io.heckel.ntfy.ui
|
|
|
|
|
2021-11-29 01:28:58 +01:00
|
|
|
import android.util.Log
|
2021-10-31 20:19:25 +01:00
|
|
|
import android.view.LayoutInflater
|
|
|
|
import android.view.View
|
|
|
|
import android.view.ViewGroup
|
2021-11-27 22:18:09 +01:00
|
|
|
import android.widget.ImageView
|
2021-10-31 20:19:25 +01:00
|
|
|
import android.widget.TextView
|
2021-11-27 22:18:09 +01:00
|
|
|
import androidx.core.content.ContextCompat
|
2021-10-31 20:19:25 +01:00
|
|
|
import androidx.recyclerview.widget.DiffUtil
|
|
|
|
import androidx.recyclerview.widget.ListAdapter
|
|
|
|
import androidx.recyclerview.widget.RecyclerView
|
|
|
|
import io.heckel.ntfy.R
|
|
|
|
import io.heckel.ntfy.data.Notification
|
2021-11-29 01:28:58 +01:00
|
|
|
import io.heckel.ntfy.util.*
|
2021-10-31 20:19:25 +01:00
|
|
|
import java.util.*
|
|
|
|
|
2021-11-03 18:56:08 +01:00
|
|
|
class DetailAdapter(private val onClick: (Notification) -> Unit, private val onLongClick: (Notification) -> Unit) :
|
2021-10-31 20:19:25 +01:00
|
|
|
ListAdapter<Notification, DetailAdapter.DetailViewHolder>(TopicDiffCallback) {
|
2021-11-03 18:56:08 +01:00
|
|
|
val selected = mutableSetOf<String>() // Notification IDs
|
2021-10-31 20:19:25 +01:00
|
|
|
|
|
|
|
/* Creates and inflates view and return TopicViewHolder. */
|
|
|
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): DetailViewHolder {
|
|
|
|
val view = LayoutInflater.from(parent.context)
|
2021-11-22 21:45:43 +01:00
|
|
|
.inflate(R.layout.fragment_detail_item, parent, false)
|
2021-11-03 18:56:08 +01:00
|
|
|
return DetailViewHolder(view, selected, onClick, onLongClick)
|
2021-10-31 20:19:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Gets current topic and uses it to bind view. */
|
|
|
|
override fun onBindViewHolder(holder: DetailViewHolder, position: Int) {
|
|
|
|
holder.bind(getItem(position))
|
|
|
|
}
|
|
|
|
|
2021-11-03 18:56:08 +01:00
|
|
|
fun toggleSelection(notificationId: String) {
|
|
|
|
if (selected.contains(notificationId)) {
|
|
|
|
selected.remove(notificationId)
|
|
|
|
} else {
|
|
|
|
selected.add(notificationId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-31 20:19:25 +01:00
|
|
|
/* ViewHolder for Topic, takes in the inflated view and the onClick behavior. */
|
2021-11-03 18:56:08 +01:00
|
|
|
class DetailViewHolder(itemView: View, private val selected: Set<String>, val onClick: (Notification) -> Unit, val onLongClick: (Notification) -> Unit) :
|
2021-10-31 20:19:25 +01:00
|
|
|
RecyclerView.ViewHolder(itemView) {
|
|
|
|
private var notification: Notification? = null
|
2021-11-27 22:18:09 +01:00
|
|
|
private val priorityImageView: ImageView = itemView.findViewById(R.id.detail_item_priority_image)
|
2021-10-31 20:19:25 +01:00
|
|
|
private val dateView: TextView = itemView.findViewById(R.id.detail_item_date_text)
|
2021-11-27 22:18:09 +01:00
|
|
|
private val titleView: TextView = itemView.findViewById(R.id.detail_item_title_text)
|
2021-10-31 20:19:25 +01:00
|
|
|
private val messageView: TextView = itemView.findViewById(R.id.detail_item_message_text)
|
2021-11-27 22:18:09 +01:00
|
|
|
private val newImageView: View = itemView.findViewById(R.id.detail_item_new_dot)
|
2021-11-29 01:28:58 +01:00
|
|
|
private val tagsView: TextView = itemView.findViewById(R.id.detail_item_tags)
|
2021-10-31 20:19:25 +01:00
|
|
|
|
|
|
|
fun bind(notification: Notification) {
|
|
|
|
this.notification = notification
|
2021-11-27 22:18:09 +01:00
|
|
|
|
2021-11-29 01:28:58 +01:00
|
|
|
val ctx = itemView.context
|
|
|
|
val unmatchedTags = unmatchedTags(splitTags(notification.tags))
|
|
|
|
|
2021-10-31 20:19:25 +01:00
|
|
|
dateView.text = Date(notification.timestamp * 1000).toString()
|
2021-11-27 22:18:09 +01:00
|
|
|
messageView.text = formatMessage(notification)
|
2021-11-22 21:45:43 +01:00
|
|
|
newImageView.visibility = if (notification.notificationId == 0) View.GONE else View.VISIBLE
|
2021-10-31 20:19:25 +01:00
|
|
|
itemView.setOnClickListener { onClick(notification) }
|
2021-11-03 18:56:08 +01:00
|
|
|
itemView.setOnLongClickListener { onLongClick(notification); true }
|
2021-11-27 22:18:09 +01:00
|
|
|
if (notification.title != "") {
|
|
|
|
titleView.visibility = View.VISIBLE
|
|
|
|
titleView.text = formatTitle(notification)
|
|
|
|
} else {
|
|
|
|
titleView.visibility = View.GONE
|
|
|
|
}
|
2021-11-29 01:28:58 +01:00
|
|
|
if (unmatchedTags.isNotEmpty()) {
|
|
|
|
tagsView.visibility = View.VISIBLE
|
|
|
|
tagsView.text = ctx.getString(R.string.detail_item_tags, unmatchedTags.joinToString(", "))
|
|
|
|
} else {
|
|
|
|
tagsView.visibility = View.GONE
|
|
|
|
}
|
2021-11-03 18:56:08 +01:00
|
|
|
if (selected.contains(notification.id)) {
|
|
|
|
itemView.setBackgroundResource(R.color.primarySelectedRowColor);
|
|
|
|
}
|
2021-11-27 22:18:09 +01:00
|
|
|
when (notification.priority) {
|
|
|
|
1 -> {
|
|
|
|
priorityImageView.visibility = View.VISIBLE
|
|
|
|
priorityImageView.setImageDrawable(ContextCompat.getDrawable(ctx, R.drawable.ic_priority_1_24dp))
|
|
|
|
}
|
|
|
|
2 -> {
|
|
|
|
priorityImageView.visibility = View.VISIBLE
|
|
|
|
priorityImageView.setImageDrawable(ContextCompat.getDrawable(ctx, R.drawable.ic_priority_2_24dp))
|
|
|
|
}
|
|
|
|
3 -> {
|
|
|
|
priorityImageView.visibility = View.GONE
|
|
|
|
}
|
|
|
|
4 -> {
|
|
|
|
priorityImageView.visibility = View.VISIBLE
|
|
|
|
priorityImageView.setImageDrawable(ContextCompat.getDrawable(ctx, R.drawable.ic_priority_4_24dp))
|
|
|
|
}
|
|
|
|
5 -> {
|
|
|
|
priorityImageView.visibility = View.VISIBLE
|
|
|
|
priorityImageView.setImageDrawable(ContextCompat.getDrawable(ctx, R.drawable.ic_priority_5_24dp))
|
|
|
|
}
|
|
|
|
}
|
2021-10-31 20:19:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
object TopicDiffCallback : DiffUtil.ItemCallback<Notification>() {
|
|
|
|
override fun areItemsTheSame(oldItem: Notification, newItem: Notification): Boolean {
|
|
|
|
return oldItem.id == newItem.id
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun areContentsTheSame(oldItem: Notification, newItem: Notification): Boolean {
|
|
|
|
return oldItem == newItem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|