{"version":3,"file":"_slug-IhpcSQPp.js","sources":["../../../node_modules/remix-utils/build/react/use-hydrated.js","../../../node_modules/remix-utils/build/react/client-only.js","../../../node_modules/prop-types/lib/ReactPropTypesSecret.js","../../../node_modules/prop-types/factoryWithThrowingShims.js","../../../node_modules/prop-types/index.js","../../../node_modules/disqus-react/lib/utils.js","../../../node_modules/disqus-react/lib/constants.js","../../../node_modules/disqus-react/lib/CommentCount.js","../../../node_modules/disqus-react/lib/CommentEmbed.js","../../../node_modules/disqus-react/lib/DiscussionEmbed.js","../../../node_modules/disqus-react/lib/Recommendations.js","../../../node_modules/disqus-react/lib/index.js","../../../app/components/disqus.tsx","../../../app/routes/blog_+/$slug.tsx"],"sourcesContent":["import { useSyncExternalStore } from \"react\";\nfunction subscribe() {\n // biome-ignore lint/suspicious/noEmptyBlockStatements: Mock function\n return () => { };\n}\n/**\n * Return a boolean indicating if the JS has been hydrated already.\n * When doing Server-Side Rendering, the result will always be false.\n * When doing Client-Side Rendering, the result will always be false on the\n * first render and true from then on. Even if a new component renders it will\n * always start with true.\n *\n * Example: Disable a button that needs JS to work.\n * ```tsx\n * let hydrated = useHydrated();\n * return (\n * \n * );\n * ```\n */\nexport function useHydrated() {\n return useSyncExternalStore(subscribe, () => true, () => false);\n}\n","import * as React from \"react\";\nimport { useHydrated } from \"./use-hydrated.js\";\n/**\n * Render the children only after the JS has loaded client-side. Use an optional\n * fallback component if the JS is not yet loaded.\n *\n * Example: Render a Chart component if JS loads, renders a simple FakeChart\n * component server-side or if there is no JS. The FakeChart can have only the\n * UI without the behavior or be a loading spinner or skeleton.\n * ```tsx\n * return (\n * }>\n * {() => }\n * \n * );\n * ```\n */\nexport function ClientOnly({ children, fallback = null }) {\n return useHydrated() ? React.createElement(React.Fragment, null, children()) : React.createElement(React.Fragment, null, fallback);\n}\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.insertScript = insertScript;\nexports.removeScript = removeScript;\nexports.removeResources = removeResources;\nexports.debounce = debounce;\nexports.isReactElement = isReactElement;\nexports.shallowComparison = shallowComparison;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _createForOfIteratorHelper(o) { if (typeof Symbol === \"undefined\" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (o = _unsupportedIterableToArray(o))) { var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var it, normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it[\"return\"] != null) it[\"return\"](); } finally { if (didErr) throw err; } } }; }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction insertScript(src, id, parentElement) {\n var script = window.document.createElement('script');\n script.async = true;\n script.src = src;\n script.id = id;\n parentElement.appendChild(script);\n return script;\n}\n\nfunction removeScript(id, parentElement) {\n var script = window.document.getElementById(id);\n if (script) parentElement.removeChild(script);\n}\n\nfunction removeResources() {\n // Remove the bundles that the Disqus scripts add to prevent duplicated resources when navigating between pages\n var disqusResources = window.document.querySelectorAll( // eslint-disable-next-line max-len\n 'link[href*=\"disquscdn.com/next/embed\"], link[href*=\"disquscdn.com/next/recommendations\"], link[href*=\"disqus.com/next/config.js\"], script[src*=\"disquscdn.com/next/embed\"], script[src*=\"disqus.com/count-data.js\"], iframe[title=\"Disqus\"]');\n disqusResources.forEach(function (el) {\n return el.remove();\n });\n}\n\nfunction debounce(func, wait, runOnFirstCall) {\n var timeout;\n return function () {\n var context = this; // eslint-disable-line consistent-this\n\n var args = arguments;\n\n var deferredExecution = function deferredExecution() {\n timeout = null;\n if (!runOnFirstCall) func.apply(context, args);\n };\n\n var callNow = runOnFirstCall && !timeout;\n window.clearTimeout(timeout);\n timeout = setTimeout(deferredExecution, wait);\n if (callNow) func.apply(context, args);\n };\n}\n\nfunction isReactElement(element) {\n if (_react[\"default\"].isValidElement(element)) {\n return true;\n } else if (Array.isArray(element)) {\n return element.some(function (value) {\n return _react[\"default\"].isValidElement(value);\n });\n }\n\n return false;\n}\n\nfunction shallowComparison(currentProps, nextProps) {\n // Perform a comparison of all props, excluding React Elements, to prevent unnecessary updates\n var propNames = new Set(Object.keys(currentProps), Object.keys(nextProps)); // eslint-disable-line no-undef\n\n var _iterator = _createForOfIteratorHelper(propNames),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var name = _step.value;\n\n if (_typeof(currentProps[name]) === 'object') {\n if (shallowComparison(currentProps[name], nextProps[name])) return true;\n } else if (currentProps[name] !== nextProps[name] && !isReactElement(currentProps[name])) {\n return true;\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n\n return false;\n}","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.CALLBACKS = exports.RECOMMENDATIONS_SCRIPT_ID = exports.RECOMMENDATIONS_ID = exports.COMMENT_EMBED_HEIGHT = exports.COMMENT_EMBED_WIDTH = exports.COMMENT_COUNT_SCRIPT_ID = exports.COMMENT_COUNT_CLASS = exports.EMBED_SCRIPT_ID = exports.THREAD_ID = void 0;\nvar THREAD_ID = 'disqus_thread';\nexports.THREAD_ID = THREAD_ID;\nvar EMBED_SCRIPT_ID = 'dsq-embed-scr';\nexports.EMBED_SCRIPT_ID = EMBED_SCRIPT_ID;\nvar COMMENT_COUNT_CLASS = 'disqus-comment-count';\nexports.COMMENT_COUNT_CLASS = COMMENT_COUNT_CLASS;\nvar COMMENT_COUNT_SCRIPT_ID = 'dsq-count-scr';\nexports.COMMENT_COUNT_SCRIPT_ID = COMMENT_COUNT_SCRIPT_ID;\nvar COMMENT_EMBED_WIDTH = 420;\nexports.COMMENT_EMBED_WIDTH = COMMENT_EMBED_WIDTH;\nvar COMMENT_EMBED_HEIGHT = 320;\nexports.COMMENT_EMBED_HEIGHT = COMMENT_EMBED_HEIGHT;\nvar RECOMMENDATIONS_ID = 'disqus_recommendations';\nexports.RECOMMENDATIONS_ID = RECOMMENDATIONS_ID;\nvar RECOMMENDATIONS_SCRIPT_ID = 'dsq-recs-scr';\nexports.RECOMMENDATIONS_SCRIPT_ID = RECOMMENDATIONS_SCRIPT_ID;\nvar CALLBACKS = ['preData', 'preInit', 'onInit', 'onReady', 'afterRender', 'preReset', 'onIdentify', 'beforeComment', 'onNewComment', 'onPaginate'];\nexports.CALLBACKS = CALLBACKS;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.CommentCount = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _utils = require(\"./utils\");\n\nvar _constants = require(\"./constants\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function () { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nvar queueResetCount = (0, _utils.debounce)(function () {\n if (window.DISQUSWIDGETS) window.DISQUSWIDGETS.getCount({\n reset: true\n });\n}, 300, false); // eslint-disable-line no-magic-numbers\n\nvar CommentCount = /*#__PURE__*/function (_React$Component) {\n _inherits(CommentCount, _React$Component);\n\n var _super = _createSuper(CommentCount);\n\n function CommentCount() {\n _classCallCheck(this, CommentCount);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(CommentCount, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n this.loadInstance();\n }\n }, {\n key: \"shouldComponentUpdate\",\n value: function shouldComponentUpdate(nextProps) {\n if (this.props === nextProps) return false;\n return (0, _utils.shallowComparison)(this.props, nextProps);\n }\n }, {\n key: \"componentDidUpdate\",\n value: function componentDidUpdate(prevProps) {\n if (this.props.shortname !== prevProps.shortname) this.cleanInstance();\n this.loadInstance();\n }\n }, {\n key: \"componentWillUnmount\",\n value: function componentWillUnmount() {\n this.cleanInstance();\n }\n }, {\n key: \"loadInstance\",\n value: function loadInstance() {\n var doc = window.document;\n if (doc.getElementById(_constants.COMMENT_COUNT_SCRIPT_ID)) queueResetCount();else (0, _utils.insertScript)(\"https://\".concat(this.props.shortname, \".disqus.com/count.js\"), _constants.COMMENT_COUNT_SCRIPT_ID, doc.body);\n }\n }, {\n key: \"cleanInstance\",\n value: function cleanInstance() {\n var doc = window.document;\n (0, _utils.removeScript)(_constants.COMMENT_COUNT_SCRIPT_ID, doc.body); // count.js only reassigns this window object if it's undefined.\n\n window.DISQUSWIDGETS = undefined;\n (0, _utils.removeResources)();\n }\n }, {\n key: \"render\",\n value: function render() {\n // eslint-disable-next-line no-unused-vars\n var _this$props = this.props,\n shortname = _this$props.shortname,\n config = _this$props.config,\n children = _this$props.children,\n className = _this$props.className,\n rest = _objectWithoutProperties(_this$props, [\"shortname\", \"config\", \"children\", \"className\"]);\n\n var additionalClass = className ? \" \".concat(className) : '';\n return /*#__PURE__*/_react[\"default\"].createElement(\"span\", _extends({}, rest, {\n className: \"\".concat(_constants.COMMENT_COUNT_CLASS).concat(additionalClass),\n \"data-disqus-identifier\": config.identifier,\n \"data-disqus-url\": config.url\n }), children);\n }\n }]);\n\n return CommentCount;\n}(_react[\"default\"].Component);\n\nexports.CommentCount = CommentCount;\nCommentCount.propTypes = {\n shortname: _propTypes[\"default\"].string.isRequired,\n config: _propTypes[\"default\"].shape({\n identifier: _propTypes[\"default\"].string,\n url: _propTypes[\"default\"].string,\n title: _propTypes[\"default\"].string\n }).isRequired,\n className: _propTypes[\"default\"].string,\n children: _propTypes[\"default\"].node\n};","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.CommentEmbed = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _constants = require(\"./constants\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function () { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nvar CommentEmbed = /*#__PURE__*/function (_React$Component) {\n _inherits(CommentEmbed, _React$Component);\n\n var _super = _createSuper(CommentEmbed);\n\n function CommentEmbed() {\n _classCallCheck(this, CommentEmbed);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(CommentEmbed, [{\n key: \"getSrc\",\n value: function getSrc() {\n var radixBase = 36;\n var post = Number(this.props.commentId).toString(radixBase);\n var parentParam = this.props.showParentComment ? '1' : '0';\n var mediaParam = this.props.showMedia ? '1' : '0';\n return \"https://embed.disqus.com/p/\".concat(post, \"?p=\").concat(parentParam, \"&m=\").concat(mediaParam);\n }\n }, {\n key: \"render\",\n value: function render() {\n // eslint-disable-next-line no-unused-vars\n var _this$props = this.props,\n width = _this$props.width,\n height = _this$props.height,\n commentId = _this$props.commentId,\n showMedia = _this$props.showMedia,\n showParentComment = _this$props.showParentComment,\n rest = _objectWithoutProperties(_this$props, [\"width\", \"height\", \"commentId\", \"showMedia\", \"showParentComment\"]);\n\n return /*#__PURE__*/_react[\"default\"].createElement(\"iframe\", _extends({}, rest, {\n src: this.getSrc(),\n width: width,\n height: height,\n seamless: \"seamless\",\n scrolling: \"no\",\n frameBorder: \"0\"\n }));\n }\n }]);\n\n return CommentEmbed;\n}(_react[\"default\"].Component);\n\nexports.CommentEmbed = CommentEmbed;\nCommentEmbed.defaultProps = {\n showMedia: true,\n showParentComment: true,\n width: _constants.COMMENT_EMBED_WIDTH,\n height: _constants.COMMENT_EMBED_HEIGHT\n};\nCommentEmbed.propTypes = {\n commentId: _propTypes[\"default\"].string.isRequired,\n showMedia: _propTypes[\"default\"].bool,\n showParentComment: _propTypes[\"default\"].bool,\n width: _propTypes[\"default\"].number,\n height: _propTypes[\"default\"].number,\n className: _propTypes[\"default\"].string\n};","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.DiscussionEmbed = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _utils = require(\"./utils\");\n\nvar _constants = require(\"./constants\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function () { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nvar DiscussionEmbed = /*#__PURE__*/function (_React$Component) {\n _inherits(DiscussionEmbed, _React$Component);\n\n var _super = _createSuper(DiscussionEmbed);\n\n function DiscussionEmbed() {\n _classCallCheck(this, DiscussionEmbed);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(DiscussionEmbed, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n if (typeof window !== 'undefined' && window.disqus_shortname && window.disqus_shortname !== this.props.shortname) this.cleanInstance();\n this.loadInstance();\n }\n }, {\n key: \"shouldComponentUpdate\",\n value: function shouldComponentUpdate(nextProps) {\n if (this.props === nextProps) return false;\n return (0, _utils.shallowComparison)(this.props, nextProps);\n }\n }, {\n key: \"componentDidUpdate\",\n value: function componentDidUpdate(nextProps) {\n if (this.props.shortname !== nextProps.shortname) this.cleanInstance();\n this.loadInstance();\n }\n }, {\n key: \"componentWillUnmount\",\n value: function componentWillUnmount() {\n this.cleanInstance();\n }\n }, {\n key: \"loadInstance\",\n value: function loadInstance() {\n var doc = window.document;\n\n if (window && window.DISQUS && doc.getElementById(_constants.EMBED_SCRIPT_ID)) {\n window.DISQUS.reset({\n reload: true,\n config: this.getDisqusConfig(this.props.config)\n });\n } else {\n window.disqus_config = this.getDisqusConfig(this.props.config);\n window.disqus_shortname = this.props.shortname;\n (0, _utils.insertScript)(\"https://\".concat(this.props.shortname, \".disqus.com/embed.js\"), _constants.EMBED_SCRIPT_ID, doc.body);\n }\n }\n }, {\n key: \"cleanInstance\",\n value: function cleanInstance() {\n var doc = window.document;\n (0, _utils.removeScript)(_constants.EMBED_SCRIPT_ID, doc.body);\n if (window && window.DISQUS) window.DISQUS.reset({});\n\n try {\n delete window.DISQUS;\n } catch (error) {\n window.DISQUS = undefined;\n }\n\n var disqusThread = doc.getElementById(_constants.THREAD_ID);\n\n if (disqusThread) {\n while (disqusThread.hasChildNodes()) {\n disqusThread.removeChild(disqusThread.firstChild);\n }\n }\n\n (0, _utils.removeResources)();\n }\n }, {\n key: \"getDisqusConfig\",\n value: function getDisqusConfig(config) {\n return function () {\n var _this = this;\n\n this.page.identifier = config.identifier;\n this.page.url = config.url;\n this.page.title = config.title;\n this.page.category_id = config.categoryID;\n this.page.remote_auth_s3 = config.remoteAuthS3;\n this.page.api_key = config.apiKey;\n if (config.sso) this.sso = config.sso;\n if (config.language) this.language = config.language;\n\n _constants.CALLBACKS.forEach(function (callbackName) {\n _this.callbacks[callbackName] = [config[callbackName]];\n });\n };\n }\n }, {\n key: \"render\",\n value: function render() {\n // eslint-disable-next-line no-unused-vars\n var _this$props = this.props,\n shortname = _this$props.shortname,\n config = _this$props.config,\n rest = _objectWithoutProperties(_this$props, [\"shortname\", \"config\"]);\n\n return /*#__PURE__*/_react[\"default\"].createElement(\"div\", _extends({}, rest, {\n id: _constants.THREAD_ID\n }));\n }\n }]);\n\n return DiscussionEmbed;\n}(_react[\"default\"].Component);\n\nexports.DiscussionEmbed = DiscussionEmbed;\nDiscussionEmbed.propTypes = {\n shortname: _propTypes[\"default\"].string.isRequired,\n config: _propTypes[\"default\"].shape({\n identifier: _propTypes[\"default\"].string,\n url: _propTypes[\"default\"].string,\n title: _propTypes[\"default\"].string,\n language: _propTypes[\"default\"].string,\n categoryID: _propTypes[\"default\"].string,\n remoteAuthS3: _propTypes[\"default\"].string,\n apiKey: _propTypes[\"default\"].string,\n preData: _propTypes[\"default\"].func,\n preInit: _propTypes[\"default\"].func,\n onInit: _propTypes[\"default\"].func,\n onReady: _propTypes[\"default\"].func,\n afterRender: _propTypes[\"default\"].func,\n preReset: _propTypes[\"default\"].func,\n onIdentify: _propTypes[\"default\"].func,\n beforeComment: _propTypes[\"default\"].func,\n onNewComment: _propTypes[\"default\"].func,\n onPaginate: _propTypes[\"default\"].func,\n sso: _propTypes[\"default\"].shape({\n name: _propTypes[\"default\"].string,\n button: _propTypes[\"default\"].string,\n icon: _propTypes[\"default\"].string,\n url: _propTypes[\"default\"].string,\n logout: _propTypes[\"default\"].string,\n profile_url: _propTypes[\"default\"].string,\n width: _propTypes[\"default\"].string,\n height: _propTypes[\"default\"].string\n })\n }).isRequired\n};","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.Recommendations = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _utils = require(\"./utils\");\n\nvar _constants = require(\"./constants\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function () { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nvar Recommendations = /*#__PURE__*/function (_React$Component) {\n _inherits(Recommendations, _React$Component);\n\n var _super = _createSuper(Recommendations);\n\n function Recommendations() {\n _classCallCheck(this, Recommendations);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(Recommendations, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n this.loadInstance();\n }\n }, {\n key: \"shouldComponentUpdate\",\n value: function shouldComponentUpdate(nextProps) {\n if (this.props === nextProps) return false;\n return (0, _utils.shallowComparison)(this.props, nextProps);\n }\n }, {\n key: \"componentDidUpdate\",\n value: function componentDidUpdate() {\n this.loadInstance();\n }\n }, {\n key: \"componentWillUnmount\",\n value: function componentWillUnmount() {\n this.cleanInstance();\n }\n }, {\n key: \"getDisqusConfig\",\n value: function getDisqusConfig(config) {\n return function () {\n this.page.identifier = config.identifier;\n this.page.url = config.url;\n this.page.title = config.title;\n this.language = config.language;\n };\n }\n }, {\n key: \"loadInstance\",\n value: function loadInstance() {\n if (typeof window !== 'undefined' && window.document) {\n window.disqus_config = this.getDisqusConfig(this.props.config);\n\n if (window.document.getElementById(_constants.RECOMMENDATIONS_SCRIPT_ID)) {\n this.reloadInstance();\n } else {\n (0, _utils.insertScript)(\"https://\".concat(this.props.shortname, \".disqus.com/recommendations.js\"), _constants.RECOMMENDATIONS_SCRIPT_ID, window.document.body);\n }\n }\n }\n }, {\n key: \"reloadInstance\",\n value: function reloadInstance() {\n if (window && window.DISQUS_RECOMMENDATIONS) {\n window.DISQUS_RECOMMENDATIONS.reset({\n reload: true\n });\n }\n }\n }, {\n key: \"cleanInstance\",\n value: function cleanInstance() {\n (0, _utils.removeScript)(_constants.RECOMMENDATIONS_SCRIPT_ID, window.document.body);\n\n try {\n delete window.DISQUS_RECOMMENDATIONS;\n } catch (error) {\n window.DISQUS_RECOMMENDATIONS = undefined;\n }\n\n var recommendations = window.document.getElementById(_constants.RECOMMENDATIONS_ID);\n\n if (recommendations) {\n while (recommendations.hasChildNodes()) {\n recommendations.removeChild(recommendations.firstChild);\n }\n }\n\n (0, _utils.removeResources)();\n }\n }, {\n key: \"render\",\n value: function render() {\n // eslint-disable-next-line no-unused-vars\n var _this$props = this.props,\n shortname = _this$props.shortname,\n config = _this$props.config,\n rest = _objectWithoutProperties(_this$props, [\"shortname\", \"config\"]);\n\n return /*#__PURE__*/_react[\"default\"].createElement(\"div\", _extends({}, rest, {\n id: _constants.RECOMMENDATIONS_ID\n }));\n }\n }]);\n\n return Recommendations;\n}(_react[\"default\"].Component);\n\nexports.Recommendations = Recommendations;\nRecommendations.propTypes = {\n shortname: _propTypes[\"default\"].string.isRequired,\n config: _propTypes[\"default\"].shape({\n identifier: _propTypes[\"default\"].string,\n url: _propTypes[\"default\"].string,\n title: _propTypes[\"default\"].string,\n language: _propTypes[\"default\"].string\n })\n};","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"CommentCount\", {\n enumerable: true,\n get: function get() {\n return _CommentCount.CommentCount;\n }\n});\nObject.defineProperty(exports, \"CommentEmbed\", {\n enumerable: true,\n get: function get() {\n return _CommentEmbed.CommentEmbed;\n }\n});\nObject.defineProperty(exports, \"DiscussionEmbed\", {\n enumerable: true,\n get: function get() {\n return _DiscussionEmbed.DiscussionEmbed;\n }\n});\nObject.defineProperty(exports, \"Recommendations\", {\n enumerable: true,\n get: function get() {\n return _Recommendations.Recommendations;\n }\n});\nexports[\"default\"] = void 0;\n\nvar _CommentCount = require(\"./CommentCount\");\n\nvar _CommentEmbed = require(\"./CommentEmbed\");\n\nvar _DiscussionEmbed = require(\"./DiscussionEmbed\");\n\nvar _Recommendations = require(\"./Recommendations\");\n\nvar Disqus = {\n CommentCount: _CommentCount.CommentCount,\n CommentEmbed: _CommentEmbed.CommentEmbed,\n DiscussionEmbed: _DiscussionEmbed.DiscussionEmbed,\n Recommendations: _Recommendations.Recommendations\n};\nvar _default = Disqus;\nexports[\"default\"] = _default;","import { DiscussionEmbed } from 'disqus-react'\nimport { Grid } from './grid'\n\nexport function Disqus({\n identifier,\n title,\n url,\n}: {\n identifier: string\n title: string\n url: string\n}) {\n return (\n \n
\n \n
\n
\n )\n}\n","import {\n json,\n type LoaderFunctionArgs,\n type HeadersFunction,\n} from '@remix-run/node'\nimport { useLoaderData, useParams } from '@remix-run/react'\nimport { ClientOnly } from 'remix-utils/client-only'\nimport * as React from 'react'\nimport { BackLink } from '~/components/arrow-button.tsx'\nimport { BlurrableImage } from '~/components/blurrable-image.tsx'\nimport { GeneralErrorBoundary } from '~/components/error-boundary.tsx'\nimport { FourHundred, FourOhFour } from '~/components/errors.tsx'\nimport { Grid } from '~/components/grid.tsx'\nimport { BlogSection } from '~/components/sections/blog-section.tsx'\nimport { Spacer } from '~/components/spacer.tsx'\nimport { H2, H6 } from '~/components/typography.tsx'\nimport { Disqus } from '~/components/disqus.tsx'\nimport { getImageBuilder, getImgProps } from '~/images.tsx'\nimport { type MdxListItem } from '~/types.ts'\nimport { getBlogRecommendations } from '~/utils/blog.server.ts'\nimport { getMdxPage } from '~/utils/mdx.server.ts'\nimport {\n getBannerAltProp,\n getBannerTitleProp,\n mdxPageMeta,\n useMdxComponent,\n} from '~/utils/mdx.tsx'\nimport { requireValidSlug, reuseUsefulLoaderHeaders } from '~/utils/misc.tsx'\nimport { getServerTimeHeader } from '~/utils/timing.server.ts'\n\ntype CatchData = {\n recommendations: Array\n}\n\nexport async function loader({ request, params }: LoaderFunctionArgs) {\n requireValidSlug(params.slug)\n const timings = {}\n\n const page = await getMdxPage(\n { contentDir: 'blog', slug: params.slug },\n { request, timings },\n )\n\n const [recommendations] = await Promise.all([\n getBlogRecommendations({\n request,\n timings,\n limit: 3,\n keywords: [\n ...(page?.frontmatter.categories ?? []),\n ...(page?.frontmatter.meta?.keywords ?? []),\n ],\n exclude: [params.slug],\n }),\n ])\n\n const catchData: CatchData = {\n recommendations,\n }\n const headers = {\n 'Cache-Control': 'private, max-age=3600',\n Vary: 'Cookie',\n 'Server-Timing': getServerTimeHeader(timings),\n }\n if (!page) {\n throw json(catchData, { status: 404, headers })\n }\n\n const data = {\n page,\n ...catchData,\n }\n return json(data, { status: 200, headers })\n}\n\nexport const headers: HeadersFunction = reuseUsefulLoaderHeaders\n\nexport const meta = mdxPageMeta\n\n// function ArticleFooter({ editLink }: { editLink: string }) {\n// return (\n// \n//
\n//
\n// \n// Edit on GitHub\n// \n//
\n//
\n//
\n// )\n// }\n\nexport default function MdxScreen() {\n const data = useLoaderData()\n\n const { code, dateDisplay, frontmatter } = data.page\n const params = useParams()\n const { slug } = params\n const Component = useMdxComponent(code)\n\n const readMarker = React.useRef(null)\n const isDraft = Boolean(data.page.frontmatter.draft)\n const isArchived = Boolean(data.page.frontmatter.archived)\n\n return (\n
\n \n
\n Back\n
\n
\n\n \n
\n {isDraft ? (\n
\n {React.createElement(\n 'callout-warning',\n {},\n `This blog post is a draft. Please don't share it in its current state.`,\n )}\n
\n ) : null}\n {isArchived ? (\n
\n {React.createElement(\n 'callout-warning',\n {},\n `This blog post is archived. It's no longer maintained and may contain outdated information.`,\n )}\n
\n ) : null}\n

