Bimba.git

ref: e056a460a0adc2459802f0856a6c27be85a5852c

app/src/main/java/xyz/apiote/bimba/czwek/search/Results.kt


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package xyz.apiote.bimba.czwek.search

import android.annotation.SuppressLint
import android.content.Context
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.ImageView
import android.widget.TextView
import androidx.recyclerview.widget.RecyclerView
import xyz.apiote.bimba.czwek.R
import xyz.apiote.bimba.czwek.api.Line
import xyz.apiote.bimba.czwek.api.QueryableV1
import xyz.apiote.bimba.czwek.api.StopV1

class BimbaViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
	val root: View = itemView.findViewById(R.id.suggestion)
	val icon: ImageView = itemView.findViewById(R.id.suggestion_image)
	val title: TextView = itemView.findViewById(R.id.suggestion_title)
	val description: TextView = itemView.findViewById(R.id.suggestion_description)

	companion object {
		fun bind(
			queryable: QueryableV1,
			holder: BimbaViewHolder?,
			context: Context?,
			onClickListener: (QueryableV1) -> Unit
		) {
			when (queryable) {
				is StopV1 -> bindStop(queryable, holder, context)
				//is Line -> bindLine(queryable, holder, context)
			}
			holder?.root?.setOnClickListener {
				onClickListener(queryable)
			}
		}

		private fun bindStop(stop: StopV1, holder: BimbaViewHolder?, context: Context?) {
			holder?.icon?.apply {
				setImageDrawable(stop.icon(context!!))
				contentDescription = context.getString(R.string.stop_content_description)
			}
			holder?.title?.text = context?.getString(R.string.stop_title, stop.name, stop.code)
			context?.let {
				stop.changeOptions(it).let { changeOptions ->
					holder?.description?.apply {
						text = changeOptions.first
						contentDescription = changeOptions.second
					}
				}
			}
		}

		private fun bindLine(line: Line, holder: BimbaViewHolder?, context: Context?) {
			holder?.icon?.apply {
				setImageBitmap(line.icon(context!!))
				contentDescription = line.type.name
				colorFilter = null
			}
			holder?.title?.text = line.name
			holder?.description?.text = context?.getString(
				R.string.line_headsigns,
				line.headsignsThere.joinToString { it },
				line.headsignsBack.joinToString { it })
			holder?.description?.contentDescription = context?.getString(
				R.string.line_headsigns_content_description,
				line.headsignsThere.joinToString { it },
				line.headsignsBack.joinToString { it })
		}
	}
}

interface Adapter {
	fun createViewHolder(
		inflater: LayoutInflater,
		layout: Int,
		parent: ViewGroup
	): BimbaViewHolder {
		val rowView = inflater.inflate(layout, parent, false)
		return BimbaViewHolder(rowView)
	}

	fun bindSuggestionHolder(
		queryable: QueryableV1,
		holder: BimbaViewHolder?,
		context: Context?,
		onClickListener: (QueryableV1) -> Unit
	) {
		BimbaViewHolder.bind(queryable, holder, context, onClickListener)
	}
}

class BimbaResultsAdapter(
	private val inflater: LayoutInflater,
	private val context: Context?,
	private var queryables: List<QueryableV1>,
	private val onClickListener: ((QueryableV1) -> Unit)
) :
	RecyclerView.Adapter<BimbaViewHolder>(), Adapter {
	override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): BimbaViewHolder {
		return createViewHolder(inflater, R.layout.result, parent)
	}

	override fun onBindViewHolder(holder: BimbaViewHolder, position: Int) {
		bindSuggestionHolder(queryables[position], holder, context, onClickListener)
	}

	override fun getItemCount(): Int = queryables.size

	@SuppressLint("NotifyDataSetChanged") // todo [3.1] DiffUtil
	fun update(queryables: List<QueryableV1>) {
		this.queryables = queryables
		notifyDataSetChanged()
	}
}