2018-08-15 20:47:09 +02: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
|
|
|
|
|
|
|
|
import android.text.Editable
|
|
|
|
import android.text.TextWatcher
|
|
|
|
import android.view.LayoutInflater
|
|
|
|
import android.view.ViewGroup
|
2021-03-07 19:24:01 +01:00
|
|
|
import androidx.recyclerview.widget.RecyclerView
|
|
|
|
import com.keylesspalace.tusky.databinding.ItemEditFieldBinding
|
2018-08-15 20:47:09 +02:00
|
|
|
import com.keylesspalace.tusky.entity.StringField
|
2021-03-07 19:24:01 +01:00
|
|
|
import com.keylesspalace.tusky.util.BindingHolder
|
2018-08-15 20:47:09 +02:00
|
|
|
|
2021-03-07 19:24:01 +01:00
|
|
|
class AccountFieldEditAdapter : RecyclerView.Adapter<BindingHolder<ItemEditFieldBinding>>() {
|
2018-08-15 20:47:09 +02:00
|
|
|
|
|
|
|
private val fieldData = mutableListOf<MutableStringPair>()
|
|
|
|
|
|
|
|
fun setFields(fields: List<StringField>) {
|
|
|
|
fieldData.clear()
|
|
|
|
|
|
|
|
fields.forEach { field ->
|
|
|
|
fieldData.add(MutableStringPair(field.name, field.value))
|
|
|
|
}
|
|
|
|
if(fieldData.isEmpty()) {
|
|
|
|
fieldData.add(MutableStringPair("", ""))
|
|
|
|
}
|
|
|
|
|
|
|
|
notifyDataSetChanged()
|
|
|
|
}
|
|
|
|
|
|
|
|
fun getFieldData(): List<StringField> {
|
|
|
|
return fieldData.map {
|
|
|
|
StringField(it.first, it.second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fun addField() {
|
|
|
|
fieldData.add(MutableStringPair("", ""))
|
|
|
|
notifyItemInserted(fieldData.size - 1)
|
|
|
|
}
|
|
|
|
|
2021-03-07 19:24:01 +01:00
|
|
|
override fun getItemCount() = fieldData.size
|
2018-08-15 20:47:09 +02:00
|
|
|
|
2021-03-07 19:24:01 +01:00
|
|
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): BindingHolder<ItemEditFieldBinding> {
|
|
|
|
val binding = ItemEditFieldBinding.inflate(LayoutInflater.from(parent.context), parent, false)
|
|
|
|
return BindingHolder(binding)
|
2018-08-15 20:47:09 +02:00
|
|
|
}
|
|
|
|
|
2021-03-07 19:24:01 +01:00
|
|
|
override fun onBindViewHolder(holder: BindingHolder<ItemEditFieldBinding>, position: Int) {
|
|
|
|
holder.binding.accountFieldName.setText(fieldData[position].first)
|
|
|
|
holder.binding.accountFieldValue.setText(fieldData[position].second)
|
2018-08-15 20:47:09 +02:00
|
|
|
|
2021-03-07 19:24:01 +01:00
|
|
|
holder.binding.accountFieldName.addTextChangedListener(object: TextWatcher {
|
2018-08-15 20:47:09 +02:00
|
|
|
override fun afterTextChanged(newText: Editable) {
|
2021-03-07 19:24:01 +01:00
|
|
|
fieldData[holder.adapterPosition].first = newText.toString()
|
2018-08-15 20:47:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {}
|
|
|
|
|
|
|
|
override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {}
|
|
|
|
})
|
|
|
|
|
2021-03-07 19:24:01 +01:00
|
|
|
holder.binding.accountFieldValue.addTextChangedListener(object: TextWatcher {
|
2018-08-15 20:47:09 +02:00
|
|
|
override fun afterTextChanged(newText: Editable) {
|
2021-03-07 19:24:01 +01:00
|
|
|
fieldData[holder.adapterPosition].second = newText.toString()
|
2018-08-15 20:47:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {}
|
|
|
|
|
|
|
|
override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {}
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class MutableStringPair (var first: String, var second: String)
|
|
|
|
|
|
|
|
}
|