mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix: reduce passive event warning of touchstart event (#10954)
This commit is contained in:
parent
6b7ae0f6a0
commit
717f244d2f
@ -279,7 +279,7 @@ export default defineComponent({
|
|||||||
return (
|
return (
|
||||||
<SwipeItem
|
<SwipeItem
|
||||||
class={bem('swipe-item')}
|
class={bem('swipe-item')}
|
||||||
onTouchstart={onTouchStart}
|
onTouchstartPassive={onTouchStart}
|
||||||
onTouchmove={onTouchMove}
|
onTouchmove={onTouchMove}
|
||||||
onTouchend={onTouchEnd}
|
onTouchend={onTouchEnd}
|
||||||
onTouchcancel={onTouchEnd}
|
onTouchcancel={onTouchEnd}
|
||||||
|
@ -275,7 +275,7 @@ export default defineComponent({
|
|||||||
class={bem('sidebar')}
|
class={bem('sidebar')}
|
||||||
style={sidebarStyle.value}
|
style={sidebarStyle.value}
|
||||||
onClick={onClickSidebar}
|
onClick={onClickSidebar}
|
||||||
onTouchstart={touch.start}
|
onTouchstartPassive={touch.start}
|
||||||
onTouchmove={onTouchMove}
|
onTouchmove={onTouchMove}
|
||||||
>
|
>
|
||||||
{renderIndexes()}
|
{renderIndexes()}
|
||||||
|
@ -280,10 +280,8 @@ export default defineComponent({
|
|||||||
unfit: !props.safeAreaInsetBottom,
|
unfit: !props.safeAreaInsetBottom,
|
||||||
'with-title': !!Title,
|
'with-title': !!Title,
|
||||||
})}
|
})}
|
||||||
onTouchstart={stopPropagation}
|
|
||||||
onAnimationend={onAnimationEnd}
|
onAnimationend={onAnimationEnd}
|
||||||
// @ts-ignore
|
onTouchstartPassive={stopPropagation}
|
||||||
onWebkitAnimationEnd={onAnimationEnd}
|
|
||||||
>
|
>
|
||||||
{Title}
|
{Title}
|
||||||
<div class={bem('body')}>
|
<div class={bem('body')}>
|
||||||
|
@ -88,8 +88,8 @@ export default defineComponent({
|
|||||||
return () => (
|
return () => (
|
||||||
<div
|
<div
|
||||||
class={bem('wrapper', { wider: props.wider })}
|
class={bem('wrapper', { wider: props.wider })}
|
||||||
onTouchstart={onTouchStart}
|
onTouchstartPassive={onTouchStart}
|
||||||
onTouchmove={onTouchMove}
|
onTouchmovePassive={onTouchMove}
|
||||||
onTouchend={onTouchEnd}
|
onTouchend={onTouchEnd}
|
||||||
onTouchcancel={onTouchEnd}
|
onTouchcancel={onTouchEnd}
|
||||||
>
|
>
|
||||||
|
@ -78,7 +78,7 @@ export default defineComponent({
|
|||||||
<div class={bem()}>
|
<div class={bem()}>
|
||||||
<ul
|
<ul
|
||||||
class={[bem('security'), { [BORDER_SURROUND]: !props.gutter }]}
|
class={[bem('security'), { [BORDER_SURROUND]: !props.gutter }]}
|
||||||
onTouchstart={onTouchStart}
|
onTouchstartPassive={onTouchStart}
|
||||||
>
|
>
|
||||||
{renderPoints()}
|
{renderPoints()}
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -308,7 +308,7 @@ export default defineComponent({
|
|||||||
return () => (
|
return () => (
|
||||||
<div
|
<div
|
||||||
class={[bem(), props.className]}
|
class={[bem(), props.className]}
|
||||||
onTouchstart={onTouchStart}
|
onTouchstartPassive={onTouchStart}
|
||||||
onTouchmove={onTouchMove}
|
onTouchmove={onTouchMove}
|
||||||
onTouchend={onTouchEnd}
|
onTouchend={onTouchEnd}
|
||||||
onTouchcancel={onTouchEnd}
|
onTouchcancel={onTouchEnd}
|
||||||
|
@ -221,11 +221,7 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
// add passive option to avoid Chrome warning
|
// useEventListener will set passive to `false` to eliminate the warning of Chrome
|
||||||
useEventListener('touchstart', onTouchStart, {
|
|
||||||
target: track,
|
|
||||||
passive: true,
|
|
||||||
});
|
|
||||||
useEventListener('touchmove', onTouchMove, {
|
useEventListener('touchmove', onTouchMove, {
|
||||||
target: track,
|
target: track,
|
||||||
});
|
});
|
||||||
@ -244,6 +240,7 @@ export default defineComponent({
|
|||||||
ref={track}
|
ref={track}
|
||||||
class={bem('track')}
|
class={bem('track')}
|
||||||
style={trackStyle}
|
style={trackStyle}
|
||||||
|
onTouchstartPassive={onTouchStart}
|
||||||
onTouchend={onTouchEnd}
|
onTouchend={onTouchEnd}
|
||||||
onTouchcancel={onTouchEnd}
|
onTouchcancel={onTouchEnd}
|
||||||
>
|
>
|
||||||
|
@ -279,7 +279,7 @@ export default defineComponent({
|
|||||||
tabindex={props.disabled ? undefined : 0}
|
tabindex={props.disabled ? undefined : 0}
|
||||||
aria-disabled={props.disabled}
|
aria-disabled={props.disabled}
|
||||||
aria-readonly={props.readonly}
|
aria-readonly={props.readonly}
|
||||||
onTouchstart={onTouchStart}
|
onTouchstartPassive={onTouchStart}
|
||||||
onTouchmove={onTouchMove}
|
onTouchmove={onTouchMove}
|
||||||
>
|
>
|
||||||
{list.value.map(renderStar)}
|
{list.value.map(renderStar)}
|
||||||
|
@ -301,7 +301,7 @@ export default defineComponent({
|
|||||||
aria-disabled={props.disabled || undefined}
|
aria-disabled={props.disabled || undefined}
|
||||||
aria-readonly={props.readonly || undefined}
|
aria-readonly={props.readonly || undefined}
|
||||||
aria-orientation={props.vertical ? 'vertical' : 'horizontal'}
|
aria-orientation={props.vertical ? 'vertical' : 'horizontal'}
|
||||||
onTouchstart={(event) => {
|
onTouchstartPassive={(event) => {
|
||||||
if (typeof index === 'number') {
|
if (typeof index === 'number') {
|
||||||
// save index of current button
|
// save index of current button
|
||||||
buttonIndex = index;
|
buttonIndex = index;
|
||||||
|
@ -259,7 +259,7 @@ export default defineComponent({
|
|||||||
actionType = type;
|
actionType = type;
|
||||||
onChange();
|
onChange();
|
||||||
},
|
},
|
||||||
onTouchstart: () => {
|
onTouchstartPassive: () => {
|
||||||
actionType = type;
|
actionType = type;
|
||||||
onTouchStart();
|
onTouchStart();
|
||||||
},
|
},
|
||||||
|
@ -220,7 +220,7 @@ export default defineComponent({
|
|||||||
ref={root}
|
ref={root}
|
||||||
class={bem()}
|
class={bem()}
|
||||||
onClick={getClickHandler('cell', lockClick)}
|
onClick={getClickHandler('cell', lockClick)}
|
||||||
onTouchstart={onTouchStart}
|
onTouchstartPassive={onTouchStart}
|
||||||
onTouchmove={onTouchMove}
|
onTouchmove={onTouchMove}
|
||||||
onTouchend={onTouchEnd}
|
onTouchend={onTouchEnd}
|
||||||
onTouchcancel={onTouchEnd}
|
onTouchcancel={onTouchEnd}
|
||||||
|
@ -440,7 +440,7 @@ export default defineComponent({
|
|||||||
<div
|
<div
|
||||||
style={trackStyle.value}
|
style={trackStyle.value}
|
||||||
class={bem('track', { vertical: props.vertical })}
|
class={bem('track', { vertical: props.vertical })}
|
||||||
onTouchstart={onTouchStart}
|
onTouchstartPassive={onTouchStart}
|
||||||
onTouchmove={onTouchMove}
|
onTouchmove={onTouchMove}
|
||||||
onTouchend={onTouchEnd}
|
onTouchend={onTouchEnd}
|
||||||
onTouchcancel={onTouchEnd}
|
onTouchcancel={onTouchEnd}
|
||||||
|
7
packages/vant/src/vue-tsx-shim.d.ts
vendored
7
packages/vant/src/vue-tsx-shim.d.ts
vendored
@ -12,5 +12,12 @@ declare module 'vue' {
|
|||||||
onTouchmove?: EventHandler;
|
onTouchmove?: EventHandler;
|
||||||
onTouchstart?: EventHandler;
|
onTouchstart?: EventHandler;
|
||||||
onTouchcancel?: EventHandler;
|
onTouchcancel?: EventHandler;
|
||||||
|
onTouchmovePassive?: EventHandler;
|
||||||
|
onTouchstartPassive?: EventHandler;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface HTMLAttributes {
|
||||||
|
onTouchmovePassive?: EventHandler;
|
||||||
|
onTouchstartPassive?: EventHandler;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user