464343f5ab
* WIP * WIP * Type and migration fixes * Adds missing default import * Fixes import * Fixes tRPC imports in App Store * Migrate stripe helpers * WIP * Type fixes * Type fix? * WIP * WIP * Update index.ts * Fixes * Update workflow.tsx * Moved queries to lib * Moves QueryCell * Migrates MultiSelectCheckboxes * WIP * CryptoSection type fixes * WIP * Import fixes * Build fixes * Update app-providers.tsx * Build fixes * Upgrades hookform zod resolvers * Build fixes * Cleanup * Build fixes * Relocates QueryCell to ui * Moved List and SkeletonLoader * Revert QueryCell migration * Can't use QueryCell here * oops * CryptoSection cleanup * Update app-providers.tsx * Moved ee to features * ee to features/ee * Removes @calcom/ee * Adds possible feature locations * Build fixes * Migrates stripe to app-store lib * Colocates stripe imports * Update subscription.ts * Submodule sync Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
36 lines
1016 B
TypeScript
36 lines
1016 B
TypeScript
import React, { ErrorInfo } from "react";
|
|
|
|
class ErrorBoundary extends React.Component<
|
|
{ children: React.ReactNode },
|
|
{ error: Error | null; errorInfo: ErrorInfo | null }
|
|
> {
|
|
constructor(props: { children: React.ReactNode } | Readonly<{ children: React.ReactNode }>) {
|
|
super(props);
|
|
this.state = { error: null, errorInfo: null };
|
|
}
|
|
|
|
componentDidCatch?(error: Error, errorInfo: ErrorInfo) {
|
|
// Catch errors in any components below and re-render with error message
|
|
this.setState({ error, errorInfo });
|
|
// You can also log error messages to an error reporting service here
|
|
}
|
|
|
|
render() {
|
|
if (this.state.errorInfo) {
|
|
// Error path
|
|
return (
|
|
<div>
|
|
<h2>Something went wrong.</h2>
|
|
<details style={{ whiteSpace: "pre-wrap" }}>
|
|
{this.state.error && this.state.error.toString()}
|
|
</details>
|
|
</div>
|
|
);
|
|
}
|
|
// Normally, just render children
|
|
return this.props.children;
|
|
}
|
|
}
|
|
|
|
export default ErrorBoundary;
|