mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-01 04:12:40 +00:00
55 lines
2.1 KiB
JavaScript
55 lines
2.1 KiB
JavaScript
import React, { Component } from 'react';
|
|
import styled from 'styled-components';
|
|
import Icon from 'components/Icon';
|
|
import DeviceHeader from 'components/DeviceHeader';
|
|
import icons from 'config/icons';
|
|
import colors from 'config/colors';
|
|
|
|
const Wrapper = styled.div``;
|
|
const IconClick = styled.div``;
|
|
|
|
class DeviceList extends Component {
|
|
sortByInstance(a, b) {
|
|
if (!a.instance || !b.instance) return -1;
|
|
return a.instance > b.instance ? 1 : -1;
|
|
}
|
|
|
|
render() {
|
|
const { devices, selectedDevice, onSelectDevice } = this.props;
|
|
return (
|
|
<Wrapper>
|
|
{devices
|
|
.sort(this.sortByInstance)
|
|
.map(device => (
|
|
device !== selectedDevice && (
|
|
<DeviceHeader
|
|
key={`${device.instanceLabel}`}
|
|
onClickWrapper={() => this.props.onSelectDevice(device)}
|
|
onClickIcon={() => this.onDeviceMenuClick({ type: 'forget', label: '' }, device)}
|
|
icon={(
|
|
<IconClick onClick={(event) => {
|
|
event.stopPropagation();
|
|
event.preventDefault();
|
|
this.onDeviceMenuClick({ type: 'forget', label: '' }, device);
|
|
}}
|
|
>
|
|
<Icon
|
|
icon={icons.EJECT}
|
|
size={25}
|
|
color={colors.TEXT_SECONDARY}
|
|
/>
|
|
</IconClick>
|
|
)}
|
|
device={device}
|
|
devices={devices}
|
|
isHoverable
|
|
/>
|
|
)
|
|
))}
|
|
|
|
</Wrapper>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default DeviceList; |