53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
"use client";
|
|
|
|
import React, { Component, ReactNode } from "react";
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
fallback?: ReactNode;
|
|
}
|
|
|
|
interface State {
|
|
hasError: boolean;
|
|
error: Error | null;
|
|
}
|
|
|
|
/**
|
|
* Error boundary specifically for audio-related errors.
|
|
* Catches errors in the audio provider hierarchy and allows the rest of the app to continue.
|
|
* Falls through gracefully without breaking the entire application.
|
|
*/
|
|
export class AudioErrorBoundary extends Component<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
this.state = { hasError: false, error: null };
|
|
}
|
|
|
|
static getDerivedStateFromError(error: Error): State {
|
|
// Update state so the next render will show the fallback UI
|
|
return { hasError: true, error };
|
|
}
|
|
|
|
componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
|
|
// Log the error for debugging
|
|
console.error("[AudioErrorBoundary] Audio system error:", error);
|
|
console.error("[AudioErrorBoundary] Component stack:", errorInfo.componentStack);
|
|
}
|
|
|
|
render() {
|
|
if (this.state.hasError) {
|
|
// If there's a custom fallback, use it
|
|
if (this.props.fallback) {
|
|
return this.props.fallback;
|
|
}
|
|
|
|
// Otherwise, render children without audio functionality
|
|
// This allows the app to continue working, just without audio
|
|
return this.props.children;
|
|
}
|
|
|
|
return this.props.children;
|
|
}
|
|
}
|
|
|