-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Slider] Improve touch passive event handling #13623
Comments
Well I don't. What is your browser/os version? I'm using |
@eps1lon I have recorded the video https://youtu.be/tVmOlY-7UaE |
You forgot to mention that this is happening when the device toolbar is enabled. This is caused by https://www.chromestatus.com/features/5093566007214080 and https://github.com/mui-org/material-ui/blob/master/packages/material-ui-lab/src/Slider/Slider.js#L326 Not sure how to resolve this yet. I guess we can remove this since we're have another non-passive listener that calls preventDefault to prevent scrolling. |
https://stackoverflow.com/questions/42101723/unable-to-preventdefault-inside-passive-event-listener This fixed it for me |
@csellis could you PLEASE let me know where/how to add that |
The issue was solved, upgrade to the latest version, it should be free from this problem. |
@oliviertassinari the issue still exists. |
@Misiu Not possible, the blocker:
|
@oliviertassinari so we must wait for Safari support? maybe leave passive only for Safari (is that possible?) |
@Misiu If you don't need to support iOS, sure, it's great 👌 In this context, I would propose that we take a step toward "touch-action: none": diff --git a/packages/material-ui/src/Slider/Slider.js b/packages/material-ui/src/Slider/Slider.js
index 3d3473c83..9d92ead64 100644
--- a/packages/material-ui/src/Slider/Slider.js
+++ b/packages/material-ui/src/Slider/Slider.js
@@ -125,6 +125,8 @@ const axisProps = {
const Identity = x => x;
+const iOS = typeof navigator !== 'undefined' && /iPad|iPhone|iPod/.test(navigator.userAgent);
+
export const styles = theme => ({
/* Styles applied to the root element. */
root: {
@@ -138,6 +140,8 @@ export const styles = theme => ({
touchAction: 'none',
color: theme.palette.primary.main,
WebkitTapHighlightColor: 'transparent',
+ // Disable scroll capabilities.
+ touchAction: 'none',
'&$disabled': {
pointerEvents: 'none',
cursor: 'default',
@@ -603,8 +607,11 @@ const Slider = React.forwardRef(function Slider(props, ref) {
});
const handleTouchStart = useEventCallback(event => {
- // Workaround as Safari has partial support for touchAction: 'none'.
- event.preventDefault();
+ if (event.cancelable) {
+ // Workaround as Safari has partial support for touchAction: 'none'.
+ event.preventDefault();
+ }
+
const touch = event.changedTouches[0];
if (touch != null) {
// A number that uniquely identifies the current finger in the touch session.
@@ -627,7 +634,11 @@ const Slider = React.forwardRef(function Slider(props, ref) {
React.useEffect(() => {
const { current: slider } = sliderRef;
- slider.addEventListener('touchstart', handleTouchStart);
+ // TODO: replace with a synthetic event, like onMouseDown.
+ // https://caniuse.com/#search=touch-action
+ slider.addEventListener('touchstart', handleTouchStart, {
+ // Workaround as Safari has partial support for touchAction: 'none'.
+ passive: !iOS,
+ });
const doc = ownerDocument(slider);
return () => {
diff --git a/packages/material-ui/src/SwipeableDrawer/SwipeableDrawer.js b/packages/material-ui/src/SwipeableDrawer/SwipeableDrawer.js
index ddd794460..3645c2372 100644
--- a/packages/material-ui/src/SwipeableDrawer/SwipeableDrawer.js
+++ b/packages/material-ui/src/SwipeableDrawer/SwipeableDrawer.js
@@ -115,8 +115,7 @@ function findNativeHandler({ domTreeShapes, start, current, anchor }) {
});
}
-const disableSwipeToOpenDefault =
- typeof navigator !== 'undefined' && /iPad|iPhone|iPod/.test(navigator.userAgent);
+const iOS = typeof navigator !== 'undefined' && /iPad|iPhone|iPod/.test(navigator.userAgent);
const transitionDurationDefault = { enter: duration.enteringScreen, exit: duration.leavingScreen };
const useEnhancedEffect = typeof window !== 'undefined' ? React.useLayoutEffect : React.useEffect;
@@ -126,7 +125,7 @@ const SwipeableDrawer = React.forwardRef(function SwipeableDrawer(props, ref) {
anchor = 'left',
disableBackdropTransition = false,
disableDiscovery = false,
- disableSwipeToOpen = disableSwipeToOpenDefault,
+ disableSwipeToOpen = iOS,
hideBackdrop,
hysteresis = 0.52,
minFlingVelocity = 450, |
@Misiu feel free to work on it :) |
https://material-ui.com/lab/slider/
You can just open chrome developer console and drag the slider, you will see all the warnings.
The text was updated successfully, but these errors were encountered: