refactor(use-touch): move isTap logic to use-touch (#12003)

* refactor(use-touch): move onlyTap logic to use-touch

* chore: rename onlyTap to isTap
This commit is contained in:
inottn 2023-06-21 10:17:33 +08:00 committed by GitHub
parent 5e25e46fdb
commit 1545c07a71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 12 deletions

View File

@ -1,4 +1,5 @@
import { ref } from 'vue';
import { TAP_OFFSET } from '../utils';
type Direction = '' | 'vertical' | 'horizontal';
@ -20,6 +21,7 @@ export function useTouch() {
const offsetX = ref(0);
const offsetY = ref(0);
const direction = ref<Direction>('');
const isTap = ref(true);
const isVertical = () => direction.value === 'vertical';
const isHorizontal = () => direction.value === 'horizontal';
@ -30,6 +32,7 @@ export function useTouch() {
offsetX.value = 0;
offsetY.value = 0;
direction.value = '';
isTap.value = true;
};
const start = ((event: TouchEvent) => {
@ -55,6 +58,13 @@ export function useTouch() {
) {
direction.value = getDirection(offsetX.value, offsetY.value);
}
if (
isTap.value &&
(offsetX.value > TAP_OFFSET || offsetY.value > TAP_OFFSET)
) {
isTap.value = false;
}
}) as EventListener;
return {
@ -70,5 +80,6 @@ export function useTouch() {
direction,
isVertical,
isHorizontal,
isTap,
};
}

View File

@ -10,7 +10,6 @@ import {
makeNumberProp,
makeNumericProp,
createNamespace,
TAP_OFFSET,
} from '../utils';
// Composables
@ -114,7 +113,6 @@ export default defineComponent({
let groupRefRect: DOMRect;
let minRectTop = Number.MAX_SAFE_INTEGER;
let maxRectTop = Number.MIN_SAFE_INTEGER;
let onlyTap = false;
const updateRanges = () => {
groupRefRect = useRect(groupRef);
@ -185,7 +183,6 @@ export default defineComponent({
}
touch.start(event);
onlyTap = true;
updateRanges();
};
@ -196,18 +193,11 @@ export default defineComponent({
touch.move(event);
if (touch.isHorizontal()) {
if (touch.isHorizontal() && !touch.isTap.value) {
const { clientX, clientY } = event.touches[0];
preventDefault(event);
select(getScoreByPosition(clientX, clientY));
}
if (
onlyTap &&
(touch.offsetX.value > TAP_OFFSET || touch.offsetY.value > TAP_OFFSET)
) {
onlyTap = false;
}
};
const renderStar = (item: RateListItem, index: number) => {
@ -241,7 +231,13 @@ export default defineComponent({
let value = allowHalf
? getScoreByPosition(event.clientX, event.clientY)
: score;
if (props.clearable && onlyTap && value === props.modelValue) value = 0;
if (
props.clearable &&
touch.isTap.value &&
value === props.modelValue
) {
value = 0;
}
select(value);
};