{"version":3,"file":"errorboundary-B3NYqKkL.js","sources":["../../node_modules/.pnpm/@sentry+react@8.55.0_react@19.0.0/node_modules/@sentry/react/build/esm/error.js","../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.js","../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.js","../../node_modules/.pnpm/hoist-non-react-statics@3.3.2/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js","../../node_modules/.pnpm/@sentry+react@8.55.0_react@19.0.0/node_modules/@sentry/react/build/esm/debug-build.js","../../node_modules/.pnpm/@sentry+react@8.55.0_react@19.0.0/node_modules/@sentry/react/build/esm/errorboundary.js"],"sourcesContent":["import { captureException } from '@sentry/browser';\nimport { isError } from '@sentry/core';\nimport { version } from 'react';\n\n/**\n * See if React major version is 17+ by parsing version string.\n */\nfunction isAtLeastReact17(reactVersion) {\n const reactMajor = reactVersion.match(/^([^.]+)/);\n return reactMajor !== null && parseInt(reactMajor[0]) >= 17;\n}\n\n/**\n * Recurse through `error.cause` chain to set cause on an error.\n */\nfunction setCause(error, cause) {\n const seenErrors = new WeakSet();\n\n function recurse(error, cause) {\n // If we've already seen the error, there is a recursive loop somewhere in the error's\n // cause chain. Let's just bail out then to prevent a stack overflow.\n if (seenErrors.has(error)) {\n return;\n }\n if (error.cause) {\n seenErrors.add(error);\n return recurse(error.cause, cause);\n }\n error.cause = cause;\n }\n\n recurse(error, cause);\n}\n\n/**\n * Captures an error that was thrown by a React ErrorBoundary or React root.\n *\n * @param error The error to capture.\n * @param errorInfo The errorInfo provided by React.\n * @param hint Optional additional data to attach to the Sentry event.\n * @returns the id of the captured Sentry event.\n */\nfunction captureReactException(\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n error,\n { componentStack },\n hint,\n) {\n // If on React version >= 17, create stack trace from componentStack param and links\n // to to the original error using `error.cause` otherwise relies on error param for stacktrace.\n // Linking errors requires the `LinkedErrors` integration be enabled.\n // See: https://reactjs.org/blog/2020/08/10/react-v17-rc.html#native-component-stacks\n //\n // Although `componentDidCatch` is typed to accept an `Error` object, it can also be invoked\n // with non-error objects. This is why we need to check if the error is an error-like object.\n // See: https://github.com/getsentry/sentry-javascript/issues/6167\n if (isAtLeastReact17(version) && isError(error) && componentStack) {\n const errorBoundaryError = new Error(error.message);\n errorBoundaryError.name = `React ErrorBoundary ${error.name}`;\n errorBoundaryError.stack = componentStack;\n\n // Using the `LinkedErrors` integration to link the errors together.\n setCause(error, errorBoundaryError);\n }\n\n return captureException(error, {\n ...hint,\n captureContext: {\n contexts: { react: { componentStack } },\n },\n });\n}\n\n/**\n * Creates an error handler that can be used with the `onCaughtError`, `onUncaughtError`,\n * and `onRecoverableError` options in `createRoot` and `hydrateRoot` React DOM methods.\n *\n * @param callback An optional callback that will be called after the error is captured.\n * Use this to add custom handling for errors.\n *\n * @example\n *\n * ```JavaScript\n * const root = createRoot(container, {\n * onCaughtError: Sentry.reactErrorHandler(),\n * onUncaughtError: Sentry.reactErrorHandler((error, errorInfo) => {\n * console.warn('Caught error', error, errorInfo.componentStack);\n * });\n * });\n * ```\n */\nfunction reactErrorHandler(\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n callback,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return (error, errorInfo) => {\n const eventId = captureReactException(error, errorInfo);\n if (callback) {\n callback(error, errorInfo, eventId);\n }\n };\n}\n\nexport { captureReactException, isAtLeastReact17, reactErrorHandler, setCause };\n//# sourceMappingURL=error.js.map\n","/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\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';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","'use strict';\n\nvar reactIs = require('react-is');\n\n/**\n * Copyright 2015, Yahoo! Inc.\n * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.\n */\nvar REACT_STATICS = {\n childContextTypes: true,\n contextType: true,\n contextTypes: true,\n defaultProps: true,\n displayName: true,\n getDefaultProps: true,\n getDerivedStateFromError: true,\n getDerivedStateFromProps: true,\n mixins: true,\n propTypes: true,\n type: true\n};\nvar KNOWN_STATICS = {\n name: true,\n length: true,\n prototype: true,\n caller: true,\n callee: true,\n arguments: true,\n arity: true\n};\nvar FORWARD_REF_STATICS = {\n '$$typeof': true,\n render: true,\n defaultProps: true,\n displayName: true,\n propTypes: true\n};\nvar MEMO_STATICS = {\n '$$typeof': true,\n compare: true,\n defaultProps: true,\n displayName: true,\n propTypes: true,\n type: true\n};\nvar TYPE_STATICS = {};\nTYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;\nTYPE_STATICS[reactIs.Memo] = MEMO_STATICS;\n\nfunction getStatics(component) {\n // React v16.11 and below\n if (reactIs.isMemo(component)) {\n return MEMO_STATICS;\n } // React v16.12 and above\n\n\n return TYPE_STATICS[component['$$typeof']] || REACT_STATICS;\n}\n\nvar defineProperty = Object.defineProperty;\nvar getOwnPropertyNames = Object.getOwnPropertyNames;\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar getPrototypeOf = Object.getPrototypeOf;\nvar objectPrototype = Object.prototype;\nfunction hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {\n if (typeof sourceComponent !== 'string') {\n // don't hoist over string (html) components\n if (objectPrototype) {\n var inheritedComponent = getPrototypeOf(sourceComponent);\n\n if (inheritedComponent && inheritedComponent !== objectPrototype) {\n hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);\n }\n }\n\n var keys = getOwnPropertyNames(sourceComponent);\n\n if (getOwnPropertySymbols) {\n keys = keys.concat(getOwnPropertySymbols(sourceComponent));\n }\n\n var targetStatics = getStatics(targetComponent);\n var sourceStatics = getStatics(sourceComponent);\n\n for (var i = 0; i < keys.length; ++i) {\n var key = keys[i];\n\n if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {\n var descriptor = getOwnPropertyDescriptor(sourceComponent, key);\n\n try {\n // Avoid failures from read-only properties\n defineProperty(targetComponent, key, descriptor);\n } catch (e) {}\n }\n }\n }\n\n return targetComponent;\n}\n\nmodule.exports = hoistNonReactStatics;\n","/**\n * This serves as a build time flag that will be true by default, but false in non-debug builds or if users replace `__SENTRY_DEBUG__` in their generated code.\n *\n * ATTENTION: This constant must never cross package boundaries (i.e. be exported) to guarantee that it can be used for tree shaking.\n */\nconst DEBUG_BUILD = (typeof __SENTRY_DEBUG__ === 'undefined' || __SENTRY_DEBUG__);\n\nexport { DEBUG_BUILD };\n//# sourceMappingURL=debug-build.js.map\n","import { getClient, showReportDialog, withScope } from '@sentry/browser';\nimport { logger } from '@sentry/core';\nimport hoistNonReactStatics from 'hoist-non-react-statics';\nimport * as React from 'react';\nimport { DEBUG_BUILD } from './debug-build.js';\nimport { captureReactException } from './error.js';\n\nconst UNKNOWN_COMPONENT = 'unknown';\n\nconst INITIAL_STATE = {\n componentStack: null,\n error: null,\n eventId: null,\n};\n\n/**\n * A ErrorBoundary component that logs errors to Sentry.\n * NOTE: If you are a Sentry user, and you are seeing this stack frame, it means the\n * Sentry React SDK ErrorBoundary caught an error invoking your application code. This\n * is expected behavior and NOT indicative of a bug with the Sentry React SDK.\n */\nclass ErrorBoundary extends React.Component {\n\n constructor(props) {\n super(props);ErrorBoundary.prototype.__init.call(this);\n this.state = INITIAL_STATE;\n this._openFallbackReportDialog = true;\n\n const client = getClient();\n if (client && props.showDialog) {\n this._openFallbackReportDialog = false;\n this._cleanupHook = client.on('afterSendEvent', event => {\n if (!event.type && this._lastEventId && event.event_id === this._lastEventId) {\n showReportDialog({ ...props.dialogOptions, eventId: this._lastEventId });\n }\n });\n }\n }\n\n componentDidCatch(error, errorInfo) {\n const { componentStack } = errorInfo;\n // TODO(v9): Remove this check and type `componentStack` to be React.ErrorInfo['componentStack'].\n const passedInComponentStack = componentStack == null ? undefined : componentStack;\n\n const { beforeCapture, onError, showDialog, dialogOptions } = this.props;\n withScope(scope => {\n if (beforeCapture) {\n beforeCapture(scope, error, passedInComponentStack);\n }\n\n const handled = this.props.handled != null ? this.props.handled : !!this.props.fallback;\n const eventId = captureReactException(error, errorInfo, { mechanism: { handled } });\n\n if (onError) {\n onError(error, passedInComponentStack, eventId);\n }\n if (showDialog) {\n this._lastEventId = eventId;\n if (this._openFallbackReportDialog) {\n showReportDialog({ ...dialogOptions, eventId });\n }\n }\n\n // componentDidCatch is used over getDerivedStateFromError\n // so that componentStack is accessible through state.\n this.setState({ error, componentStack, eventId });\n });\n }\n\n componentDidMount() {\n const { onMount } = this.props;\n if (onMount) {\n onMount();\n }\n }\n\n componentWillUnmount() {\n const { error, componentStack, eventId } = this.state;\n const { onUnmount } = this.props;\n if (onUnmount) {\n onUnmount(error, componentStack, eventId);\n }\n\n if (this._cleanupHook) {\n this._cleanupHook();\n this._cleanupHook = undefined;\n }\n }\n\n __init() {this.resetErrorBoundary = () => {\n const { onReset } = this.props;\n const { error, componentStack, eventId } = this.state;\n if (onReset) {\n onReset(error, componentStack, eventId);\n }\n this.setState(INITIAL_STATE);\n };}\n\n render() {\n const { fallback, children } = this.props;\n const state = this.state;\n\n if (state.error) {\n let element = undefined;\n if (typeof fallback === 'function') {\n element = React.createElement(fallback, {\n error: state.error,\n componentStack: state.componentStack ,\n resetError: this.resetErrorBoundary,\n eventId: state.eventId ,\n });\n } else {\n element = fallback;\n }\n\n if (React.isValidElement(element)) {\n return element;\n }\n\n if (fallback) {\n DEBUG_BUILD && logger.warn('fallback did not produce a valid ReactElement');\n }\n\n // Fail gracefully if no fallback provided or is not valid\n return null;\n }\n\n if (typeof children === 'function') {\n return (children )();\n }\n return children;\n }\n}\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction withErrorBoundary(\n WrappedComponent,\n errorBoundaryOptions,\n) {\n const componentDisplayName = WrappedComponent.displayName || WrappedComponent.name || UNKNOWN_COMPONENT;\n\n const Wrapped = (props) => (\n React.createElement(ErrorBoundary, { ...errorBoundaryOptions,}\n , React.createElement(WrappedComponent, { ...props,} )\n )\n );\n\n Wrapped.displayName = `errorBoundary(${componentDisplayName})`;\n\n // Copy over static methods from Wrapped component to Profiler HOC\n // See: https://reactjs.org/docs/higher-order-components.html#static-methods-must-be-copied-over\n hoistNonReactStatics(Wrapped, WrappedComponent);\n return Wrapped;\n}\n\nexport { ErrorBoundary, UNKNOWN_COMPONENT, withErrorBoundary };\n//# sourceMappingURL=errorboundary.js.map\n"],"names":["isAtLeastReact17","reactVersion","reactMajor","setCause","error","cause","seenErrors","recurse","captureReactException","componentStack","hint","version","isError","errorBoundaryError","captureException","b","c","d","e","f","g","h","k","l","m","n","p","q","r","t","v","w","x","y","z","a","u","A","reactIs_production_min","reactIsModule","require$$0","reactIs","REACT_STATICS","KNOWN_STATICS","FORWARD_REF_STATICS","MEMO_STATICS","TYPE_STATICS","getStatics","component","defineProperty","getOwnPropertyNames","getOwnPropertySymbols","getOwnPropertyDescriptor","getPrototypeOf","objectPrototype","hoistNonReactStatics","targetComponent","sourceComponent","blacklist","inheritedComponent","keys","targetStatics","sourceStatics","i","key","descriptor","hoistNonReactStatics_cjs","DEBUG_BUILD","INITIAL_STATE","ErrorBoundary","React.Component","props","client","getClient","event","showReportDialog","errorInfo","passedInComponentStack","beforeCapture","onError","showDialog","dialogOptions","withScope","scope","handled","eventId","onMount","onUnmount","onReset","fallback","children","state","element","React.createElement","React.isValidElement","logger"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5]}