| import { createContext, useContext, useRef, useState } from 'react' |
| import { ShadowPortal } from './components/shadow-portal' |
| import { Base } from './styles/base' |
| import { ComponentStyles } from './styles/component-styles' |
| import { Colors } from './styles/colors' |
| import { ErrorOverlay } from './components/errors/error-overlay/error-overlay' |
| import { RenderError } from './container/runtime-error/render-error' |
| import { DarkTheme } from './styles/dark-theme' |
| import type { ReadyRuntimeError } from './utils/get-error-by-type' |
| import { DevToolsIndicator } from './components/devtools-indicator/devtools-indicator' |
| import { PanelRouter } from './menu/panel-router' |
| import { PanelRouterContext, type PanelStateKind } from './menu/context' |
| import { useDevOverlayContext } from '../dev-overlay.browser' |
|
|
| export const RenderErrorContext = createContext<{ |
| runtimeErrors: ReadyRuntimeError[] |
| totalErrorCount: number |
| }>(null!) |
|
|
| export const useRenderErrorContext = () => useContext(RenderErrorContext) |
|
|
| export function DevOverlay() { |
| const [panel, setPanel] = useState<null | PanelStateKind>(null) |
| const [selectedIndex, setSelectedIndex] = useState(-1) |
| const { state, dispatch, getSquashedHydrationErrorDetails } = |
| useDevOverlayContext() |
|
|
| const triggerRef = useRef<HTMLButtonElement>(null) |
| return ( |
| <ShadowPortal> |
| <Base scale={state.scale} /> |
| <Colors /> |
| <ComponentStyles /> |
| <DarkTheme /> |
| |
| <RenderError state={state} dispatch={dispatch} isAppDir={true}> |
| {({ runtimeErrors, totalErrorCount }) => { |
| return ( |
| <> |
| {state.showIndicator ? ( |
| <> |
| <RenderErrorContext |
| value={{ runtimeErrors, totalErrorCount }} |
| > |
| <PanelRouterContext |
| value={{ |
| panel, |
| setPanel, |
| triggerRef, |
| selectedIndex, |
| setSelectedIndex, |
| }} |
| > |
| <ErrorOverlay |
| state={state} |
| dispatch={dispatch} |
| getSquashedHydrationErrorDetails={ |
| getSquashedHydrationErrorDetails |
| } |
| runtimeErrors={runtimeErrors} |
| errorCount={totalErrorCount} |
| /> |
| <PanelRouter /> |
| <DevToolsIndicator /> |
| </PanelRouterContext> |
| </RenderErrorContext> |
| </> |
| ) : null} |
| </> |
| ) |
| }} |
| </RenderError> |
| </ShadowPortal> |
| ) |
| } |
|
|