import { Colors, Text, Toast, Toaster } from "@blueprintjs/core"; import * as React from "react"; const CREATE_ISSUE_URL = "https://github.com/nilaymaj/esolang-park/issues/new"; const styles = { errorTitle: { fontWeight: "bold", whiteSpace: "pre-wrap" as const, }, callStack: { padding: 10, maxHeight: 300, overflowY: "auto" as const, borderRadius: 10, background: Colors.RED1, whiteSpace: "pre-wrap" as const, border: "1px solid " + Colors.RED4, }, }; const ErrorBoundaryContext = React.createContext<{ throwError: (error: Error) => void; }>({ throwError: () => {} }); /** Context provider for error handling */ export const ErrorBoundaryProvider = (props: { children: React.ReactNode }) => { const [error, setError] = React.useState(null); return ( {error && ( setError(null)} message={

An unexpected error occurred:

{error.message}
{error.stack}

Please{" "} create an issue on GitHub {" "} with:

  • The language you were using
  • The code you tried to run
  • The error details and call stack above

Once done, refresh the page to reload the IDE. If needed,{" "} copy your code before refreshing the page.

} /> )}
{props.children}
); }; /** Utility hook to access error boundary */ export const useErrorBoundary = () => React.useContext(ErrorBoundaryContext);