mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
56 lines
1.8 KiB
Swift
56 lines
1.8 KiB
Swift
import Foundation
|
|
import UIKit
|
|
|
|
class ChatSwipeToReplyRecognizer: UIPanGestureRecognizer {
|
|
var validatedGesture = false
|
|
var firstLocation: CGPoint = CGPoint()
|
|
var allowBothDirections: Bool = true
|
|
|
|
var shouldBegin: (() -> Bool)?
|
|
|
|
override init(target: Any?, action: Selector?) {
|
|
super.init(target: target, action: action)
|
|
|
|
self.maximumNumberOfTouches = 1
|
|
}
|
|
|
|
override func reset() {
|
|
super.reset()
|
|
|
|
self.validatedGesture = false
|
|
}
|
|
|
|
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent) {
|
|
super.touchesBegan(touches, with: event)
|
|
|
|
if let shouldBegin = self.shouldBegin, !shouldBegin() {
|
|
self.state = .failed
|
|
} else {
|
|
let touch = touches.first!
|
|
self.firstLocation = touch.location(in: self.view)
|
|
}
|
|
}
|
|
|
|
override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent) {
|
|
let location = touches.first!.location(in: self.view)
|
|
let translation = CGPoint(x: location.x - firstLocation.x, y: location.y - firstLocation.y)
|
|
|
|
let absTranslationX: CGFloat = abs(translation.x)
|
|
let absTranslationY: CGFloat = abs(translation.y)
|
|
|
|
if !self.validatedGesture {
|
|
if !self.allowBothDirections && translation.x > 0.0 {
|
|
self.state = .failed
|
|
} else if absTranslationY > 2.0 && absTranslationY > absTranslationX * 2.0 {
|
|
self.state = .failed
|
|
} else if absTranslationX > 2.0 && absTranslationY * 2.0 < absTranslationX {
|
|
self.validatedGesture = true
|
|
}
|
|
}
|
|
|
|
if self.validatedGesture {
|
|
super.touchesMoved(touches, with: event)
|
|
}
|
|
}
|
|
}
|