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
20ed1bf1
Commit
20ed1bf1
authored
Mar 02, 2018
by
yann300
Committed by
GitHub
Mar 02, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #712 from ethereum/fixUxInterface
[Debugger] Fix ui
parents
061c5875
1202bfb5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
22 deletions
+31
-22
package.json
remix-debugger/package.json
+1
-0
DropdownPanel.js
remix-debugger/src/ui/DropdownPanel.js
+11
-15
SolidityTypeFormatter.js
remix-debugger/src/ui/SolidityTypeFormatter.js
+1
-1
TreeView.js
remix-debugger/src/ui/TreeView.js
+1
-1
vmdebugger.js
remix-debugger/test-browser/test/vmdebugger.js
+17
-5
No files found.
remix-debugger/package.json
View file @
20ed1bf1
...
...
@@ -24,6 +24,7 @@
"babelify"
:
"^7.3.0"
,
"browserify"
:
"^13.0.1"
,
"browserify-livereload"
:
"^1.0.10"
,
"clipboard-copy"
:
"^1.2.0"
,
"csjs-inject"
:
"^1.0.1"
,
"ethereum-common"
:
"0.0.18"
,
"ethereumjs-block"
:
"^1.2.2"
,
...
...
remix-debugger/src/ui/DropdownPanel.js
View file @
20ed1bf1
'use strict'
var
yo
=
require
(
'yo-yo'
)
const
copy
=
require
(
'clipboard-copy'
)
var
remixLib
=
require
(
'remix-lib'
)
var
TreeView
=
require
(
'./TreeView'
)
var
EventManager
=
remixLib
.
EventManager
...
...
@@ -11,7 +12,7 @@ var styles = styleGuide.chooser()
var
css
=
csjs
`
.title {
margin-top: 10px;
${
styles
.
rightPanel
.
debuggerTab
.
dropdown_Debugger
}
${
styles
.
rightPanel
.
debuggerTab
.
dropdown_Debugger
}
;
display: flex;
align-items: center;
}
...
...
@@ -23,15 +24,13 @@ var css = csjs`
margin-right: 5%;
}
.eyeButton {
${
styles
.
rightPanel
.
debuggerTab
.
button_Debugger
}
margin: 3px;
float: right;
}
.eyeButton:hover {
color:
${
styles
.
rightPanel
.
debuggerTab
.
button_Debugger_icon_HoverColor
}
;
}
.dropdownpanel {
${
styles
.
rightPanel
.
debuggerTab
.
dropdown_Debugger
}
${
styles
.
rightPanel
.
debuggerTab
.
dropdown_Debugger
}
;
width: 100%;
}
.dropdownrawcontent {
...
...
@@ -94,7 +93,7 @@ DropdownPanel.prototype.update = function (_data, _header) {
this
.
view
.
querySelector
(
'.dropdownpanel .dropdowncontent'
).
style
.
display
=
'block'
this
.
view
.
querySelector
(
'.dropdownpanel .dropdowncontent'
).
style
.
color
=
styles
.
appProperties
.
mainText_Color
this
.
view
.
querySelector
(
'.dropdownpanel .dropdownrawcontent'
).
innerText
=
JSON
.
stringify
(
_data
,
null
,
'
\
t'
)
this
.
view
.
querySelector
(
'.
dropdownpanel button
.btn'
).
style
.
display
=
'block'
this
.
view
.
querySelector
(
'.
title div
.btn'
).
style
.
display
=
'block'
this
.
view
.
querySelector
(
'.title span'
).
innerText
=
_header
||
' '
this
.
message
(
''
)
if
(
this
.
json
)
{
...
...
@@ -130,13 +129,12 @@ DropdownPanel.prototype.render = function (overridestyle) {
to {transform:rotate(359deg);}
}
</style>
<div class="
${
css
.
title
}
title" onclick=
${
function
()
{
self
.
toggle
()
}
}>
<div class="
${
css
.
icon
}
fa fa-caret-right"></div>
<div class="
${
css
.
name
}
">
${
this
.
name
}
</div><span></span>
<div class="
${
css
.
title
}
title">
<div class="
${
css
.
icon
}
fa fa-caret-right" onclick=
${
function
()
{
self
.
toggle
()
}
} ></div>
<div class="
${
css
.
name
}
" onclick=
${
function
()
{
self
.
toggle
()
}
} >
${
this
.
name
}
</div><span onclick=
${
function
()
{
self
.
toggle
()
}
} ></span>
<div onclick=
${
function
()
{
self
.
copyClipboard
()
}
} title='raw' class="
${
css
.
eyeButton
}
btn fa fa-clipboard"></div>
</div>
<div class='dropdownpanel' style='display:none'>
<button onclick=
${
function
()
{
self
.
toggleRaw
()
}
} title='raw' class="
${
css
.
eyeButton
}
btn fa fa-eye" type="button">
</button>
<i class="
${
css
.
refresh
}
fa fa-refresh" aria-hidden="true"></i>
<div class='dropdowncontent'>
${
content
}
</div>
<div class='dropdownrawcontent' style='display:none'></div>
...
...
@@ -149,11 +147,9 @@ DropdownPanel.prototype.render = function (overridestyle) {
return
view
}
DropdownPanel
.
prototype
.
toggleRaw
=
function
()
{
var
raw
=
this
.
view
.
querySelector
(
'.dropdownpanel .dropdownrawcontent'
)
var
formatted
=
this
.
view
.
querySelector
(
'.dropdownpanel .dropdowncontent'
)
raw
.
style
.
display
=
raw
.
style
.
display
===
'none'
?
'block'
:
'none'
formatted
.
style
.
display
=
formatted
.
style
.
display
===
'none'
?
'block'
:
'none'
DropdownPanel
.
prototype
.
copyClipboard
=
function
()
{
var
content
=
this
.
view
.
querySelector
(
'.dropdownpanel .dropdownrawcontent'
)
if
(
content
)
copy
(
content
.
innerText
?
content
.
innerText
:
content
.
textContent
)
}
DropdownPanel
.
prototype
.
toggle
=
function
()
{
...
...
remix-debugger/src/ui/SolidityTypeFormatter.js
View file @
20ed1bf1
...
...
@@ -48,7 +48,7 @@ function extractData (item, parent, key) {
ret
.
isMapping
=
true
ret
.
self
=
item
.
type
}
else
{
ret
.
children
=
[]
ret
.
children
=
null
ret
.
self
=
item
.
value
ret
.
type
=
item
.
type
}
...
...
remix-debugger/src/ui/TreeView.js
View file @
20ed1bf1
...
...
@@ -175,7 +175,7 @@ class TreeView {
ret
.
isLeaf
=
false
}
else
{
ret
.
self
=
item
ret
.
children
=
[]
ret
.
children
=
null
ret
.
isNode
=
false
ret
.
isLeaf
=
true
}
...
...
remix-debugger/test-browser/test/vmdebugger.js
View file @
20ed1bf1
...
...
@@ -39,8 +39,14 @@ function loadTraceNotFound (browser) {
.
setValue
(
'#txinput'
,
'0x20ef65b8b186ca942zcccd634f37074dde49b541c27994fc7596740ef44cfd51'
)
.
click
(
'#load'
)
.
click
(
'#txinfo .title'
)
.
click
(
'#txinfo .dropdownpanel .btn'
)
.
expect
.
element
(
'#txinfo .dropdownpanel .dropdownrawcontent'
).
text
.
to
.
contain
(
'<not found>'
)
.
execute
(
function
()
{
return
document
.
querySelector
(
'#txinfo .dropdownpanel .dropdownrawcontent'
).
innerHTML
},
[],
function
(
result
)
{
console
.
log
(
result
.
value
)
if
(
result
.
value
.
indexOf
(
'not found'
)
===
-
1
)
{
browser
.
assert
.
fail
(
' txinput panel does not contain <not found> '
,
'info about error'
,
''
)
}
})
return
browser
}
...
...
@@ -50,9 +56,15 @@ function loadTrace (browser) {
.
setValue
(
'#txinput'
,
'0x20ef65b8b186ca942fcccd634f37074dde49b541c27994fc7596740ef44cfd51'
)
.
click
(
'#load'
)
.
click
(
'#txinfo .title'
)
.
click
(
'#txinfo .dropdownpanel .btn'
)
.
expect
.
element
(
'#txinfo .dropdownpanel .dropdownrawcontent'
).
text
.
to
.
contain
(
'0x20ef65b8b186ca942fcccd634f37074dde49b541c27994fc7596740ef44cfd51'
)
browser
.
click
(
'#unload'
)
.
execute
(
function
()
{
return
document
.
querySelector
(
'#txinfo .dropdownpanel .dropdownrawcontent'
).
innerHTML
},
[],
function
(
result
)
{
console
.
log
(
result
.
value
)
if
(
result
.
value
.
indexOf
(
'0x20ef65b8b186ca942fcccd634f37074dde49b541c27994fc7596740ef44cfd51'
)
===
-
1
)
{
browser
.
assert
.
fail
(
' txinput panel does not contain 0x20ef65b8b186ca942fcccd634f37074dde49b541c27994fc7596740ef44cfd51 '
,
'info about error'
,
''
)
}
})
.
click
(
'#unload'
)
.
waitForElementNotVisible
(
'#vmdebugger'
,
1000
)
return
browser
}
...
...
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