1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 22:30:32 +05:30
yattee/Shared/Player/PlayerGestures.swift

69 lines
2.0 KiB
Swift
Raw Normal View History

2022-02-17 01:53:11 +05:30
import SwiftUI
struct PlayerGestures: View {
@EnvironmentObject<PlayerModel> private var player
@EnvironmentObject<PlayerControlsModel> private var model
var body: some View {
HStack(spacing: 0) {
gestureRectangle
.tapRecognizer(
tapSensitivity: 0.2,
2022-07-10 23:21:46 +05:30
singleTapAction: { singleTapAction() },
2022-02-17 01:53:11 +05:30
doubleTapAction: {
player.backend.seek(relative: .secondsInDefaultTimescale(-10), seekType: .userInteracted)
2022-03-28 00:54:32 +05:30
},
anyTapAction: {
model.update()
2022-02-17 01:53:11 +05:30
}
)
gestureRectangle
.tapRecognizer(
tapSensitivity: 0.2,
2022-07-10 23:21:46 +05:30
singleTapAction: { singleTapAction() },
2022-02-17 01:53:11 +05:30
doubleTapAction: {
player.backend.togglePlay()
2022-03-28 00:54:32 +05:30
},
anyTapAction: {
model.update()
2022-02-17 01:53:11 +05:30
}
)
gestureRectangle
.tapRecognizer(
tapSensitivity: 0.2,
2022-07-10 23:21:46 +05:30
singleTapAction: { singleTapAction() },
2022-02-17 01:53:11 +05:30
doubleTapAction: {
player.backend.seek(relative: .secondsInDefaultTimescale(10), seekType: .userInteracted)
2022-03-28 00:54:32 +05:30
},
anyTapAction: {
model.update()
2022-02-17 01:53:11 +05:30
}
)
}
}
2022-07-10 23:21:46 +05:30
func singleTapAction() {
if model.presentingOverlays {
withAnimation(PlayerControls.animation) {
model.hideOverlays()
}
} else {
model.toggle()
}
}
2022-02-17 01:53:11 +05:30
var gestureRectangle: some View {
Color.clear
.contentShape(Rectangle())
.frame(maxWidth: .infinity, maxHeight: .infinity)
}
}
struct PlayerGestures_Previews: PreviewProvider {
static var previews: some View {
PlayerGestures()
}
}