2018-12-14 17:48:42 +00:00
|
|
|
import Cytoscape from 'cytoscape'
|
|
|
|
import dagre from 'cytoscape-dagre'
|
2018-12-15 10:49:08 +00:00
|
|
|
import React, { Fragment, memo } from 'react'
|
2018-12-14 17:48:42 +00:00
|
|
|
import CytoscapeComponent from 'react-cytoscapejs'
|
2018-12-14 19:10:08 +00:00
|
|
|
import { uniq } from 'ramda'
|
|
|
|
import { toEther } from '../utils/conversions'
|
2018-12-15 10:49:08 +00:00
|
|
|
import { getTokenLabel } from '../utils/currencies'
|
2018-12-14 17:48:42 +00:00
|
|
|
|
|
|
|
Cytoscape.use(dagre)
|
|
|
|
const layout = { name: 'dagre' }
|
|
|
|
|
|
|
|
const stylesheet = [
|
|
|
|
{
|
|
|
|
selector: 'node',
|
|
|
|
style: {
|
|
|
|
width: 5,
|
|
|
|
height: 5,
|
|
|
|
fontSize: '5px',
|
|
|
|
color: 'blue',
|
|
|
|
label: 'data(label)'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
selector: 'edge',
|
|
|
|
style: {
|
|
|
|
label: 'data(label)',
|
|
|
|
curveStyle: 'bezier',
|
|
|
|
targetArrowShape: 'triangle',
|
|
|
|
arrowScale: 0.5,
|
|
|
|
fontSize: '5px',
|
|
|
|
width: 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-12-15 10:49:08 +00:00
|
|
|
const getAuthorizations = events => events.filter(event => event.event === 'AuthorizePayment')
|
|
|
|
const createElements = (transfers, vaultEvents) => {
|
2018-12-14 19:10:08 +00:00
|
|
|
const nodes = []
|
|
|
|
const edges = []
|
2018-12-15 10:49:08 +00:00
|
|
|
const authorizations = getAuthorizations(vaultEvents)
|
2018-12-14 19:10:08 +00:00
|
|
|
transfers.forEach(transfer => {
|
|
|
|
const { returnValues: { amount, from, to } } = transfer
|
|
|
|
nodes.push({
|
|
|
|
data: { id: from === '0' ? 'Create Funding' : from, label: `Pledge Id ${from}` }
|
|
|
|
})
|
|
|
|
nodes.push({
|
|
|
|
data: { id: to, label: `Pledge Id ${to}` }
|
|
|
|
})
|
|
|
|
edges.push({
|
|
|
|
data: { source: from === '0' ? 'Create Funding' : from, target: to, label: toEther(amount) }
|
|
|
|
})
|
|
|
|
})
|
2018-12-15 10:49:08 +00:00
|
|
|
authorizations.forEach(auth => {
|
|
|
|
const { returnValues: { amount, dest, token, ref } } = auth
|
|
|
|
const reference = Number(ref.slice(2)).toString()
|
|
|
|
if (!isNaN(reference)) {
|
|
|
|
nodes.push({
|
|
|
|
data: { id: dest, label: dest }
|
|
|
|
})
|
|
|
|
edges.push({
|
|
|
|
data: { source: reference, target: dest, label: `Withdraw ${toEther(amount)} ${getTokenLabel(token)}`}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
2018-12-14 19:10:08 +00:00
|
|
|
return [
|
|
|
|
...uniq(nodes),
|
|
|
|
...edges
|
2018-12-14 17:48:42 +00:00
|
|
|
]
|
2018-12-14 19:10:08 +00:00
|
|
|
}
|
2018-12-14 17:48:42 +00:00
|
|
|
|
2018-12-15 10:49:08 +00:00
|
|
|
const TransfersGraph = ({ transfers, vaultEvents }) => {
|
2018-12-14 17:48:42 +00:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<CytoscapeComponent
|
2018-12-15 10:49:08 +00:00
|
|
|
elements={createElements(transfers, vaultEvents)}
|
2018-12-14 17:48:42 +00:00
|
|
|
style={ { width: '100%', height: '600px', fontSize: '14px' } }
|
|
|
|
stylesheet={stylesheet}
|
|
|
|
layout={layout}
|
|
|
|
/>
|
|
|
|
</Fragment>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-12-15 10:49:08 +00:00
|
|
|
export default memo(TransfersGraph)
|