You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
5.3 KiB
JavaScript
117 lines
5.3 KiB
JavaScript
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.isWidthUp = exports.isWidthDown = exports.default = void 0;
|
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose"));
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
var _utils = require("@mui/utils");
|
|
var _system = require("@mui/system");
|
|
var _useTheme = _interopRequireDefault(require("../styles/useTheme"));
|
|
var _useEnhancedEffect = _interopRequireDefault(require("../utils/useEnhancedEffect"));
|
|
var _useMediaQuery = _interopRequireDefault(require("../useMediaQuery"));
|
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
const _excluded = ["initialWidth", "width"];
|
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
const breakpointKeys = ['xs', 'sm', 'md', 'lg', 'xl'];
|
|
|
|
// By default, returns true if screen width is the same or greater than the given breakpoint.
|
|
const isWidthUp = (breakpoint, width, inclusive = true) => {
|
|
if (inclusive) {
|
|
return breakpointKeys.indexOf(breakpoint) <= breakpointKeys.indexOf(width);
|
|
}
|
|
return breakpointKeys.indexOf(breakpoint) < breakpointKeys.indexOf(width);
|
|
};
|
|
|
|
// By default, returns true if screen width is less than the given breakpoint.
|
|
exports.isWidthUp = isWidthUp;
|
|
const isWidthDown = (breakpoint, width, inclusive = false) => {
|
|
if (inclusive) {
|
|
return breakpointKeys.indexOf(width) <= breakpointKeys.indexOf(breakpoint);
|
|
}
|
|
return breakpointKeys.indexOf(width) < breakpointKeys.indexOf(breakpoint);
|
|
};
|
|
exports.isWidthDown = isWidthDown;
|
|
const withWidth = (options = {}) => Component => {
|
|
const {
|
|
withTheme: withThemeOption = false,
|
|
noSSR = false,
|
|
initialWidth: initialWidthOption
|
|
} = options;
|
|
function WithWidth(props) {
|
|
const contextTheme = (0, _useTheme.default)();
|
|
const theme = props.theme || contextTheme;
|
|
const _getThemeProps = (0, _system.getThemeProps)({
|
|
theme,
|
|
name: 'MuiWithWidth',
|
|
props
|
|
}),
|
|
{
|
|
initialWidth,
|
|
width
|
|
} = _getThemeProps,
|
|
other = (0, _objectWithoutPropertiesLoose2.default)(_getThemeProps, _excluded);
|
|
const [mountedState, setMountedState] = React.useState(false);
|
|
(0, _useEnhancedEffect.default)(() => {
|
|
setMountedState(true);
|
|
}, []);
|
|
|
|
/**
|
|
* innerWidth |xs sm md lg xl
|
|
* |-------|-------|-------|-------|------>
|
|
* width | xs | sm | md | lg | xl
|
|
*/
|
|
const keys = theme.breakpoints.keys.slice().reverse();
|
|
const widthComputed = keys.reduce((output, key) => {
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
const matches = (0, _useMediaQuery.default)(theme.breakpoints.up(key));
|
|
return !output && matches ? key : output;
|
|
}, null);
|
|
const more = (0, _extends2.default)({
|
|
width: width || (mountedState || noSSR ? widthComputed : undefined) || initialWidth || initialWidthOption
|
|
}, withThemeOption ? {
|
|
theme
|
|
} : {}, other);
|
|
|
|
// When rendering the component on the server,
|
|
// we have no idea about the client browser screen width.
|
|
// In order to prevent blinks and help the reconciliation of the React tree
|
|
// we are not rendering the child component.
|
|
//
|
|
// An alternative is to use the `initialWidth` property.
|
|
if (more.width === undefined) {
|
|
return null;
|
|
}
|
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(Component, (0, _extends2.default)({}, more));
|
|
}
|
|
process.env.NODE_ENV !== "production" ? WithWidth.propTypes = {
|
|
/**
|
|
* As `window.innerWidth` is unavailable on the server,
|
|
* we default to rendering an empty component during the first mount.
|
|
* You might want to use a heuristic to approximate
|
|
* the screen width of the client browser screen width.
|
|
*
|
|
* For instance, you could be using the user-agent or the client-hints.
|
|
* https://caniuse.com/#search=client%20hint
|
|
*/
|
|
initialWidth: _propTypes.default.oneOf(['xs', 'sm', 'md', 'lg', 'xl']),
|
|
/**
|
|
* @ignore
|
|
*/
|
|
theme: _propTypes.default.object,
|
|
/**
|
|
* Bypass the width calculation logic.
|
|
*/
|
|
width: _propTypes.default.oneOf(['xs', 'sm', 'md', 'lg', 'xl'])
|
|
} : void 0;
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
WithWidth.displayName = `WithWidth(${(0, _utils.getDisplayName)(Component)})`;
|
|
}
|
|
return WithWidth;
|
|
};
|
|
var _default = exports.default = withWidth; |