- Foldable left panel (user profile) and right panel (task details) - Clicking a task in the list or graph node selects it and shows details - Both views (task list + graph) always mounted via absolute inset-0 for correct canvas dimensions; tabs toggle visibility with opacity - Graph node selection animation: other nodes repel outward (charge -600), then selected node smoothly slides to center (500ms cubic ease-out), then charge restores to -120 and graph stabilizes - Graph re-fits on tab switch and panel resize via ResizeObserver - Fix UUID string IDs throughout (backend returns UUIDs, not integers) - Add TaskDetailPanel, UserPanel components - Add CLAUDE.md project documentation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
44 lines
1.6 KiB
TypeScript
44 lines
1.6 KiB
TypeScript
import React from 'react';
|
|
export type ErrorComponent = React.ComponentType<{
|
|
error: Error;
|
|
reset: () => void;
|
|
}>;
|
|
export interface ErrorBoundaryProps {
|
|
children?: React.ReactNode;
|
|
errorComponent: ErrorComponent | undefined;
|
|
errorStyles?: React.ReactNode | undefined;
|
|
errorScripts?: React.ReactNode | undefined;
|
|
}
|
|
interface ErrorBoundaryHandlerProps extends ErrorBoundaryProps {
|
|
pathname: string;
|
|
errorComponent: ErrorComponent;
|
|
}
|
|
interface ErrorBoundaryHandlerState {
|
|
error: Error | null;
|
|
previousPathname: string;
|
|
}
|
|
export declare class ErrorBoundaryHandler extends React.Component<ErrorBoundaryHandlerProps, ErrorBoundaryHandlerState> {
|
|
constructor(props: ErrorBoundaryHandlerProps);
|
|
static getDerivedStateFromError(error: Error): {
|
|
error: Error;
|
|
};
|
|
static getDerivedStateFromProps(props: ErrorBoundaryHandlerProps, state: ErrorBoundaryHandlerState): ErrorBoundaryHandlerState | null;
|
|
reset: () => void;
|
|
render(): React.ReactNode;
|
|
}
|
|
export declare function GlobalError({ error }: {
|
|
error: any;
|
|
}): import("react/jsx-runtime").JSX.Element;
|
|
export default GlobalError;
|
|
/**
|
|
* Handles errors through `getDerivedStateFromError`.
|
|
* Renders the provided error component and provides a way to `reset` the error boundary state.
|
|
*/
|
|
/**
|
|
* Renders error boundary with the provided "errorComponent" property as the fallback.
|
|
* If no "errorComponent" property is provided it renders the children without an error boundary.
|
|
*/
|
|
export declare function ErrorBoundary({ errorComponent, errorStyles, errorScripts, children, }: ErrorBoundaryProps & {
|
|
children: React.ReactNode;
|
|
}): JSX.Element;
|