import React, { useEffect } from "react"; import { Severity, CopilotKitError } from "@copilotkit/shared"; import { StatusChecker } from "../../lib/status-checker"; import { getErrorActions, UsageBanner } from "../usage-banner"; import { useErrorToast } from "./error-utils"; const statusChecker = new StatusChecker(); interface Props { children: React.ReactNode; publicApiKey?: string; showUsageBanner?: boolean; } interface State { hasError: boolean; error?: CopilotKitError; status?: { severity: Severity; message: string; }; } export class CopilotErrorBoundary extends React.Component { constructor(props: Props) { super(props); this.state = { hasError: false, }; } static getDerivedStateFromError(error: CopilotKitError): State { return { hasError: true, error }; } componentDidMount() { if (this.props.publicApiKey) { statusChecker.start(this.props.publicApiKey, (newStatus) => { this.setState((prevState) => { if (newStatus?.severity !== prevState.status?.severity) { return { status: newStatus ?? undefined }; } return null; }); }); } } componentWillUnmount() { statusChecker.stop(); } componentDidCatch(error: Error, errorInfo: React.ErrorInfo) { console.error("CopilotKit Error:", error, errorInfo); } render() { if (this.state.hasError) { if (this.state.error instanceof CopilotKitError) { return ( <> {this.props.children} {this.props.showUsageBanner && ( )} ); } throw this.state.error; } return this.props.children; } } export function ErrorToast({ error, children, }: { error?: Error; children: React.ReactNode; }) { const addErrorToast = useErrorToast(); useEffect(() => { if (error) { addErrorToast([error]); } }, [error, addErrorToast]); if (!error) throw error; return children; }