aboutsummaryrefslogtreecommitdiff
path: root/androidApp/src/main/java/mx/trackermap/TrackerMap/android/units/UnitsViewModel.kt
blob: cb307255f716cb9aafcc73a5063b8ad41a474ca9 (plain)
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
116
117
118
119
120
121
122
123
124
125
126
package mx.trackermap.TrackerMap.android.units

import android.util.Log
import androidx.lifecycle.*
import com.mousebird.maply.Point2d
import kotlinx.coroutines.DelicateCoroutinesApi
import kotlinx.coroutines.flow.collect
import kotlinx.coroutines.launch
import mx.trackermap.TrackerMap.client.models.Geofence
import mx.trackermap.TrackerMap.client.models.MapLayer
import mx.trackermap.TrackerMap.client.models.UnitInformation
import mx.trackermap.TrackerMap.controllers.GeofencesController
import mx.trackermap.TrackerMap.controllers.UnitsController
import org.koin.core.component.KoinComponent
import org.koin.core.component.inject
import kotlin.time.ExperimentalTime


@DelicateCoroutinesApi
@ExperimentalTime
class UnitsViewModel(
    savedStateHandle: SavedStateHandle
) : ViewModel(), KoinComponent {

    enum class UnitsDisplayMode {
        MAP, LIST
    }

    data class Camera (
        val point: Point2d,
        val animated: Boolean,
    )

    private val unitsController: UnitsController by inject()
    private val geofenceController: GeofencesController by inject()

    private var _searchQuery = savedStateHandle.getLiveData("searchQuery", "")
    private var _unitsDisplayMode = MutableLiveData(UnitsDisplayMode.MAP)
    private var _units = MutableLiveData<List<UnitInformation>>()
    private var _selectedUnit = MutableLiveData<UnitInformation?>()
    private var _mapLayerType = MutableLiveData<MapLayer.Type>()
    private var _geofences = MutableLiveData<Map<Int, Geofence>>()
    private val _camera = MutableLiveData<Camera?>()

    val searchQuery: LiveData<String> get() = _searchQuery
    val unitsDisplayMode: LiveData<UnitsDisplayMode> get() = _unitsDisplayMode
    val units: LiveData<List<UnitInformation>> get() = _units
    val selectedUnit: LiveData<UnitInformation?> get() = _selectedUnit
    val mapLayerType: LiveData<MapLayer.Type> get() = _mapLayerType
    val geofences: LiveData<Map<Int, Geofence>> get() = _geofences
    val camera: LiveData<Camera?> get() = _camera

    init {
        Log.d("UnitsViewModel", "Initializing Units View Model")
        viewModelScope.launch {
            setupObservers()
        }
        viewModelScope.launch {
            setupGeofenceObserver()
        }
    }

    private suspend fun setupObservers() {
        Log.d("UnitsViewModel", "Setup observers")
        unitsController.displayedUnitsFlow.collect { units ->
            this._units.value = units
        }
    }

    private suspend fun setupGeofenceObserver() {
        geofenceController.geofencesFlow.collect {
            this._geofences.postValue(it)
        }
    }

    fun selectUnit(unit: UnitInformation) {
        Log.d("UnitsViewModel", "Selecting unit ${unit.device.name}")
        _selectedUnit.postValue(unit)
        setDisplayMode(UnitsDisplayMode.MAP)
    }

    fun selectUnitWith(positionId: Int?) {
        if (positionId == null) {
            Log.d("UnitsViewModel", "Deselecting unit")
            _selectedUnit.postValue(null)
            return
        }

        Log.d("UnitsViewModel", "Selecting unit with position id: $positionId")
        val unit = _units.value?.find { it.position?.id == positionId }
        _selectedUnit.postValue(unit)
    }

    fun setDisplayMode(displayMode: UnitsDisplayMode) {
        Log.d("UnitsViewModel", "Setting Display mode to $displayMode")
        _unitsDisplayMode.postValue(displayMode)
    }

    fun setMapLayerType(layer: MapLayer.Type) {
        _mapLayerType.postValue(layer)
    }

    fun toggleDisplayMode() {
        Log.d("UnitsViewModel", "Toggling Display mode")
        val newDisplayMode =
            if (unitsDisplayMode.value == UnitsDisplayMode.MAP) {
                _selectedUnit.postValue(null)
                UnitsDisplayMode.LIST
            } else {
                UnitsDisplayMode.MAP
            }
        _unitsDisplayMode.postValue(newDisplayMode)
    }

    fun search(query: String) {
        unitsController.search(query)
    }

    fun moveCamera(point: Camera) {
        _camera.postValue(point)
    }

    fun clearCamera() {
        _camera.postValue(null)
    }
}