Add back haptic feedback long tap to fav (#8418)

* Add back haptic feedback long tap to fav

- add back haptic when long tap on manga to add to library

* simplify

* Revert "simplify"

This reverts commit f4bd57315a.

* Revert "Add back haptic feedback long tap to fav"

This reverts commit 81486e30e9.

* cleanup
This commit is contained in:
Luqman 2022-11-05 09:52:28 +07:00 committed by GitHub
parent 280b0f42db
commit 34aa4eb291
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,9 @@ import androidx.activity.compose.BackHandler
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.ui.hapticfeedback.HapticFeedbackType
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.platform.LocalHapticFeedback
import androidx.core.os.bundleOf
import eu.kanade.domain.source.model.Source
import eu.kanade.presentation.browse.BrowseSourceScreen
@ -50,6 +52,7 @@ open class BrowseSourceController(bundle: Bundle) :
override fun ComposeContent() {
val scope = rememberCoroutineScope()
val context = LocalContext.current
val haptic = LocalHapticFeedback.current
BrowseSourceScreen(
presenter = presenter,
@ -64,6 +67,7 @@ open class BrowseSourceController(bundle: Bundle) :
duplicateManga != null -> presenter.dialog = Dialog.AddDuplicateManga(manga, duplicateManga)
else -> presenter.addFavorite(manga)
}
haptic.performHapticFeedback(HapticFeedbackType.LongPress)
}
},
onWebViewClick = f@{