58 lines
2.3 KiB
JavaScript
58 lines
2.3 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "default", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return dynamic;
|
|
}
|
|
});
|
|
const _interop_require_default = require("@swc/helpers/_/_interop_require_default");
|
|
const _react = /*#__PURE__*/ _interop_require_default._(require("react"));
|
|
const _loadable = /*#__PURE__*/ _interop_require_default._(require("./lazy-dynamic/loadable"));
|
|
// Normalize loader to return the module as form { default: Component } for `React.lazy`.
|
|
// Also for backward compatible since next/dynamic allows to resolve a component directly with loader
|
|
// Client component reference proxy need to be converted to a module.
|
|
function convertModule(mod) {
|
|
return {
|
|
default: (mod == null ? void 0 : mod.default) || mod
|
|
};
|
|
}
|
|
function dynamic(dynamicOptions, options) {
|
|
const loadableFn = _loadable.default;
|
|
const loadableOptions = {
|
|
// A loading component is not required, so we default it
|
|
loading: (param)=>{
|
|
let { error, isLoading, pastDelay } = param;
|
|
if (!pastDelay) return null;
|
|
if (process.env.NODE_ENV !== "production") {
|
|
if (isLoading) {
|
|
return null;
|
|
}
|
|
if (error) {
|
|
return /*#__PURE__*/ _react.default.createElement("p", null, error.message, /*#__PURE__*/ _react.default.createElement("br", null), error.stack);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
};
|
|
if (typeof dynamicOptions === "function") {
|
|
loadableOptions.loader = dynamicOptions;
|
|
}
|
|
Object.assign(loadableOptions, options);
|
|
const loaderFn = loadableOptions.loader;
|
|
const loader = ()=>loaderFn != null ? loaderFn().then(convertModule) : Promise.resolve(convertModule(()=>null));
|
|
return loadableFn({
|
|
...loadableOptions,
|
|
loader: loader
|
|
});
|
|
}
|
|
|
|
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
|
|
Object.defineProperty(exports.default, '__esModule', { value: true });
|
|
Object.assign(exports.default, exports);
|
|
module.exports = exports.default;
|
|
}
|
|
|
|
//# sourceMappingURL=app-dynamic.js.map
|