UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

631 lines (525 loc) 22.8 kB
"use strict"; var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.reset = reset; exports.default = void 0; var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties")); var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); var React = _interopRequireWildcard(require("react")); var _propTypes = _interopRequireDefault(require("prop-types")); var ReactDOM = _interopRequireWildcard(require("react-dom")); var _utils = require("@material-ui/utils"); var _styles = require("@material-ui/styles"); var _Drawer = _interopRequireWildcard(require("../Drawer/Drawer")); var _ownerDocument = _interopRequireDefault(require("../utils/ownerDocument")); var _useEventCallback = _interopRequireDefault(require("../utils/useEventCallback")); var _transitions = require("../styles/transitions"); var _useTheme = _interopRequireDefault(require("../styles/useTheme")); var _utils2 = require("../transitions/utils"); var _NoSsr = _interopRequireDefault(require("../NoSsr")); var _SwipeArea = _interopRequireDefault(require("./SwipeArea")); // This value is closed to what browsers are using internally to // trigger a native scroll. var UNCERTAINTY_THRESHOLD = 3; // px // We can only have one node at the time claiming ownership for handling the swipe. // Otherwise, the UX would be confusing. // That's why we use a singleton here. var nodeThatClaimedTheSwipe = null; // Exported for test purposes. function reset() { nodeThatClaimedTheSwipe = null; } function calculateCurrentX(anchor, touches) { return anchor === 'right' ? document.body.offsetWidth - touches[0].pageX : touches[0].pageX; } function calculateCurrentY(anchor, touches) { return anchor === 'bottom' ? window.innerHeight - touches[0].clientY : touches[0].clientY; } function getMaxTranslate(horizontalSwipe, paperInstance) { return horizontalSwipe ? paperInstance.clientWidth : paperInstance.clientHeight; } function getTranslate(currentTranslate, startLocation, open, maxTranslate) { return Math.min(Math.max(open ? startLocation - currentTranslate : maxTranslate + startLocation - currentTranslate, 0), maxTranslate); } function getDomTreeShapes(element, rootNode) { // Adapted from https://github.com/oliviertassinari/react-swipeable-views/blob/7666de1dba253b896911adf2790ce51467670856/packages/react-swipeable-views/src/SwipeableViews.js#L129 var domTreeShapes = []; while (element && element !== rootNode) { var style = window.getComputedStyle(element); if ( // Ignore the scroll children if the element is absolute positioned. style.getPropertyValue('position') === 'absolute' || // Ignore the scroll children if the element has an overflowX hidden style.getPropertyValue('overflow-x') === 'hidden') { domTreeShapes = []; } else if (element.clientWidth > 0 && element.scrollWidth > element.clientWidth || element.clientHeight > 0 && element.scrollHeight > element.clientHeight) { // Ignore the nodes that have no width. // Keep elements with a scroll domTreeShapes.push(element); } element = element.parentElement; } return domTreeShapes; } function findNativeHandler(_ref) { var domTreeShapes = _ref.domTreeShapes, start = _ref.start, current = _ref.current, anchor = _ref.anchor; // Adapted from https://github.com/oliviertassinari/react-swipeable-views/blob/7666de1dba253b896911adf2790ce51467670856/packages/react-swipeable-views/src/SwipeableViews.js#L175 var axisProperties = { scrollPosition: { x: 'scrollLeft', y: 'scrollTop' }, scrollLength: { x: 'scrollWidth', y: 'scrollHeight' }, clientLength: { x: 'clientWidth', y: 'clientHeight' } }; return domTreeShapes.some(function (shape) { // Determine if we are going backward or forward. var goingForward = current >= start; if (anchor === 'top' || anchor === 'left') { goingForward = !goingForward; } var axis = anchor === 'left' || anchor === 'right' ? 'x' : 'y'; var scrollPosition = shape[axisProperties.scrollPosition[axis]]; var areNotAtStart = scrollPosition > 0; var areNotAtEnd = scrollPosition + shape[axisProperties.clientLength[axis]] < shape[axisProperties.scrollLength[axis]]; if (goingForward && areNotAtEnd || !goingForward && areNotAtStart) { return shape; } return null; }); } var iOS = typeof navigator !== 'undefined' && /iPad|iPhone|iPod/.test(navigator.userAgent); var transitionDurationDefault = { enter: _transitions.duration.enteringScreen, exit: _transitions.duration.leavingScreen }; var useEnhancedEffect = typeof window !== 'undefined' ? React.useLayoutEffect : React.useEffect; var SwipeableDrawer = /*#__PURE__*/React.forwardRef(function SwipeableDrawer(inProps, ref) { var theme = (0, _useTheme.default)(); var props = (0, _styles.getThemeProps)({ name: 'MuiSwipeableDrawer', props: (0, _extends2.default)({}, inProps), theme: theme }); var _props$anchor = props.anchor, anchor = _props$anchor === void 0 ? 'left' : _props$anchor, _props$disableBackdro = props.disableBackdropTransition, disableBackdropTransition = _props$disableBackdro === void 0 ? false : _props$disableBackdro, _props$disableDiscove = props.disableDiscovery, disableDiscovery = _props$disableDiscove === void 0 ? false : _props$disableDiscove, _props$disableSwipeTo = props.disableSwipeToOpen, disableSwipeToOpen = _props$disableSwipeTo === void 0 ? iOS : _props$disableSwipeTo, hideBackdrop = props.hideBackdrop, _props$hysteresis = props.hysteresis, hysteresis = _props$hysteresis === void 0 ? 0.52 : _props$hysteresis, _props$minFlingVeloci = props.minFlingVelocity, minFlingVelocity = _props$minFlingVeloci === void 0 ? 450 : _props$minFlingVeloci, _props$ModalProps = props.ModalProps; _props$ModalProps = _props$ModalProps === void 0 ? {} : _props$ModalProps; var BackdropProps = _props$ModalProps.BackdropProps, ModalPropsProp = (0, _objectWithoutProperties2.default)(_props$ModalProps, ["BackdropProps"]), onClose = props.onClose, onOpen = props.onOpen, open = props.open, _props$PaperProps = props.PaperProps, PaperProps = _props$PaperProps === void 0 ? {} : _props$PaperProps, SwipeAreaProps = props.SwipeAreaProps, _props$swipeAreaWidth = props.swipeAreaWidth, swipeAreaWidth = _props$swipeAreaWidth === void 0 ? 20 : _props$swipeAreaWidth, _props$transitionDura = props.transitionDuration, transitionDuration = _props$transitionDura === void 0 ? transitionDurationDefault : _props$transitionDura, _props$variant = props.variant, variant = _props$variant === void 0 ? 'temporary' : _props$variant, other = (0, _objectWithoutProperties2.default)(props, ["anchor", "disableBackdropTransition", "disableDiscovery", "disableSwipeToOpen", "hideBackdrop", "hysteresis", "minFlingVelocity", "ModalProps", "onClose", "onOpen", "open", "PaperProps", "SwipeAreaProps", "swipeAreaWidth", "transitionDuration", "variant"]); var _React$useState = React.useState(false), maybeSwiping = _React$useState[0], setMaybeSwiping = _React$useState[1]; var swipeInstance = React.useRef({ isSwiping: null }); var swipeAreaRef = React.useRef(); var backdropRef = React.useRef(); var paperRef = React.useRef(); var touchDetected = React.useRef(false); // Ref for transition duration based on / to match swipe speed var calculatedDurationRef = React.useRef(); // Use a ref so the open value used is always up to date inside useCallback. useEnhancedEffect(function () { calculatedDurationRef.current = null; }, [open]); var setPosition = React.useCallback(function (translate) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var _options$mode = options.mode, mode = _options$mode === void 0 ? null : _options$mode, _options$changeTransi = options.changeTransition, changeTransition = _options$changeTransi === void 0 ? true : _options$changeTransi; var anchorRtl = (0, _Drawer.getAnchor)(theme, anchor); var rtlTranslateMultiplier = ['right', 'bottom'].indexOf(anchorRtl) !== -1 ? 1 : -1; var horizontalSwipe = (0, _Drawer.isHorizontal)(anchor); var transform = horizontalSwipe ? "translate(".concat(rtlTranslateMultiplier * translate, "px, 0)") : "translate(0, ".concat(rtlTranslateMultiplier * translate, "px)"); var drawerStyle = paperRef.current.style; drawerStyle.webkitTransform = transform; drawerStyle.transform = transform; var transition = ''; if (mode) { transition = theme.transitions.create('all', (0, _utils2.getTransitionProps)({ timeout: transitionDuration }, { mode: mode })); } if (changeTransition) { drawerStyle.webkitTransition = transition; drawerStyle.transition = transition; } if (!disableBackdropTransition && !hideBackdrop) { var backdropStyle = backdropRef.current.style; backdropStyle.opacity = 1 - translate / getMaxTranslate(horizontalSwipe, paperRef.current); if (changeTransition) { backdropStyle.webkitTransition = transition; backdropStyle.transition = transition; } } }, [anchor, disableBackdropTransition, hideBackdrop, theme, transitionDuration]); var handleBodyTouchEnd = (0, _useEventCallback.default)(function (event) { if (!touchDetected.current) { return; } nodeThatClaimedTheSwipe = null; touchDetected.current = false; setMaybeSwiping(false); // The swipe wasn't started. if (!swipeInstance.current.isSwiping) { swipeInstance.current.isSwiping = null; return; } swipeInstance.current.isSwiping = null; var anchorRtl = (0, _Drawer.getAnchor)(theme, anchor); var horizontal = (0, _Drawer.isHorizontal)(anchor); var current; if (horizontal) { current = calculateCurrentX(anchorRtl, event.changedTouches); } else { current = calculateCurrentY(anchorRtl, event.changedTouches); } var startLocation = horizontal ? swipeInstance.current.startX : swipeInstance.current.startY; var maxTranslate = getMaxTranslate(horizontal, paperRef.current); var currentTranslate = getTranslate(current, startLocation, open, maxTranslate); var translateRatio = currentTranslate / maxTranslate; if (Math.abs(swipeInstance.current.velocity) > minFlingVelocity) { // Calculate transition duration to match swipe speed calculatedDurationRef.current = Math.abs((maxTranslate - currentTranslate) / swipeInstance.current.velocity) * 1000; } if (open) { if (swipeInstance.current.velocity > minFlingVelocity || translateRatio > hysteresis) { onClose(); } else { // Reset the position, the swipe was aborted. setPosition(0, { mode: 'exit' }); } return; } if (swipeInstance.current.velocity < -minFlingVelocity || 1 - translateRatio > hysteresis) { onOpen(); } else { // Reset the position, the swipe was aborted. setPosition(getMaxTranslate(horizontal, paperRef.current), { mode: 'enter' }); } }); var handleBodyTouchMove = (0, _useEventCallback.default)(function (event) { // the ref may be null when a parent component updates while swiping if (!paperRef.current || !touchDetected.current) { return; } // We are not supposed to handle this touch move because the swipe was started in a scrollable container in the drawer if (nodeThatClaimedTheSwipe != null && nodeThatClaimedTheSwipe !== swipeInstance.current) { return; } var anchorRtl = (0, _Drawer.getAnchor)(theme, anchor); var horizontalSwipe = (0, _Drawer.isHorizontal)(anchor); var currentX = calculateCurrentX(anchorRtl, event.touches); var currentY = calculateCurrentY(anchorRtl, event.touches); if (open && paperRef.current.contains(event.target) && nodeThatClaimedTheSwipe == null) { var domTreeShapes = getDomTreeShapes(event.target, paperRef.current); var nativeHandler = findNativeHandler({ domTreeShapes: domTreeShapes, start: horizontalSwipe ? swipeInstance.current.startX : swipeInstance.current.startY, current: horizontalSwipe ? currentX : currentY, anchor: anchor }); if (nativeHandler) { nodeThatClaimedTheSwipe = nativeHandler; return; } nodeThatClaimedTheSwipe = swipeInstance.current; } // We don't know yet. if (swipeInstance.current.isSwiping == null) { var dx = Math.abs(currentX - swipeInstance.current.startX); var dy = Math.abs(currentY - swipeInstance.current.startY); // We are likely to be swiping, let's prevent the scroll event on iOS. if (dx > dy) { if (event.cancelable) { event.preventDefault(); } } var definitelySwiping = horizontalSwipe ? dx > dy && dx > UNCERTAINTY_THRESHOLD : dy > dx && dy > UNCERTAINTY_THRESHOLD; if (definitelySwiping === true || (horizontalSwipe ? dy > UNCERTAINTY_THRESHOLD : dx > UNCERTAINTY_THRESHOLD)) { swipeInstance.current.isSwiping = definitelySwiping; if (!definitelySwiping) { handleBodyTouchEnd(event); return; } // Shift the starting point. swipeInstance.current.startX = currentX; swipeInstance.current.startY = currentY; // Compensate for the part of the drawer displayed on touch start. if (!disableDiscovery && !open) { if (horizontalSwipe) { swipeInstance.current.startX -= swipeAreaWidth; } else { swipeInstance.current.startY -= swipeAreaWidth; } } } } if (!swipeInstance.current.isSwiping) { return; } var maxTranslate = getMaxTranslate(horizontalSwipe, paperRef.current); var startLocation = horizontalSwipe ? swipeInstance.current.startX : swipeInstance.current.startY; if (open && !swipeInstance.current.paperHit) { startLocation = Math.min(startLocation, maxTranslate); } var translate = getTranslate(horizontalSwipe ? currentX : currentY, startLocation, open, maxTranslate); if (open) { if (!swipeInstance.current.paperHit) { var paperHit = horizontalSwipe ? currentX < maxTranslate : currentY < maxTranslate; if (paperHit) { swipeInstance.current.paperHit = true; swipeInstance.current.startX = currentX; swipeInstance.current.startY = currentY; } else { return; } } else if (translate === 0) { swipeInstance.current.startX = currentX; swipeInstance.current.startY = currentY; } } if (swipeInstance.current.lastTranslate === null) { swipeInstance.current.lastTranslate = translate; swipeInstance.current.lastTime = performance.now() + 1; } var velocity = (translate - swipeInstance.current.lastTranslate) / (performance.now() - swipeInstance.current.lastTime) * 1e3; // Low Pass filter. swipeInstance.current.velocity = swipeInstance.current.velocity * 0.4 + velocity * 0.6; swipeInstance.current.lastTranslate = translate; swipeInstance.current.lastTime = performance.now(); // We are swiping, let's prevent the scroll event on iOS. if (event.cancelable) { event.preventDefault(); } setPosition(translate); }); var handleBodyTouchStart = (0, _useEventCallback.default)(function (event) { // We are not supposed to handle this touch move. // Example of use case: ignore the event if there is a Slider. if (event.defaultPrevented) { return; } // We can only have one node at the time claiming ownership for handling the swipe. if (event.muiHandled) { return; } // At least one element clogs the drawer interaction zone. if (open && !backdropRef.current.contains(event.target) && !paperRef.current.contains(event.target)) { return; } var anchorRtl = (0, _Drawer.getAnchor)(theme, anchor); var horizontalSwipe = (0, _Drawer.isHorizontal)(anchor); var currentX = calculateCurrentX(anchorRtl, event.touches); var currentY = calculateCurrentY(anchorRtl, event.touches); if (!open) { if (disableSwipeToOpen || event.target !== swipeAreaRef.current) { return; } if (horizontalSwipe) { if (currentX > swipeAreaWidth) { return; } } else if (currentY > swipeAreaWidth) { return; } } event.muiHandled = true; nodeThatClaimedTheSwipe = null; swipeInstance.current.startX = currentX; swipeInstance.current.startY = currentY; setMaybeSwiping(true); if (!open && paperRef.current) { // The ref may be null when a parent component updates while swiping. setPosition(getMaxTranslate(horizontalSwipe, paperRef.current) + (disableDiscovery ? 20 : -swipeAreaWidth), { changeTransition: false }); } swipeInstance.current.velocity = 0; swipeInstance.current.lastTime = null; swipeInstance.current.lastTranslate = null; swipeInstance.current.paperHit = false; touchDetected.current = true; }); React.useEffect(function () { if (variant === 'temporary') { var doc = (0, _ownerDocument.default)(paperRef.current); doc.addEventListener('touchstart', handleBodyTouchStart); doc.addEventListener('touchmove', handleBodyTouchMove, { passive: false }); doc.addEventListener('touchend', handleBodyTouchEnd); return function () { doc.removeEventListener('touchstart', handleBodyTouchStart); doc.removeEventListener('touchmove', handleBodyTouchMove, { passive: false }); doc.removeEventListener('touchend', handleBodyTouchEnd); }; } return undefined; }, [variant, handleBodyTouchStart, handleBodyTouchMove, handleBodyTouchEnd]); React.useEffect(function () { return function () { // We need to release the lock. if (nodeThatClaimedTheSwipe === swipeInstance.current) { nodeThatClaimedTheSwipe = null; } }; }, []); React.useEffect(function () { if (!open) { setMaybeSwiping(false); } }, [open]); var handleBackdropRef = React.useCallback(function (instance) { // #StrictMode ready backdropRef.current = ReactDOM.findDOMNode(instance); }, []); return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(_Drawer.default, (0, _extends2.default)({ open: variant === 'temporary' && maybeSwiping ? true : open, variant: variant, ModalProps: (0, _extends2.default)({ BackdropProps: (0, _extends2.default)({}, BackdropProps, { ref: handleBackdropRef }) }, ModalPropsProp), PaperProps: (0, _extends2.default)({}, PaperProps, { style: (0, _extends2.default)({ pointerEvents: variant === 'temporary' && !open ? 'none' : '' }, PaperProps.style), ref: paperRef }), anchor: anchor, transitionDuration: calculatedDurationRef.current || transitionDuration, onClose: onClose, ref: ref }, other)), !disableSwipeToOpen && variant === 'temporary' && /*#__PURE__*/React.createElement(_NoSsr.default, null, /*#__PURE__*/React.createElement(_SwipeArea.default, (0, _extends2.default)({ anchor: anchor, ref: swipeAreaRef, width: swipeAreaWidth }, SwipeAreaProps)))); }); process.env.NODE_ENV !== "production" ? SwipeableDrawer.propTypes = { /** * @ignore */ anchor: _propTypes.default.oneOf(['left', 'top', 'right', 'bottom']), /** * The content of the component. */ children: _propTypes.default.node, /** * Disable the backdrop transition. * This can improve the FPS on low-end devices. */ disableBackdropTransition: _propTypes.default.bool, /** * If `true`, touching the screen near the edge of the drawer will not slide in the drawer a bit * to promote accidental discovery of the swipe gesture. */ disableDiscovery: _propTypes.default.bool, /** * If `true`, swipe to open is disabled. This is useful in browsers where swiping triggers * navigation actions. Swipe to open is disabled on iOS browsers by default. */ disableSwipeToOpen: _propTypes.default.bool, /** * @ignore */ hideBackdrop: _propTypes.default.bool, /** * Affects how far the drawer must be opened/closed to change his state. * Specified as percent (0-1) of the width of the drawer */ hysteresis: _propTypes.default.number, /** * Defines, from which (average) velocity on, the swipe is * defined as complete although hysteresis isn't reached. * Good threshold is between 250 - 1000 px/s */ minFlingVelocity: _propTypes.default.number, /** * @ignore */ ModalProps: _propTypes.default.shape({ BackdropProps: _propTypes.default.shape({ component: _utils.elementTypeAcceptingRef }) }), /** * Callback fired when the component requests to be closed. * * @param {object} event The event source of the callback. */ onClose: _propTypes.default.func.isRequired, /** * Callback fired when the component requests to be opened. * * @param {object} event The event source of the callback. */ onOpen: _propTypes.default.func.isRequired, /** * If `true`, the drawer is open. */ open: _propTypes.default.bool.isRequired, /** * @ignore */ PaperProps: _propTypes.default.shape({ component: _utils.elementTypeAcceptingRef, style: _propTypes.default.object }), /** * The element is used to intercept the touch events on the edge. */ SwipeAreaProps: _propTypes.default.object, /** * The width of the left most (or right most) area in pixels where the * drawer can be swiped open from. */ swipeAreaWidth: _propTypes.default.number, /** * The duration for the transition, in milliseconds. * You may specify a single timeout for all transitions, or individually with an object. */ transitionDuration: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({ enter: _propTypes.default.number, exit: _propTypes.default.number })]), /** * @ignore */ variant: _propTypes.default.oneOf(['permanent', 'persistent', 'temporary']) } : void 0; var _default = SwipeableDrawer; exports.default = _default;