2020-12-01 16:24:12 +01:00

56 lines
2.0 KiB
Kotlin

package com.example.todoapp.fragments
import android.app.Application
import android.view.View
import android.widget.AdapterView
import android.widget.TextView
import androidx.core.content.ContextCompat
import androidx.lifecycle.AndroidViewModel
import androidx.lifecycle.MutableLiveData
import com.example.todoapp.R
import com.example.todoapp.data.models.Priority
import com.example.todoapp.data.models.ToDoData
class SharedViewModel(application: Application): AndroidViewModel(application) {
/** ============================= List Fragment ============================= */
val emptyDatabase: MutableLiveData<Boolean> = MutableLiveData(false)
fun checkIfDatabaseEmpty(toDoData: List<ToDoData>){
emptyDatabase.value = toDoData.isEmpty()
}
/** ============================= Add/Update Fragment ============================= */
val listener: AdapterView.OnItemSelectedListener = object :
AdapterView.OnItemSelectedListener{
override fun onNothingSelected(p0: AdapterView<*>?) {}
override fun onItemSelected(
parent: AdapterView<*>?,
view: View?,
position: Int,
id: Long
) {
when(position){
0 -> { (parent?.getChildAt(0) as TextView).setTextColor(ContextCompat.getColor(application, R.color.red)) }
1 -> { (parent?.getChildAt(0) as TextView).setTextColor(ContextCompat.getColor(application, R.color.yellow)) }
2 -> { (parent?.getChildAt(0) as TextView).setTextColor(ContextCompat.getColor(application, R.color.green)) }
}
}
}
fun verifyDataFromUser(title: String, description: String): Boolean {
return !(title.isEmpty() || description.isEmpty())
}
fun parsePriority(priority: String): Priority {
return when(priority){
"High Priority" -> { Priority.HIGH }
"Medium Priority" -> { Priority.MEDIUM }
"Low Priority" -> { Priority.LOW }
else -> Priority.LOW
}
}
}