mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
80 lines
2.0 KiB
JavaScript
80 lines
2.0 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import ReactCSSTransitionGroup from 'react-transition-group/CSSTransitionGroup';
|
|
import CustomizeGas from '../gas-customization/gas-modal-page-container';
|
|
import { MILLISECOND } from '../../../../shared/constants/time';
|
|
|
|
export default class Sidebar extends Component {
|
|
static propTypes = {
|
|
sidebarOpen: PropTypes.bool,
|
|
hideSidebar: PropTypes.func,
|
|
sidebarShouldClose: PropTypes.bool,
|
|
transitionName: PropTypes.string,
|
|
type: PropTypes.string,
|
|
sidebarProps: PropTypes.object,
|
|
onOverlayClose: PropTypes.func,
|
|
};
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
renderOverlay() {
|
|
const { onOverlayClose } = this.props;
|
|
|
|
return (
|
|
<div
|
|
className="sidebar-overlay"
|
|
onClick={() => {
|
|
onOverlayClose?.();
|
|
this.props.hideSidebar();
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderSidebarContent() {
|
|
const { type, sidebarProps = {} } = this.props;
|
|
const { transaction = {}, onSubmit, hideBasic } = sidebarProps;
|
|
switch (type) {
|
|
case 'customize-gas':
|
|
return (
|
|
<div className="sidebar-left">
|
|
<CustomizeGas
|
|
transaction={transaction}
|
|
onSubmit={onSubmit}
|
|
hideBasic={hideBasic}
|
|
/>
|
|
</div>
|
|
);
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (!prevProps.sidebarShouldClose && this.props.sidebarShouldClose) {
|
|
this.props.hideSidebar();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { transitionName, sidebarOpen, sidebarShouldClose } = this.props;
|
|
|
|
const showSidebar = sidebarOpen && !sidebarShouldClose;
|
|
|
|
return (
|
|
<div>
|
|
<ReactCSSTransitionGroup
|
|
transitionName={transitionName}
|
|
transitionEnterTimeout={MILLISECOND * 300}
|
|
transitionLeaveTimeout={MILLISECOND * 200}
|
|
>
|
|
{showSidebar ? this.renderSidebarContent() : null}
|
|
</ReactCSSTransitionGroup>
|
|
{showSidebar ? this.renderOverlay() : null}
|
|
</div>
|
|
);
|
|
}
|
|
}
|