fix: reduce passive event warning of touchstart event (#10954)

This commit is contained in:
neverland 2022-08-21 22:08:27 +08:00 committed by GitHub
parent 6b7ae0f6a0
commit 717f244d2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 21 additions and 19 deletions

View File

@ -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}

View File

@ -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()}

View File

@ -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')}>

View File

@ -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}
> >

View File

@ -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>

View File

@ -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}

View File

@ -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}
> >

View File

@ -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)}

View File

@ -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;

View File

@ -259,7 +259,7 @@ export default defineComponent({
actionType = type; actionType = type;
onChange(); onChange();
}, },
onTouchstart: () => { onTouchstartPassive: () => {
actionType = type; actionType = type;
onTouchStart(); onTouchStart();
}, },

View File

@ -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}

View File

@ -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}

View File

@ -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;
} }
} }