Jack Mallers
7 years ago
7 changed files with 289 additions and 5 deletions
@ -0,0 +1,26 @@ |
|||||
|
import React from 'react' |
||||
|
import PropTypes from 'prop-types' |
||||
|
import styles from './PeersList.scss' |
||||
|
|
||||
|
const PeersList = ({ peers }) => ( |
||||
|
<ul className={styles.peers}> |
||||
|
{ |
||||
|
peers.map(peer => { |
||||
|
console.log('peer: ', peer) |
||||
|
return ( |
||||
|
<li key={peer.peer_id} className={styles.peer}> |
||||
|
<span className={styles.dot} /> |
||||
|
<h1>{peer.address}</h1> |
||||
|
<h4>{peer.pub_key}</h4> |
||||
|
</li> |
||||
|
) |
||||
|
}) |
||||
|
} |
||||
|
</ul> |
||||
|
) |
||||
|
|
||||
|
PeersList.propTypes = { |
||||
|
peers: PropTypes.array.isRequired |
||||
|
} |
||||
|
|
||||
|
export default PeersList |
@ -0,0 +1,46 @@ |
|||||
|
@import '../../variables.scss'; |
||||
|
|
||||
|
.peers { |
||||
|
color: $white; |
||||
|
margin-top: 50px; |
||||
|
} |
||||
|
|
||||
|
.peer { |
||||
|
position: relative; |
||||
|
margin: 20px 0; |
||||
|
padding: 10px 40px; |
||||
|
cursor: pointer; |
||||
|
transition: all 0.25s; |
||||
|
|
||||
|
&:hover { |
||||
|
background: darken(#353535, 10%); |
||||
|
|
||||
|
.dot { |
||||
|
background: #5589F3; |
||||
|
opacity: 0.5; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.dot { |
||||
|
position: absolute; |
||||
|
top: calc(50% - 10px); |
||||
|
left: 5%; |
||||
|
width: 10px; |
||||
|
height: 10px; |
||||
|
border: 1px solid #979797; |
||||
|
border-radius: 50%; |
||||
|
|
||||
|
&.active { |
||||
|
background: #5589F3; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
h1 { |
||||
|
font-size: 16px; |
||||
|
margin-bottom: 10px; |
||||
|
} |
||||
|
|
||||
|
h4 { |
||||
|
font-size: 8px; |
||||
|
} |
||||
|
} |
@ -0,0 +1,84 @@ |
|||||
|
@import '../../../variables.scss'; |
||||
|
|
||||
|
@keyframes dash { |
||||
|
to { |
||||
|
stroke-dashoffset: 1000; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
@keyframes fadein { |
||||
|
0% { background: $white; } |
||||
|
50% { background: lighten($secondary, 50%); } |
||||
|
100% { background: $secondary; animation-fill-mode:forwards; } |
||||
|
} |
||||
|
|
||||
|
.container { |
||||
|
width: 100%; |
||||
|
height: 100vh; |
||||
|
animation: fadein 0.5s; |
||||
|
animation-timing-function:linear; |
||||
|
animation-fill-mode:forwards; |
||||
|
animation-iteration-count: 1; |
||||
|
|
||||
|
line.active { |
||||
|
opacity: 1; |
||||
|
stroke: green; |
||||
|
stroke-width: 5; |
||||
|
stroke-dasharray: 100; |
||||
|
animation: dash 2.5s infinite linear; |
||||
|
} |
||||
|
|
||||
|
circle { |
||||
|
cursor: pointer; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.network, .toolbox { |
||||
|
display: inline-block; |
||||
|
vertical-align: top; |
||||
|
height: 100vh; |
||||
|
} |
||||
|
|
||||
|
.network { |
||||
|
width: 70%; |
||||
|
} |
||||
|
|
||||
|
.toolbox { |
||||
|
width: 30%; |
||||
|
height: 100%; |
||||
|
background: #353535; |
||||
|
} |
||||
|
|
||||
|
.tabs { |
||||
|
display: flex; |
||||
|
flex-direction: row; |
||||
|
justify-content: space-between; |
||||
|
align-items: center; |
||||
|
padding-top: 40px; |
||||
|
|
||||
|
.tab { |
||||
|
color: $white; |
||||
|
text-align: center; |
||||
|
cursor: pointer; |
||||
|
width: 100%; |
||||
|
padding: 10px 0; |
||||
|
border-bottom: 1px solid #464646; |
||||
|
transition: all 0.5s; |
||||
|
|
||||
|
&:nth-child(1) { |
||||
|
border-bottom: 1px solid #588CF0; |
||||
|
} |
||||
|
|
||||
|
&.peersTab { |
||||
|
border-bottom: 1px solid #588CF0; |
||||
|
} |
||||
|
|
||||
|
&.channelsTab:hover { |
||||
|
border-bottom: 1px solid #88D4A2; |
||||
|
} |
||||
|
|
||||
|
&.transactionsTab:hover { |
||||
|
border-bottom: 1px solid #FFDC53; |
||||
|
} |
||||
|
} |
||||
|
} |
@ -1,12 +1,20 @@ |
|||||
import { withRouter } from 'react-router' |
import { withRouter } from 'react-router' |
||||
import { connect } from 'react-redux' |
import { connect } from 'react-redux' |
||||
|
|
||||
|
import { fetchDescribeNetwork } from '../../../reducers/network' |
||||
|
import { fetchPeers } from '../../../reducers/peers' |
||||
|
|
||||
import Network from '../components/Network' |
import Network from '../components/Network' |
||||
|
|
||||
const mapDispatchToProps = {} |
const mapDispatchToProps = { |
||||
|
fetchDescribeNetwork, |
||||
|
fetchPeers |
||||
|
} |
||||
|
|
||||
const mapStateToProps = state => ({ |
const mapStateToProps = state => ({ |
||||
network: state.network |
network: state.network, |
||||
|
peers: state.peers, |
||||
|
identity_pubkey: state.info.data.identity_pubkey |
||||
}) |
}) |
||||
|
|
||||
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(Network)) |
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(Network)) |
||||
|
Loading…
Reference in new issue