Improve reader actions editor
parent
aabdd281f3
commit
1382ab7933
@ -0,0 +1,61 @@
|
||||
package org.koitharu.kotatsu.settings.reader
|
||||
|
||||
import androidx.lifecycle.viewModelScope
|
||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.flow.SharingStarted
|
||||
import kotlinx.coroutines.flow.map
|
||||
import kotlinx.coroutines.flow.onStart
|
||||
import kotlinx.coroutines.flow.stateIn
|
||||
import kotlinx.coroutines.plus
|
||||
import org.koitharu.kotatsu.core.ui.BaseViewModel
|
||||
import org.koitharu.kotatsu.reader.data.TapGridSettings
|
||||
import org.koitharu.kotatsu.reader.domain.TapGridArea
|
||||
import org.koitharu.kotatsu.reader.ui.tapgrid.TapAction
|
||||
import java.util.EnumMap
|
||||
import javax.inject.Inject
|
||||
|
||||
@HiltViewModel
|
||||
class ReaderTapGridConfigViewModel @Inject constructor(
|
||||
private val tapGridSettings: TapGridSettings,
|
||||
) : BaseViewModel() {
|
||||
|
||||
val content = tapGridSettings.observe()
|
||||
.onStart { emit(null) }
|
||||
.map { getData() }
|
||||
.stateIn(viewModelScope + Dispatchers.Default, SharingStarted.Eagerly, emptyMap())
|
||||
|
||||
fun reset() {
|
||||
launchJob(Dispatchers.Default) {
|
||||
tapGridSettings.reset()
|
||||
}
|
||||
}
|
||||
|
||||
fun disableAll() {
|
||||
launchJob(Dispatchers.Default) {
|
||||
tapGridSettings.disableAll()
|
||||
}
|
||||
}
|
||||
|
||||
fun setTapAction(area: TapGridArea, isLongTap: Boolean, action: TapAction?) {
|
||||
launchJob(Dispatchers.Default) {
|
||||
tapGridSettings.setTapAction(area, isLongTap, action)
|
||||
}
|
||||
}
|
||||
|
||||
private fun getData(): Map<TapGridArea, TapActions> {
|
||||
val map = EnumMap<TapGridArea, TapActions>(TapGridArea::class.java)
|
||||
for (area in TapGridArea.entries) {
|
||||
map[area] = TapActions(
|
||||
tapAction = tapGridSettings.getTapAction(area, isLongTap = false),
|
||||
longTapAction = tapGridSettings.getTapAction(area, isLongTap = true),
|
||||
)
|
||||
}
|
||||
return map
|
||||
}
|
||||
|
||||
data class TapActions(
|
||||
val tapAction: TapAction?,
|
||||
val longTapAction: TapAction?,
|
||||
)
|
||||
}
|
||||
Loading…
Reference in New Issue