All contracts in a single Universal DApp.

pull/1/head
chriseth 9 years ago
parent 90d51b8214
commit e7fe06c8f3
  1. 32
      index.html
  2. 3
      libs/universal-dapp.js
  3. 12
      stylesheets/browser-solidity.css

@ -500,34 +500,44 @@ THE SOFTWARE.
}; };
var renderContracts = function(data, source) { var renderContracts = function(data, source) {
var udappContracts = [];
for (var contractName in data.contracts) { for (var contractName in data.contracts) {
var contract = data.contracts[contractName]; var contract = data.contracts[contractName];
var dapp = new UniversalDApp([{ udappContracts.push({
name: contractName, name: contractName,
interface: contract['interface'], interface: contract['interface'],
bytecode: contract.bytecode bytecode: contract.bytecode
}], { });
}
var dapp = new UniversalDApp(udappContracts, {
vm: executionContext === 'vm', vm: executionContext === 'vm',
removable: false, removable: false,
removable_instances: true removable_instances: true,
}); renderOutputModifier: function(contractName, $contractOutput) {
var $contractOutput = dapp.render(); var contract = data.contracts[contractName];
$contractOutput return $contractOutput
.append(textRow('Bytecode', contract.bytecode)) .append(textRow('Bytecode', contract.bytecode))
.append(textRow('Interface', contract['interface'])) .append(textRow('Interface', contract['interface']))
.append(textRow('Web3 deploy', gethDeploy(contractName.toLowerCase(),contract['interface'],contract.bytecode), 'deploy')) .append(textRow('Web3 deploy', gethDeploy(contractName.toLowerCase(),contract['interface'],contract.bytecode), 'deploy'))
.append(textRow('uDApp', combined(contractName,contract['interface'],contract.bytecode), 'deploy')) .append(textRow('uDApp', combined(contractName,contract['interface'],contract.bytecode), 'deploy'))
.append(getDetails(contract, source, contractName)); .append(getDetails(contract, source, contractName));
}});
var $contractOutput = dapp.render();
if (executionContext === 'vm') $('#txorigin').text('0x' + dapp.address.toString('hex')); if (executionContext === 'vm')
else web3.eth.getAccounts( function(err,accounts) { $('#txorigin').text('0x' + dapp.address.toString('hex'));
if (err) renderError(err.message); else
web3.eth.getAccounts(function(err, accounts) {
if (err)
renderError(err.message);
$('#txorigin').text(accounts[0]); $('#txorigin').text(accounts[0]);
}); });
$contractOutput.find('.title').click(function(ev){ $(this).closest('.udapp').toggleClass('hide') }); $contractOutput.find('.title').click(function(ev){
console.log($(this));
$(this).closest('.contract').toggleClass('hide');
});
$('#output').append( $contractOutput ); $('#output').append( $contractOutput );
}
$('.col2 input,textarea').click(function() { this.select(); }); $('.col2 input,textarea').click(function() { this.select(); });
}; };
var tableRowItems = function(first, second, cls) { var tableRowItems = function(first, second, cls) {

@ -2,6 +2,7 @@ function UniversalDApp (contracts, options) {
this.options = options || {}; this.options = options || {};
this.$el = $('<div class="udapp" />'); this.$el = $('<div class="udapp" />');
this.contracts = contracts; this.contracts = contracts;
this.renderOutputModifier = options.renderOutputModifier || function(name, content) { return content; };
if (!options.vm && web3.currentProvider) { if (!options.vm && web3.currentProvider) {
@ -44,7 +45,7 @@ UniversalDApp.prototype.render = function () {
} }
$contractEl.append( $title ).append( this.getCreateInterface( $contractEl, this.contracts[c]) ); $contractEl.append( $title ).append( this.getCreateInterface( $contractEl, this.contracts[c]) );
} }
this.$el.append( $contractEl ); this.$el.append(this.renderOutputModifier(this.contracts[c].name, $contractEl));
} }
} }
$legend = $('<div class="legend" />') $legend = $('<div class="legend" />')

@ -126,19 +126,15 @@ body {
float: left; float: left;
} }
.udapp.hide { .contract.hide {
padding-bottom: 0; padding-bottom: 0;
} }
.udapp.hide > *:not(.contract) { .contract.hide {
display: none;
}
.udapp.hide .contract {
margin: 0; margin: 0;
} }
.udapp.hide .contract > *:not(.title) { .contract.hide > *:not(.title) {
display: none; display: none;
} }
@ -153,7 +149,7 @@ body {
font-size: 10px; font-size: 10px;
} }
.udapp.hide > .contract > .title:before { .contract.hide > .title:before {
content: "\25B6"; content: "\25B6";
} }

Loading…
Cancel
Save