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
2dd82a3d
Commit
2dd82a3d
authored
Aug 09, 2017
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check if compiled contract present before doing stuff
parent
03ac24aa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
compile-tab.js
src/app/tabs/compile-tab.js
+4
-0
run-tab.js
src/app/tabs/run-tab.js
+1
-1
No files found.
src/app/tabs/compile-tab.js
View file @
2dd82a3d
...
@@ -286,6 +286,7 @@ function compileTab (container, appAPI, appEvents, opts) {
...
@@ -286,6 +286,7 @@ function compileTab (container, appAPI, appEvents, opts) {
function
details
()
{
function
details
()
{
var
select
=
el
.
querySelector
(
'select'
)
var
select
=
el
.
querySelector
(
'select'
)
if
(
select
.
children
.
length
>
0
&&
select
.
selectedIndex
>=
0
)
{
var
contractName
=
select
.
children
[
select
.
selectedIndex
].
innerText
var
contractName
=
select
.
children
[
select
.
selectedIndex
].
innerText
var
details
=
contractsDetails
[
contractName
]
var
details
=
contractsDetails
[
contractName
]
var
keys
=
Object
.
keys
(
contractsDetails
[
contractName
])
var
keys
=
Object
.
keys
(
contractsDetails
[
contractName
])
...
@@ -296,9 +297,11 @@ function compileTab (container, appAPI, appEvents, opts) {
...
@@ -296,9 +297,11 @@ function compileTab (container, appAPI, appEvents, opts) {
})
})
modalDialog
(
contractName
,
log
,
{
label
:
'OK'
},
{
label
:
''
})
modalDialog
(
contractName
,
log
,
{
label
:
'OK'
},
{
label
:
''
})
}
}
}
function
publish
(
appAPI
)
{
function
publish
(
appAPI
)
{
var
selectContractNames
=
document
.
querySelector
(
`.
${
css
.
contractNames
.
classNames
[
0
]}
`
)
var
selectContractNames
=
document
.
querySelector
(
`.
${
css
.
contractNames
.
classNames
[
0
]}
`
)
if
(
selectContractNames
.
children
.
length
>
0
&&
selectContractNames
.
selectedIndex
>=
0
)
{
var
contract
=
contractsDetails
[
selectContractNames
.
children
[
selectContractNames
.
selectedIndex
].
innerText
]
var
contract
=
contractsDetails
[
selectContractNames
.
children
[
selectContractNames
.
selectedIndex
].
innerText
]
publishOnSwarm
(
contract
,
appAPI
,
function
(
err
)
{
publishOnSwarm
(
contract
,
appAPI
,
function
(
err
)
{
if
(
err
)
{
if
(
err
)
{
...
@@ -308,6 +311,7 @@ function compileTab (container, appAPI, appEvents, opts) {
...
@@ -308,6 +311,7 @@ function compileTab (container, appAPI, appEvents, opts) {
}
}
})
})
}
}
}
return
el
return
el
}
}
}
}
src/app/tabs/run-tab.js
View file @
2dd82a3d
...
@@ -231,7 +231,7 @@ function contractDropdown (appAPI, appEvents, instanceContainer) {
...
@@ -231,7 +231,7 @@ function contractDropdown (appAPI, appEvents, instanceContainer) {
function
setInputParamsPlaceHolder
()
{
function
setInputParamsPlaceHolder
()
{
createButtonInput
.
value
=
''
createButtonInput
.
value
=
''
if
(
appAPI
.
getContracts
())
{
if
(
appAPI
.
getContracts
()
&&
selectContractNames
.
selectedIndex
>=
0
&&
selectContractNames
.
children
.
length
>
0
)
{
var
contract
=
appAPI
.
getContracts
()[
selectContractNames
.
children
[
selectContractNames
.
selectedIndex
].
innerText
]
var
contract
=
appAPI
.
getContracts
()[
selectContractNames
.
children
[
selectContractNames
.
selectedIndex
].
innerText
]
var
ctrabi
=
txHelper
.
getConstructorInterface
(
contract
.
interface
)
var
ctrabi
=
txHelper
.
getConstructorInterface
(
contract
.
interface
)
if
(
ctrabi
.
inputs
.
length
)
{
if
(
ctrabi
.
inputs
.
length
)
{
...
...
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