@blueprintjs/core
Version:
Core styles & components
96 lines (70 loc) • 3.41 kB
Markdown
@# Panel stack (v2)
<div class="@ns-callout @ns-intent-primary @ns-icon-info-sign @ns-callout-has-body-content">
<h5 class="@ns-heading">
Migrating from [PanelStack](#core/components/panel-stack)?
</h5>
__PanelStack2__ is a replacement for __PanelStack__. It will become the standard API in a future major version of
Blueprint. You are encouraged to use this new API now for forwards-compatibility. See the full
[migration guide](https://github.com/palantir/blueprint/wiki/PanelStack2-migration) on the wiki.
</div>
__PanelStack2__ manages a stack of panels and displays only the topmost panel.
Each panel appears with a header containing a "back" button to return to the previous panel. The bottom-most
`initialPanel` cannot be closed or removed from the stack. Panels use
[__CSSTransition__](http://reactcommunity.org/react-transition-group/css-transition) for seamless transitions.
By default, only the currently active panel is rendered to the DOM. This means that other panels are unmounted and can
lose their component state as a user transitions between the panels. You can notice this in the example below as the
numeric counter is reset. To render all panels to the DOM and keep their React trees mounted, change the
`renderActivePanelOnly` prop.
PanelStack2Example
@## Panels
Panels are supplied as `Panel<T>` objects, where `renderPanel` and `props` are
used to render the panel element and `title` will appear in the header and back button.
This breakdown allows the component to avoid cloning elements.
Note that each panel is only mounted when it is atop the stack and is unmounted when
it is closed or when a panel opens above it.
`PanelStack2` injects panel action callbacks into each panel renderer in addition to
the `props` defined by `Panel<T>`. These allow you to close the current panel or open a
new one on top of it during the panel's lifecycle. For example:
```tsx
import { Button, PanelProps } from "@blueprintjs/core";
type SettingsPanelInfo = { /* ... */ };
type AccountSettingsPanelInfo = { /* ... */ };
type NotificationSettingsPanelInfo = { /* ... */ };
const AccountSettingsPanel: React.FC<PanelProps<AccountSettingsPanelInfo>> = props => {
// implementation
};
const NotificationSettingsPanel: React.FC<PanelProps<NotificationSettingsPanelInfo>> = props => {
// implementation
};
const SettingsPanel: React.FC<PanelProps<SettingsPanelInfo>> = props => {
const { openPanel, closePanel, ...info } = props;
const openAccountSettings = () =>
openPanel({
props: {
/* ... */
},
renderPanel: AccountSettingsPanel,
title: "Account settings",
});
const openNotificationSettings = () =>
openPanel({
props: {
/* ... */
},
renderPanel: NotificationSettingsPanel,
title: "Notification settings",
});
return (
<>
<Button onClick={openAccountSettings} text="Account settings" />
<Button onClick={openNotificationSettings} text="Notification settings" />
</>
);
}
```
Panel
PanelActions
@## Props interface
__PanelStack2__ can be operated as a controlled or uncontrolled component.
If controlled, panels should be added to and removed from the _end_ of the `stack` array.
PanelStack2Props