forked from austintgriffith/eth.build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ledger.js
149 lines (125 loc) · 3.73 KB
/
Ledger.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import React from 'react';
import ReactDOM from 'react-dom'
import { withStyles } from '@material-ui/core/styles';
import { Table, TableHead, TableRow, TableCell, TableBody } from '@material-ui/core';
import Blockies from 'react-blockies';
const StyledTableRow = withStyles(theme => ({
root: {
'&:nth-of-type(odd)': {
backgroundColor: "#dddddd",
},
},
}))(TableRow);
function Ledger() {
//this.addInput("[network]",0)
this.addInput("tx","object")
this.addInput("add",-1)
//this.addOutput("[network]",0)
this.addOutput("balance()","function")
this.balances = {}
this.txns = []
this.properties = {
title:"Ledger",
currency: "SomeCoin",
genesis:[
{
from: "0x0000000000000000000000000000000000000000",
value: 1000,
to: "0xc08b5542d177ac6686946920409741463a15dddb"
}
]
}
this.size = [640, 360];
for(let g in this.properties.genesis){
this.processTx(this.properties.genesis[g],true)
}
}
Ledger.prototype.processTx = function(tx,genesis) {
console.log("process",tx)
try{
if(tx.to&&tx.from&&tx.value){
if(!genesis || tx.from!="0x0000000000000000000000000000000000000000"){
this.balances[tx.from] = this.balances[tx.from]?this.balances[tx.from]-tx.value:-tx.value
}
this.balances[tx.to] = this.balances[tx.to]?this.balances[tx.to]+tx.value:tx.value
this.txns.push(tx)
}
}catch(e){console.log(e)}
}
Ledger.title = "Ledger";
Ledger.prototype.getTitle = function() {
return this.properties.title;
};
Ledger.prototype.onExecute = function() {
this.setOutputData(0,{
name:"balance",
args:[{name:"address",type:"string"}],
function:(args)=>{
console.log("RUN A FUNCTION BUT IN THIS CONTEXT!",args)
return this.balances[args.address]
}
})
}
Ledger.prototype.onAction = function() {
let tx = this.getInputData(0)
console.log("INPUT 0 is",tx)
this.processTx(tx,false)
}
const topPadding = 50
const rowStyle = {fontSize:20,letterSpacing:-1}
Ledger.prototype.onDrawBackground = function(ctx) {
if (this.flags.collapsed) {
this.destory()///SHOULD WE DESTORY THE ELEMENT FROM THE DOM OR
}else{
const itemStyle = {padding:5,borderBottom:"1px solid #969cca"}
let rows = []
for(let t in this.txns){
let tx = this.txns[t]
rows.push(
<StyledTableRow>
<TableCell style={rowStyle}>
<Blockies
seed={tx.from.toLowerCase()}
size={8}
scale={2}
/><span style={{marginLeft:4}}>{tx.from.substr(0,8)}</span>
</TableCell>
<TableCell style={rowStyle}>
{parseFloat(tx.value).toFixed(2)}
</TableCell>
<TableCell style={rowStyle}>
<Blockies
seed={tx.to.toLowerCase()}
size={8}
scale={2}
/><span style={{marginLeft:4}}>{tx.to.substr(0,8)}</span>
</TableCell>
</StyledTableRow>
)
}
//transformOrigin:"3% -7%"
this.render(
<div style={{overflow:"auto",color:"#444444",transformOrigin:"10px -20px",transform:"scale("+this.graph.canvas.ds.scale+")",borderRadius:"0px 0px 8px 8px",background:"#CCCCCC",marginLeft:-19,marginTop:topPadding,width:this.size[0],height:this.size[1]-topPadding-1}}>
<Table stickyHeader aria-label="sticky table">
<TableHead>
<TableRow>
<TableCell>
From
</TableCell>
<TableCell>
Value
</TableCell>
<TableCell>
To
</TableCell>
</TableRow>
</TableHead>
<TableBody>
{rows}
</TableBody>
</Table>
</div>
)
}
};
export default Ledger