blob: 9f517d273cdd84d03ccd7a21596ebcb0fa67d494 (
plain) (
tree)
|
|
import * as React from 'react';
import { StandardSlidingPanelContent, StandardSlidingPanelSettings } from '../types';
import { InstallWalletPanelContent } from './install_wallet_panel_content';
import { SlidingPanel } from './sliding_panel';
export interface StandardSlidingPanelProps extends StandardSlidingPanelSettings {
onClose: () => void;
}
export class StandardSlidingPanel extends React.Component<StandardSlidingPanelProps> {
public render(): React.ReactNode {
const { animationState, content, onClose } = this.props;
return (
<SlidingPanel animationState={animationState} onClose={onClose}>
{this._getNodeForContent(content)}
</SlidingPanel>
);
}
private readonly _getNodeForContent = (content: StandardSlidingPanelContent): React.ReactNode => {
switch (content) {
case StandardSlidingPanelContent.InstallWallet:
return <InstallWalletPanelContent />;
case StandardSlidingPanelContent.None:
return null;
}
};
}
|