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.
80 lines
3.5 KiB
JavaScript
80 lines
3.5 KiB
JavaScript
"use strict";
|
|
'use client';
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.NoSsr = NoSsr;
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
var _utils = require("@mui/utils");
|
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
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; }
|
|
/**
|
|
* NoSsr purposely removes components from the subject of Server Side Rendering (SSR).
|
|
*
|
|
* This component can be useful in a variety of situations:
|
|
*
|
|
* * Escape hatch for broken dependencies not supporting SSR.
|
|
* * Improve the time-to-first paint on the client by only rendering above the fold.
|
|
* * Reduce the rendering time on the server.
|
|
* * Under too heavy server load, you can turn on service degradation.
|
|
*
|
|
* Demos:
|
|
*
|
|
* - [No SSR](https://mui.com/base-ui/react-no-ssr/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [NoSsr API](https://mui.com/base-ui/react-no-ssr/components-api/#no-ssr)
|
|
*/
|
|
function NoSsr(props) {
|
|
const {
|
|
children,
|
|
defer = false,
|
|
fallback = null
|
|
} = props;
|
|
const [mountedState, setMountedState] = React.useState(false);
|
|
(0, _utils.unstable_useEnhancedEffect)(() => {
|
|
if (!defer) {
|
|
setMountedState(true);
|
|
}
|
|
}, [defer]);
|
|
React.useEffect(() => {
|
|
if (defer) {
|
|
setMountedState(true);
|
|
}
|
|
}, [defer]);
|
|
|
|
// We need the Fragment here to force react-docgen to recognise NoSsr as a component.
|
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(React.Fragment, {
|
|
children: mountedState ? children : fallback
|
|
});
|
|
}
|
|
process.env.NODE_ENV !== "production" ? NoSsr.propTypes /* remove-proptypes */ = {
|
|
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* You can wrap a node.
|
|
*/
|
|
children: _propTypes.default.node,
|
|
/**
|
|
* If `true`, the component will not only prevent server-side rendering.
|
|
* It will also defer the rendering of the children into a different screen frame.
|
|
* @default false
|
|
*/
|
|
defer: _propTypes.default.bool,
|
|
/**
|
|
* The fallback content to display.
|
|
* @default null
|
|
*/
|
|
fallback: _propTypes.default.node
|
|
} : void 0;
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
// eslint-disable-next-line
|
|
NoSsr['propTypes' + ''] = (0, _utils.exactProp)(NoSsr.propTypes);
|
|
} |