import { IPanelProps, IRenderFunction, Panel, PanelType } from "@fluentui/react"; import * as React from "react"; import { useNotificationConsole } from "../../hooks/useNotificationConsole"; import { useSidePanel } from "../../hooks/useSidePanel"; export interface PanelContainerProps { headerText?: string; panelContent?: JSX.Element; isConsoleExpanded: boolean; isOpen: boolean; isConsoleAnimationFinished?: boolean; panelWidth?: string; onRenderNavigationContent?: IRenderFunction; } export interface PanelContainerState { height: string; } export class PanelContainerComponent extends React.Component { private static readonly consoleHeaderHeight = 32; private static readonly consoleContentHeight = 220; constructor(props: PanelContainerProps) { super(props); this.state = { height: this.getPanelHeight(), }; } omponentDidMount(): void { window.addEventListener("resize", () => this.setState({ height: this.getPanelHeight() })); } componentWillUnmount(): void { window.removeEventListener("resize", () => this.setState({ height: this.getPanelHeight() })); } componentDidUpdate(): void { if (useNotificationConsole.getState().consoleAnimationFinished || this.state.height !== this.getPanelHeight()) { this.setState({ height: this.getPanelHeight(), }); useNotificationConsole.getState().setConsoleAnimationFinished(false); } } render(): JSX.Element { if (!this.props.panelContent) { return <>; } return ( {this.props.panelContent} ); } private onDissmiss = (ev?: KeyboardEvent | React.SyntheticEvent): void => { if (ev && (ev.target as HTMLElement).id === "notificationConsoleHeader") { ev.preventDefault(); } else { useSidePanel.getState().closeSidePanel(); } }; private getPanelHeight = (): string => { const notificationConsole = document.getElementById("explorerNotificationConsole"); if (notificationConsole) { return window.innerHeight - notificationConsole.clientHeight + "px"; } return ( window.innerHeight - (this.props.isConsoleExpanded ? PanelContainerComponent.consoleContentHeight + PanelContainerComponent.consoleHeaderHeight : PanelContainerComponent.consoleHeaderHeight) + "px" ); }; } export const SidePanel: React.FC = () => { const isConsoleExpanded = useNotificationConsole((state) => state.isExpanded); const isConsoleAnimationFinished = useNotificationConsole((state) => state.consoleAnimationFinished); const { isOpen, panelContent, panelWidth, headerText } = useSidePanel((state) => { return { isOpen: state.isOpen, panelContent: state.panelContent, headerText: state.headerText, panelWidth: state.panelWidth, }; }); // TODO Refactor PanelContainerComponent into a functional component and remove this wrapper // This component only exists so we can use hooks and pass them down to a non-functional component return ( ); };