mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-21 09:51:11 +00:00
84 lines
2.5 KiB
TypeScript
84 lines
2.5 KiB
TypeScript
import { IPanelProps, IRenderFunction, Panel, PanelType } from "office-ui-fabric-react";
|
|
import * as React from "react";
|
|
|
|
export interface PanelContainerProps {
|
|
headerText: string;
|
|
panelContent: JSX.Element;
|
|
isConsoleExpanded: boolean;
|
|
isOpen: boolean;
|
|
closePanel: () => void;
|
|
panelWidth?: string;
|
|
onRenderNavigationContent?: IRenderFunction<IPanelProps>;
|
|
}
|
|
|
|
export interface PanelContainerState {
|
|
height: string;
|
|
}
|
|
|
|
export class PanelContainerComponent extends React.Component<PanelContainerProps, PanelContainerState> {
|
|
private static readonly consoleHeaderHeight = 32;
|
|
private static readonly consoleContentHeight = 220;
|
|
|
|
constructor(props: PanelContainerProps) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
height: this.getPanelHeight(),
|
|
};
|
|
}
|
|
|
|
componentDidMount(): void {
|
|
window.addEventListener("resize", () => this.setState({ height: this.getPanelHeight() }));
|
|
}
|
|
|
|
componentWillUnmount(): void {
|
|
window.removeEventListener("resize", () => this.setState({ height: this.getPanelHeight() }));
|
|
}
|
|
|
|
render(): JSX.Element {
|
|
if (!this.props.panelContent) {
|
|
return <></>;
|
|
}
|
|
|
|
return (
|
|
<Panel
|
|
headerText={this.props.headerText}
|
|
isOpen={this.props.isOpen}
|
|
onDismiss={this.onDissmiss}
|
|
isLightDismiss
|
|
type={PanelType.custom}
|
|
closeButtonAriaLabel="Close"
|
|
customWidth={this.props.panelWidth ? this.props.panelWidth : "440px"}
|
|
headerClassName="panelHeader"
|
|
onRenderNavigationContent={this.props.onRenderNavigationContent}
|
|
styles={{
|
|
navigation: { borderBottom: "1px solid #cccccc" },
|
|
content: { padding: 0, height: "100%" },
|
|
scrollableContent: { height: "100%" },
|
|
header: { padding: "0 0 8px 34px" },
|
|
commands: { marginTop: 8 },
|
|
}}
|
|
style={{ height: this.getPanelHeight() }}
|
|
>
|
|
{this.props.panelContent}
|
|
</Panel>
|
|
);
|
|
}
|
|
|
|
private onDissmiss = (ev?: React.SyntheticEvent<HTMLElement>): void => {
|
|
if ((ev.target as HTMLElement).id === "notificationConsoleHeader") {
|
|
ev.preventDefault();
|
|
} else {
|
|
this.props.closePanel();
|
|
}
|
|
};
|
|
|
|
private getPanelHeight = (): string => {
|
|
const consoleHeight = this.props.isConsoleExpanded
|
|
? PanelContainerComponent.consoleContentHeight + PanelContainerComponent.consoleHeaderHeight
|
|
: PanelContainerComponent.consoleHeaderHeight;
|
|
const panelHeight = window.innerHeight - consoleHeight;
|
|
return panelHeight + "px";
|
|
};
|
|
}
|