mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-19 19:49:33 +01:00
wip: create poll using multiple livedata fields
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
b140cc8751
commit
9f90e9c4c6
@ -17,7 +17,7 @@ class PollCreateOptionViewHolder(
|
||||
@SuppressLint("SetTextI18n")
|
||||
fun bind(
|
||||
pollCreateOptionItem: PollCreateOptionItem,
|
||||
clickListener: PollCreateOptionsItemClickListener,
|
||||
itemsListener: PollCreateOptionsItemListener,
|
||||
position: Int
|
||||
) {
|
||||
|
||||
@ -28,7 +28,7 @@ class PollCreateOptionViewHolder(
|
||||
binding.pollOptionText.setText(pollCreateOptionItem.pollOption)
|
||||
|
||||
binding.pollOptionDelete.setOnClickListener {
|
||||
clickListener.onRemoveOptionsItemClick(pollCreateOptionItem, position)
|
||||
itemsListener.onRemoveOptionsItemClick(pollCreateOptionItem, position)
|
||||
}
|
||||
|
||||
textListener = getTextWatcher(pollCreateOptionItem)
|
||||
|
@ -6,7 +6,7 @@ import androidx.recyclerview.widget.RecyclerView
|
||||
import com.nextcloud.talk.databinding.PollCreateOptionsItemBinding
|
||||
|
||||
class PollCreateOptionsAdapter(
|
||||
private val clickListener: PollCreateOptionsItemClickListener
|
||||
private val clickListener: PollCreateOptionsItemListener
|
||||
) : RecyclerView.Adapter<PollCreateOptionViewHolder>() {
|
||||
|
||||
internal var list: ArrayList<PollCreateOptionItem> = ArrayList<PollCreateOptionItem>()
|
||||
|
@ -1,5 +1,6 @@
|
||||
package com.nextcloud.talk.polls.adapters
|
||||
|
||||
interface PollCreateOptionsItemClickListener {
|
||||
interface PollCreateOptionsItemListener {
|
||||
|
||||
fun onRemoveOptionsItemClick(pollCreateOptionItem: PollCreateOptionItem, position: Int)
|
||||
}
|
@ -10,7 +10,6 @@ import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import androidx.appcompat.app.AlertDialog
|
||||
import androidx.fragment.app.DialogFragment
|
||||
import androidx.lifecycle.Observer
|
||||
import androidx.lifecycle.ViewModelProvider
|
||||
import androidx.recyclerview.widget.LinearLayoutManager
|
||||
import autodagger.AutoInjector
|
||||
@ -18,14 +17,14 @@ import com.nextcloud.talk.application.NextcloudTalkApplication
|
||||
import com.nextcloud.talk.databinding.DialogPollCreateBinding
|
||||
import com.nextcloud.talk.polls.adapters.PollCreateOptionItem
|
||||
import com.nextcloud.talk.polls.adapters.PollCreateOptionsAdapter
|
||||
import com.nextcloud.talk.polls.adapters.PollCreateOptionsItemClickListener
|
||||
import com.nextcloud.talk.polls.adapters.PollCreateOptionsItemListener
|
||||
import com.nextcloud.talk.polls.viewmodels.PollCreateViewModel
|
||||
import javax.inject.Inject
|
||||
|
||||
@AutoInjector(NextcloudTalkApplication::class)
|
||||
class PollCreateDialogFragment(
|
||||
private val roomToken: String
|
||||
) : DialogFragment(), PollCreateOptionsItemClickListener {
|
||||
) : DialogFragment(), PollCreateOptionsItemListener {
|
||||
|
||||
@Inject
|
||||
lateinit var viewModelFactory: ViewModelProvider.Factory
|
||||
@ -40,7 +39,6 @@ class PollCreateDialogFragment(
|
||||
NextcloudTalkApplication.sharedApplication!!.componentApplication.inject(this)
|
||||
|
||||
viewModel = ViewModelProvider(this, viewModelFactory)[PollCreateViewModel::class.java]
|
||||
viewModel.options.observe(this, optionsObserver)
|
||||
}
|
||||
|
||||
@SuppressLint("InflateParams")
|
||||
@ -61,6 +59,11 @@ class PollCreateDialogFragment(
|
||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||
super.onViewCreated(view, savedInstanceState)
|
||||
|
||||
viewModel.options.observe(viewLifecycleOwner) { options -> adapter?.updateOptionsList(options) }
|
||||
viewModel.question.observe(viewLifecycleOwner) { binding.pollCreateQuestion.setText(it) }
|
||||
viewModel.privatePoll.observe(viewLifecycleOwner) { binding.pollPrivatePollCheckbox.isChecked = it }
|
||||
viewModel.multipleAnswer.observe(viewLifecycleOwner) { binding.pollMultipleAnswersCheckbox.isChecked = it }
|
||||
|
||||
binding.pollCreateOptionsList.layoutManager = LinearLayoutManager(context)
|
||||
|
||||
adapter = PollCreateOptionsAdapter(this)
|
||||
@ -68,21 +71,19 @@ class PollCreateDialogFragment(
|
||||
|
||||
viewModel.initialize(roomToken)
|
||||
|
||||
setupListeners()
|
||||
setupStateObserver()
|
||||
}
|
||||
|
||||
private fun setupListeners() {
|
||||
binding.pollAddOptionsItem.setOnClickListener {
|
||||
viewModel.addOption()
|
||||
// viewModel.options?.value?.let { it1 -> adapter?.notifyItemInserted(it1.size) }
|
||||
|
||||
// viewModel.options?.value?.let { it1 -> adapter?.notifyItemChanged(it1.size) }
|
||||
// viewModel.options?.value?.let { it1 -> adapter?.notifyItemRangeInserted(it1.size, 1) }
|
||||
}
|
||||
|
||||
binding.pollDismiss.setOnClickListener {
|
||||
dismiss()
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
binding.pollCreateQuestion.addTextChangedListener(object : TextWatcher {
|
||||
override fun afterTextChanged(s: Editable) {
|
||||
// unused atm
|
||||
@ -93,53 +94,64 @@ class PollCreateDialogFragment(
|
||||
}
|
||||
|
||||
override fun onTextChanged(question: CharSequence, start: Int, before: Int, count: Int) {
|
||||
// TODO make question a livedata
|
||||
// if(question != viewmodel.question.value) viewModel.setQuestion(question)
|
||||
viewModel.question = question.toString()
|
||||
if (question.toString() != viewModel.question.value) {
|
||||
viewModel.setQuestion(question.toString())
|
||||
binding.pollCreateQuestion.setSelection(binding.pollCreateQuestion.length())
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// viewModel.question.observe { it -> binding.pollCreateQuestion.text = it }
|
||||
|
||||
binding.pollPrivatePollCheckbox.setOnClickListener {
|
||||
// FIXME
|
||||
viewModel.multipleAnswer = binding.pollMultipleAnswersCheckbox.isChecked
|
||||
viewModel.setPrivatePoll(binding.pollPrivatePollCheckbox.isChecked)
|
||||
}
|
||||
|
||||
binding.pollMultipleAnswersCheckbox.setOnClickListener {
|
||||
viewModel.multipleAnswer = binding.pollMultipleAnswersCheckbox.isChecked
|
||||
viewModel.setMultipleAnswer(binding.pollMultipleAnswersCheckbox.isChecked)
|
||||
}
|
||||
|
||||
binding.pollCreateButton.setOnClickListener {
|
||||
viewModel.createPoll()
|
||||
}
|
||||
}
|
||||
|
||||
private fun setupStateObserver() {
|
||||
viewModel.viewState.observe(viewLifecycleOwner) { state ->
|
||||
when (state) {
|
||||
PollCreateViewModel.InitialState -> {}
|
||||
|
||||
is PollCreateViewModel.PollCreatedState -> {
|
||||
dismiss()
|
||||
}
|
||||
// PollCreateViewModel.InitialState -> showInitial()
|
||||
is PollCreateViewModel.PollCreatedState -> dismiss()
|
||||
is PollCreateViewModel.PollCreationFailedState -> dismiss()
|
||||
is PollCreateViewModel.PollCreatingState -> updateDialog(state)
|
||||
}
|
||||
}
|
||||
// viewModel.state.observe(this) { state ->
|
||||
// when (state) {
|
||||
// MessageSearchViewModel.InitialState -> showInitial()
|
||||
// MessageSearchViewModel.EmptyState -> showEmpty()
|
||||
// is MessageSearchViewModel.LoadedState -> showLoaded(state)
|
||||
// MessageSearchViewModel.LoadingState -> showLoading()
|
||||
// MessageSearchViewModel.ErrorState -> showError()
|
||||
// is MessageSearchViewModel.FinishedState -> onFinish()
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
private fun updateDialog(state: PollCreateViewModel.PollCreatingState) {
|
||||
// binding.pollCreateQuestion.setText(state.question)
|
||||
//
|
||||
// adapter!!.updateOptionsList(state.options)
|
||||
//
|
||||
// binding.pollPrivatePollCheckbox.isChecked = state.privatePoll
|
||||
// binding.pollMultipleAnswersCheckbox.isChecked = state.multipleAnswer
|
||||
}
|
||||
|
||||
private fun showInitial() {
|
||||
binding.pollCreateButton.isEnabled = false
|
||||
}
|
||||
|
||||
override fun onRemoveOptionsItemClick(pollCreateOptionItem: PollCreateOptionItem, position: Int) {
|
||||
viewModel.removeOption(pollCreateOptionItem)
|
||||
// adapter?.notifyItemRemoved(position)
|
||||
|
||||
// adapter?.notifyItemChanged(position)
|
||||
// adapter?.notifyItemRangeRemoved(position, 1)
|
||||
}
|
||||
|
||||
var optionsObserver: Observer<ArrayList<PollCreateOptionItem>> =
|
||||
object : Observer<ArrayList<PollCreateOptionItem>> {
|
||||
override fun onChanged(options: ArrayList<PollCreateOptionItem>) {
|
||||
adapter?.updateOptionsList(options)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Fragment creator
|
||||
*/
|
||||
|
@ -16,24 +16,27 @@ class PollCreateViewModel @Inject constructor(private val repository: PollReposi
|
||||
|
||||
private lateinit var roomToken: String
|
||||
|
||||
// TODO remove testing items
|
||||
var defaultOptions: MutableList<PollCreateOptionItem> = mutableListOf<PollCreateOptionItem>().apply {
|
||||
for (i in 1..3) {
|
||||
val item = PollCreateOptionItem("item " + i)
|
||||
this.add(item)
|
||||
}
|
||||
}
|
||||
// private var _options: MutableLiveData<ArrayList<PollCreateOptionItem>> =
|
||||
// MutableLiveData<ArrayList<PollCreateOptionItem>>()
|
||||
// val options: LiveData<ArrayList<PollCreateOptionItem>>
|
||||
// get() = _options
|
||||
|
||||
private var _options: MutableLiveData<ArrayList<PollCreateOptionItem>> =
|
||||
MutableLiveData<ArrayList<PollCreateOptionItem>>(defaultOptions)
|
||||
MutableLiveData<ArrayList<PollCreateOptionItem>>()
|
||||
val options: LiveData<ArrayList<PollCreateOptionItem>>
|
||||
get() = _options
|
||||
|
||||
var question: String = ""
|
||||
private var _question: MutableLiveData<String> = MutableLiveData<String>()
|
||||
val question: LiveData<String>
|
||||
get() = _question
|
||||
|
||||
// lateinit var options: List<String>
|
||||
var privatePoll: Boolean = false
|
||||
var multipleAnswer: Boolean = false
|
||||
private var _privatePoll: MutableLiveData<Boolean> = MutableLiveData<Boolean>()
|
||||
var privatePoll: LiveData<Boolean> = _privatePoll
|
||||
get() = _privatePoll
|
||||
|
||||
private var _multipleAnswer: MutableLiveData<Boolean> = MutableLiveData<Boolean>()
|
||||
var multipleAnswer: LiveData<Boolean> = _multipleAnswer
|
||||
get() = _multipleAnswer
|
||||
|
||||
sealed interface ViewState
|
||||
object InitialState : ViewState
|
||||
@ -56,10 +59,6 @@ class PollCreateViewModel @Inject constructor(private val repository: PollReposi
|
||||
disposable?.dispose()
|
||||
}
|
||||
|
||||
private fun <T> MutableLiveData<T>.notifyObserver() {
|
||||
this.value = this.value
|
||||
}
|
||||
|
||||
fun addOption() {
|
||||
val item = PollCreateOptionItem("")
|
||||
val currentOptions: ArrayList<PollCreateOptionItem> = _options.value ?: ArrayList()
|
||||
@ -75,33 +74,37 @@ class PollCreateViewModel @Inject constructor(private val repository: PollReposi
|
||||
|
||||
fun createPoll() {
|
||||
var maxVotes = 1
|
||||
if (multipleAnswer) {
|
||||
if (multipleAnswer.value == true) {
|
||||
maxVotes = 0
|
||||
}
|
||||
|
||||
var resultMode = 0
|
||||
if (privatePoll) {
|
||||
if (privatePoll.value == true) {
|
||||
resultMode = 1
|
||||
}
|
||||
|
||||
val items = _options.value!!
|
||||
repository.createPoll(roomToken, question, items.map { it.pollOption }, resultMode, maxVotes)
|
||||
?.doOnSubscribe { disposable = it }
|
||||
?.subscribeOn(Schedulers.io())
|
||||
?.observeOn(AndroidSchedulers.mainThread())
|
||||
?.subscribe(PollObserver())
|
||||
if (question.value?.isNotEmpty() == true && _options.value?.isNotEmpty() == true) {
|
||||
repository.createPoll(
|
||||
roomToken, question.value!!, _options.value!!.map { it.pollOption }, resultMode,
|
||||
maxVotes
|
||||
)
|
||||
?.doOnSubscribe { disposable = it }
|
||||
?.subscribeOn(Schedulers.io())
|
||||
?.observeOn(AndroidSchedulers.mainThread())
|
||||
?.subscribe(PollObserver())
|
||||
}
|
||||
}
|
||||
|
||||
private fun map(
|
||||
list: ArrayList<PollCreateOptionItem>,
|
||||
): List<String> {
|
||||
val resultList: ArrayList<String>? = ArrayList()
|
||||
fun setQuestion(question: String) {
|
||||
_question.value = question
|
||||
}
|
||||
|
||||
list.forEach {
|
||||
resultList?.add(it.pollOption)
|
||||
}
|
||||
fun setPrivatePoll(checked: Boolean) {
|
||||
_privatePoll.value = checked
|
||||
}
|
||||
|
||||
return resultList?.toList()!!
|
||||
fun setMultipleAnswer(checked: Boolean) {
|
||||
_multipleAnswer.value = checked
|
||||
}
|
||||
|
||||
inner class PollObserver : Observer<Poll> {
|
||||
|
Loading…
Reference in New Issue
Block a user