2018-06-18 21:26:18 +10:00
|
|
|
/* Copyright 2018 Conny Duck
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky.adapter
|
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
import androidx.recyclerview.widget.RecyclerView
|
2018-06-18 21:26:18 +10:00
|
|
|
import android.view.LayoutInflater
|
|
|
|
import android.view.ViewGroup
|
|
|
|
import android.view.View
|
|
|
|
import android.widget.TextView
|
|
|
|
import com.keylesspalace.tusky.R
|
|
|
|
import com.keylesspalace.tusky.entity.Emoji
|
|
|
|
import com.keylesspalace.tusky.entity.Field
|
|
|
|
import com.keylesspalace.tusky.interfaces.LinkListener
|
|
|
|
import com.keylesspalace.tusky.util.CustomEmojiHelper
|
2019-02-12 00:43:57 +11:00
|
|
|
import com.keylesspalace.tusky.util.LinkHelper
|
2018-06-18 21:26:18 +10:00
|
|
|
import kotlinx.android.synthetic.main.item_account_field.view.*
|
|
|
|
|
|
|
|
class AccountFieldAdapter(private val linkListener: LinkListener) : RecyclerView.Adapter<AccountFieldAdapter.ViewHolder>() {
|
|
|
|
|
|
|
|
var emojis: List<Emoji> = emptyList()
|
|
|
|
var fields: List<Field> = emptyList()
|
|
|
|
|
2018-12-03 21:02:28 +11:00
|
|
|
override fun getItemCount() = fields.size
|
2018-06-18 21:26:18 +10:00
|
|
|
|
|
|
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): AccountFieldAdapter.ViewHolder {
|
|
|
|
val view = LayoutInflater.from(parent.context).inflate(R.layout.item_account_field, parent, false)
|
|
|
|
return ViewHolder(view)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onBindViewHolder(viewHolder: AccountFieldAdapter.ViewHolder, position: Int) {
|
2018-12-03 21:02:28 +11:00
|
|
|
val field = fields[position]
|
|
|
|
viewHolder.nameTextView.text = field.name
|
|
|
|
val emojifiedValue = CustomEmojiHelper.emojifyText(field.value, emojis, viewHolder.valueTextView)
|
2019-02-12 00:43:57 +11:00
|
|
|
LinkHelper.setClickableText(viewHolder.valueTextView, emojifiedValue, null, linkListener)
|
2018-12-03 21:02:28 +11:00
|
|
|
|
|
|
|
if(field.verifiedAt != null) {
|
|
|
|
viewHolder.valueTextView.setCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, R.drawable.ic_check_circle, 0)
|
|
|
|
} else {
|
|
|
|
viewHolder.valueTextView.setCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, 0, 0 )
|
|
|
|
}
|
|
|
|
|
2018-06-18 21:26:18 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
class ViewHolder(rootView: View) : RecyclerView.ViewHolder(rootView) {
|
|
|
|
val nameTextView: TextView = rootView.accountFieldName
|
|
|
|
val valueTextView: TextView = rootView.accountFieldValue
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|