1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-15 12:59:09 +00:00

flow & eslint & don't show LeftNavigation accounts if device is in bootloader mode

This commit is contained in:
Vasek Mlejnsky 2018-09-27 15:43:28 +02:00
parent d42c1df966
commit 0b370de9a1

View File

@ -1,5 +1,3 @@
/* @flow */
import * as React from 'react';
import PropTypes from 'prop-types';
import colors from 'config/colors';
@ -181,6 +179,7 @@ class LeftNavigation extends React.PureComponent<Props, State> {
);
}
const isDeviceInBootloader = this.props.wallet.selectedDevice.features && this.props.wallet.selectedDevice.features.bootloader_mode && this.props.devices.length === 1;
return (
<StickyContainer
location={this.props.location.pathname}
@ -188,9 +187,13 @@ class LeftNavigation extends React.PureComponent<Props, State> {
>
<Header
isSelected
onClickWrapper={() => this.handleOpen()}
onClickWrapper={() => {
if (!isDeviceInBootloader) {
this.handleOpen();
}
}}
device={this.props.wallet.selectedDevice}
disabled={this.props.wallet.selectedDevice.features && this.props.wallet.selectedDevice.features.bootloader_mode && this.props.devices.length === 1}
disabled={isDeviceInBootloader}
isOpen={this.props.wallet.dropdownOpened}
icon={(
<React.Fragment>
@ -209,8 +212,8 @@ class LeftNavigation extends React.PureComponent<Props, State> {
{...this.props}
/>
<Body>
{this.state.shouldRenderDeviceSelection && <DeviceMenu {...this.props} />}
{menu}
{(!isDeviceInBootloader && this.state.shouldRenderDeviceSelection) && <DeviceMenu {...this.props} />}
{!isDeviceInBootloader && menu}
</Body>
<Footer key="sticky-footer">
<Help>