chore(ImagePreview): reuse isTap ref (#12536)

This commit is contained in:
inottn 2023-12-27 20:43:02 +08:00 committed by GitHub
parent 5580b1be1b
commit 2f9f961bd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,6 @@ import {
createNamespace,
makeRequiredProp,
LONG_PRESS_START_TIME,
TAP_OFFSET,
type ComponentInstance,
} from '../utils';
@ -264,13 +263,12 @@ export default defineComponent({
return;
}
const { offsetX, offsetY } = touch;
const deltaTime = Date.now() - touchStartTime;
// Same as the default value of iOS double tap timeout
const TAP_TIME = 250;
if (offsetX.value < TAP_OFFSET && offsetY.value < TAP_OFFSET) {
if (touch.isTap.value) {
if (deltaTime < TAP_TIME) {
// allow double to scale
if (props.doubleScale) {