{frontmatter.title}

\n
\n {[dateDisplay, data.page.readTime?.text ?? 'quick read']\n .filter(Boolean)\n .join(' — ')}\n
\n
\n {frontmatter.bannerCloudinaryId ? (\n
\n \n }\n />\n
\n ) : null}\n
\n\n
\n \n \n \n
\n\n {/* */}\n Loading comments...
}>\n {() => (\n \n )}\n \n\n \n\n \n \n )\n}\n\nexport function ErrorBoundary() {\n return (\n ,\n 404: ({ error }) => (\n \n ),\n }}\n />\n )\n}\n"],"names":["subscribe","useHydrated","useSyncExternalStore","ClientOnly","children","fallback","React.createElement","React.Fragment","ReactPropTypesSecret","ReactPropTypesSecret_1","require$$0","emptyFunction","emptyFunctionWithReset","factoryWithThrowingShims","shim","props","propName","componentName","location","propFullName","secret","err","getShim","ReactPropTypes","propTypesModule","utils","insertScript","removeScript","removeResources","debounce","isReactElement","shallowComparison","_react","_interopRequireDefault","obj","_typeof","_createForOfIteratorHelper","o","_unsupportedIterableToArray","i","F","_e","it","normalCompletion","didErr","step","_e2","minLen","_arrayLikeToArray","arr","len","arr2","src","id","parentElement","script","disqusResources","el","func","wait","runOnFirstCall","timeout","context","args","deferredExecution","callNow","element","value","currentProps","nextProps","propNames","_iterator","_step","name","constants","THREAD_ID","EMBED_SCRIPT_ID","COMMENT_COUNT_CLASS","COMMENT_COUNT_SCRIPT_ID","COMMENT_EMBED_WIDTH","COMMENT_EMBED_HEIGHT","RECOMMENDATIONS_ID","RECOMMENDATIONS_SCRIPT_ID","CALLBACKS","CommentCount_1","_propTypes","require$$1","_utils","require$$2","_constants","require$$3","_extends","target","source","key","_objectWithoutProperties","excluded","_objectWithoutPropertiesLoose","sourceSymbolKeys","sourceKeys","_classCallCheck","instance","Constructor","_defineProperties","descriptor","_createClass","protoProps","staticProps","_inherits","subClass","superClass","_setPrototypeOf","p","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","Super","_getPrototypeOf","result","NewTarget","_possibleConstructorReturn","self","call","_assertThisInitialized","queueResetCount","CommentCount","_React$Component","_super","prevProps","doc","_this$props","config","className","rest","additionalClass","CommentEmbed_1","CommentEmbed","radixBase","post","parentParam","mediaParam","width","height","DiscussionEmbed_1","DiscussionEmbed","disqusThread","_this","callbackName","Recommendations_1","Recommendations","recommendations","exports","_CommentCount","_CommentEmbed","_DiscussionEmbed","_Recommendations","Disqus","_default","identifier","title","url","jsx","Grid","meta","mdxPageMeta","MdxScreen","data","useLoaderData","code","dateDisplay","frontmatter","page","params","useParams","slug","Component","useMdxComponent","readMarker","React","isDraft","Boolean","draft","isArchived","archived","BackLink","to","jsxs","as","H2","H6","variant","readTime","text","filter","join","bannerCloudinaryId","BlurrableImage","blurDataUrl","bannerBlurDataUrl","img","getBannerTitleProp","getImgProps","getImageBuilder","getBannerAltProp","widths","sizes","transformations","background","ref","window","href","Spacer","size","BlogSection","articles","description","showArrowButton","ErrorBoundary","GeneralErrorBoundary","statusHandlers","error","FourHundred","statusText","FourOhFour"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11]}