/* * Copyright 2021 Palantir Technologies, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { useCallback, useMemo } from "react"; import { Classes, DISPLAYNAME_PREFIX } from "../../common"; import { Button } from "../button/buttons"; import { Text } from "../text/text"; import type { Panel, PanelProps } from "./panelTypes"; export interface PanelViewProps> { /** * Callback invoked when the user presses the back button or a panel invokes * the `closePanel()` injected prop method. */ onClose: (removedPanel: T) => void; /** * Callback invoked when a panel invokes the `openPanel(panel)` injected * prop method. */ onOpen: (addedPanel: T) => void; /** The panel to be displayed. */ panel: T; /** Ref to the root DOM element, used by PanelStack to provide `nodeRef` to CSSTransition. */ panelNodeRef?: React.Ref; /** The previous panel in the stack, for rendering the "back" button. */ previousPanel?: T; /** Whether to show the header with the "back" button. */ showHeader: boolean; } interface PanelViewComponent { >(props: PanelViewProps): React.JSX.Element | null; displayName: string; } export const PanelView: PanelViewComponent = >({ panel, onClose, onOpen, panelNodeRef, previousPanel, showHeader, }: PanelViewProps) => { const hasPreviousPanel = previousPanel !== undefined; const handleClose = useCallback(() => { // only remove this panel if it is not the only one. if (hasPreviousPanel) { onClose(panel); } }, [onClose, panel, hasPreviousPanel]); const maybeBackButton = previousPanel === undefined ? null : (