Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
1f96b9fd
Commit
1f96b9fd
authored
May 21, 2018
by
ninabreznik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add txStatus icon, move expand to the end, add lines between logs
parent
c93ec612
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
21 deletions
+47
-21
txLogger.js
src/app/execution/txLogger.js
+45
-20
terminal-styles.js
src/app/panels/styles/terminal-styles.js
+2
-1
No files found.
src/app/execution/txLogger.js
View file @
1f96b9fd
...
@@ -17,25 +17,36 @@ var typeConversion = remixLib.execution.typeConversion
...
@@ -17,25 +17,36 @@ var typeConversion = remixLib.execution.typeConversion
var
css
=
csjs
`
var
css
=
csjs
`
.log {
.log {
display: flex;
display: flex;
justify-content: space-between;
cursor: pointer;
align-items: center;
cursor: pointer;
cursor: pointer;
}
}
.log:hover {
.log:hover {
opacity: 0.8;
opacity: 0.8;
}
}
.
caret
{
.
arrow
{
color:
${
styles
.
terminal
.
icon_Color_Menu
}
;
color:
${
styles
.
terminal
.
icon_Color_Menu
}
;
font-size:
15
px;
font-size:
20
px;
cursor: pointer;
cursor: pointer;
display: flex;
display: flex;
position: absolute;
margin-left: 10px;
left: 7px;
}
}
.
caret
:hover {
.
arrow
:hover {
color:
${
styles
.
terminal
.
icon_HoverColor_Menu
}
;
color:
${
styles
.
terminal
.
icon_HoverColor_Menu
}
;
}
}
.txLog {
.txLog {
width: 75%;
}
.txStatus {
display: flex;
font-size: 20px;
margin-right: 20px;
float: left;
}
.succeeded {
color: green;
}
.failed {
color: red;
}
}
.txItem {
.txItem {
color:
${
styles
.
terminal
.
text_Primary
}
;
color:
${
styles
.
terminal
.
text_Primary
}
;
...
@@ -49,7 +60,7 @@ var css = csjs`
...
@@ -49,7 +60,7 @@ var css = csjs`
color:
${
styles
.
terminal
.
text_Title_TransactionLog
}
;
color:
${
styles
.
terminal
.
text_Title_TransactionLog
}
;
font-weight: bold;
font-weight: bold;
float: left;
float: left;
margin
: 0
10px;
margin
-right:
10px;
}
}
.txTable,
.txTable,
.tr,
.tr,
...
@@ -80,7 +91,7 @@ var css = csjs`
...
@@ -80,7 +91,7 @@ var css = csjs`
}
}
.buttons {
.buttons {
display: flex;
display: flex;
margin-
right: 10px
;
margin-
left: auto
;
}
}
.debug {
.debug {
${
styles
.
terminal
.
button_Log_Debug
}
${
styles
.
terminal
.
button_Log_Debug
}
...
@@ -193,14 +204,16 @@ function renderKnownTransaction (self, data) {
...
@@ -193,14 +204,16 @@ function renderKnownTransaction (self, data) {
var
from
=
data
.
tx
.
from
var
from
=
data
.
tx
.
from
var
to
=
data
.
resolvedData
.
contractName
+
'.'
+
data
.
resolvedData
.
fn
var
to
=
data
.
resolvedData
.
contractName
+
'.'
+
data
.
resolvedData
.
fn
var
obj
=
{
from
,
to
}
var
obj
=
{
from
,
to
}
var
txType
=
'knownTx'
var
tx
=
yo
`
var
tx
=
yo
`
<span id="tx
${
data
.
tx
.
hash
}
">
<span id="tx
${
data
.
tx
.
hash
}
">
<div class="
${
css
.
log
}
" onclick=
${
e
=>
txDetails
(
e
,
tx
,
data
,
obj
)}
>
<div class="
${
css
.
log
}
" onclick=
${
e
=>
txDetails
(
e
,
tx
,
data
,
obj
)}
>
<i class="
${
css
.
caret
}
fa fa-caret-right"></i>
${
checkTxStatus
(
data
.
tx
,
txType
)}
${
context
(
self
,
{
from
,
to
,
data
})}
${
context
(
self
,
{
from
,
to
,
data
})}
<div class=
${
css
.
buttons
}
>
<div class=
${
css
.
buttons
}
>
<div class=
${
css
.
debug
}
onclick=
${(
e
)
=>
debug
(
e
,
data
,
self
)}
>Debug</div>
<div class=
${
css
.
debug
}
onclick=
${(
e
)
=>
debug
(
e
,
data
,
self
)}
>Debug</div>
</div>
</div>
<i class="
${
css
.
arrow
}
fa fa-angle-down"></i>
</div>
</div>
</span>
</span>
`
`
...
@@ -212,10 +225,11 @@ function renderCall (self, data) {
...
@@ -212,10 +225,11 @@ function renderCall (self, data) {
var
from
=
data
.
tx
.
from
?
data
.
tx
.
from
:
' - '
var
from
=
data
.
tx
.
from
?
data
.
tx
.
from
:
' - '
var
input
=
data
.
tx
.
input
?
helper
.
shortenHexData
(
data
.
tx
.
input
)
:
''
var
input
=
data
.
tx
.
input
?
helper
.
shortenHexData
(
data
.
tx
.
input
)
:
''
var
obj
=
{
from
,
to
}
var
obj
=
{
from
,
to
}
var
txType
=
'call'
var
tx
=
yo
`
var
tx
=
yo
`
<span id="tx
${
data
.
tx
.
hash
}
">
<span id="tx
${
data
.
tx
.
hash
}
">
<div class="
${
css
.
log
}
" onclick=
${
e
=>
txDetails
(
e
,
tx
,
data
,
obj
)}
>
<div class="
${
css
.
log
}
" onclick=
${
e
=>
txDetails
(
e
,
tx
,
data
,
obj
)}
>
<i class="
${
css
.
caret
}
fa fa-caret-right"></i>
${
checkTxStatus
(
data
.
tx
,
txType
)}
<span class=
${
css
.
txLog
}
>
<span class=
${
css
.
txLog
}
>
<span class=
${
css
.
tx
}
>[call]</span>
<span class=
${
css
.
tx
}
>[call]</span>
<div class=
${
css
.
txItem
}
><span class=
${
css
.
txItemTitle
}
>from:</span>
${
from
}
</div>
<div class=
${
css
.
txItem
}
><span class=
${
css
.
txItemTitle
}
>from:</span>
${
from
}
</div>
...
@@ -225,6 +239,7 @@ function renderCall (self, data) {
...
@@ -225,6 +239,7 @@ function renderCall (self, data) {
<div class=
${
css
.
buttons
}
>
<div class=
${
css
.
buttons
}
>
<div class=
${
css
.
debug
}
onclick=
${(
e
)
=>
debug
(
e
,
data
,
self
)}
>Debug</div>
<div class=
${
css
.
debug
}
onclick=
${(
e
)
=>
debug
(
e
,
data
,
self
)}
>Debug</div>
</div>
</div>
<i class="
${
css
.
arrow
}
fa fa-angle-down"></i>
</div>
</div>
</span>
</span>
`
`
...
@@ -235,14 +250,16 @@ function renderUnknownTransaction (self, data) {
...
@@ -235,14 +250,16 @@ function renderUnknownTransaction (self, data) {
var
from
=
data
.
tx
.
from
var
from
=
data
.
tx
.
from
var
to
=
data
.
tx
.
to
var
to
=
data
.
tx
.
to
var
obj
=
{
from
,
to
}
var
obj
=
{
from
,
to
}
var
txType
=
'unknownTx'
var
tx
=
yo
`
var
tx
=
yo
`
<span id="tx
${
data
.
tx
.
hash
}
">
<span id="tx
${
data
.
tx
.
hash
}
">
<div class="
${
css
.
log
}
" onclick=
${
e
=>
txDetails
(
e
,
tx
,
data
,
obj
)}
>
<div class="
${
css
.
log
}
" onclick=
${
e
=>
txDetails
(
e
,
tx
,
data
,
obj
)}
>
<i class="
${
css
.
caret
}
fa fa-caret-right"></i>
${
checkTxStatus
(
data
.
tx
,
txType
)}
${
context
(
self
,
{
from
,
to
,
data
})}
${
context
(
self
,
{
from
,
to
,
data
})}
<div class=
${
css
.
buttons
}
>
<div class=
${
css
.
buttons
}
>
<div class=
${
css
.
debug
}
onclick=
${(
e
)
=>
debug
(
e
,
data
,
self
)}
>Debug</div>
<div class=
${
css
.
debug
}
onclick=
${(
e
)
=>
debug
(
e
,
data
,
self
)}
>Debug</div>
</div>
</div>
<i class="
${
css
.
arrow
}
fa fa-angle-down"></i>
</div>
</div>
</span>
</span>
`
`
...
@@ -256,6 +273,14 @@ function renderEmptyBlock (self, data) {
...
@@ -256,6 +273,14 @@ function renderEmptyBlock (self, data) {
</span>`
</span>`
}
}
function
checkTxStatus
(
tx
,
type
)
{
if
(
tx
.
status
===
'0x1'
||
type
===
'call'
)
{
return
yo
`<i class="
${
css
.
txStatus
}
${
css
.
succeeded
}
fa fa-check-circle"></i>`
}
else
{
return
yo
`<i class="
${
css
.
txStatus
}
${
css
.
failed
}
fa fa-times-circle"></i>`
}
}
function
context
(
self
,
opts
)
{
function
context
(
self
,
opts
)
{
var
data
=
opts
.
data
||
''
var
data
=
opts
.
data
||
''
var
from
=
opts
.
from
?
helper
.
shortenHexData
(
opts
.
from
)
:
''
var
from
=
opts
.
from
?
helper
.
shortenHexData
(
opts
.
from
)
:
''
...
@@ -318,16 +343,16 @@ function txDetails (e, tx, data, obj) {
...
@@ -318,16 +343,16 @@ function txDetails (e, tx, data, obj) {
var
from
=
obj
.
from
var
from
=
obj
.
from
var
to
=
obj
.
to
var
to
=
obj
.
to
var
log
=
document
.
querySelector
(
`#
${
tx
.
id
}
[class^='log']`
)
var
log
=
document
.
querySelector
(
`#
${
tx
.
id
}
[class^='log']`
)
var
caret
=
document
.
querySelector
(
`#
${
tx
.
id
}
[class^='caret
']`
)
var
arrow
=
document
.
querySelector
(
`#
${
tx
.
id
}
[class^='arrow
']`
)
var
caretDown
=
yo
`<i class="
${
css
.
caret
}
fa fa-caret-down
"></i>`
var
arrowUp
=
yo
`<i class="
${
css
.
arrow
}
fa fa-angle-up
"></i>`
var
caretRight
=
yo
`<i class="
${
css
.
caret
}
fa fa-caret-right
"></i>`
var
arrowDown
=
yo
`<i class="
${
css
.
arrow
}
fa fa-angle-down
"></i>`
if
(
table
&&
table
.
parentNode
)
{
if
(
table
&&
table
.
parentNode
)
{
tx
.
removeChild
(
table
)
tx
.
removeChild
(
table
)
log
.
removeChild
(
caret
)
log
.
removeChild
(
arrow
)
log
.
appendChild
(
caretRight
)
log
.
appendChild
(
arrowDown
)
}
else
{
}
else
{
log
.
removeChild
(
caret
)
log
.
removeChild
(
arrow
)
log
.
appendChild
(
caretDown
)
log
.
appendChild
(
arrowUp
)
table
=
createTable
({
table
=
createTable
({
status
:
data
.
tx
.
status
,
status
:
data
.
tx
.
status
,
isCall
:
data
.
tx
.
isCall
,
isCall
:
data
.
tx
.
isCall
,
...
@@ -336,7 +361,7 @@ function txDetails (e, tx, data, obj) {
...
@@ -336,7 +361,7 @@ function txDetails (e, tx, data, obj) {
from
,
from
,
to
,
to
,
gas
:
data
.
tx
.
gas
,
gas
:
data
.
tx
.
gas
,
input
:
data
.
tx
.
input
,
input
:
helper
.
shortenHexData
(
data
.
tx
.
input
)
,
'decoded input'
:
data
.
resolvedData
&&
data
.
resolvedData
.
params
?
JSON
.
stringify
(
typeConversion
.
stringify
(
data
.
resolvedData
.
params
),
null
,
'
\
t'
)
:
' - '
,
'decoded input'
:
data
.
resolvedData
&&
data
.
resolvedData
.
params
?
JSON
.
stringify
(
typeConversion
.
stringify
(
data
.
resolvedData
.
params
),
null
,
'
\
t'
)
:
' - '
,
'decoded output'
:
data
.
resolvedData
&&
data
.
resolvedData
.
decodedReturnValue
?
JSON
.
stringify
(
typeConversion
.
stringify
(
data
.
resolvedData
.
decodedReturnValue
),
null
,
'
\
t'
)
:
' - '
,
'decoded output'
:
data
.
resolvedData
&&
data
.
resolvedData
.
decodedReturnValue
?
JSON
.
stringify
(
typeConversion
.
stringify
(
data
.
resolvedData
.
decodedReturnValue
),
null
,
'
\
t'
)
:
' - '
,
logs
:
data
.
logs
,
logs
:
data
.
logs
,
...
...
src/app/panels/styles/terminal-styles.js
View file @
1f96b9fd
...
@@ -91,8 +91,9 @@ var css = csjs`
...
@@ -91,8 +91,9 @@ var css = csjs`
word-break : break-all;
word-break : break-all;
white-space : pre-wrap;
white-space : pre-wrap;
line-height : 2ch;
line-height : 2ch;
margin
: 1ch;
padding
: 1ch;
margin-top : 2ch;
margin-top : 2ch;
border-top : 0.07ch solid
${
styles
.
colors
.
veryLightGrey
}
;
}
}
.cli {
.cli {
line-height : 1.7em;
line-height : 1.7em;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment