openethereum/js/src/views/Contract/Queries/queries.js
Nicolas Gotchac e4c75bde4c Add read-only inputs to UI plus Copy to Clipboard buttons (#3095)
* Adds readOnly prop to Input, convert disabled props to it (#3066)

* WIP

* Adds copy icon to readOnly Input (#3009)

* Added Copy to Clipboard buttons on the UI (#3009)

* copiable to allowCopy props #3095

* Padded copy icons (#3095)

* Fixed password width in account creation

* Copyable value in MethodDecoding
2016-11-02 17:25:34 +01:00

141 lines
3.5 KiB
JavaScript

// Copyright 2015, 2016 Ethcore (UK) Ltd.
// This file is part of Parity.
// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import BigNumber from 'bignumber.js';
import React, { Component, PropTypes } from 'react';
import { Card, CardTitle, CardText } from 'material-ui/Card';
import InputQuery from './inputQuery';
import { Container, ContainerTitle, Input } from '../../../ui';
import styles from './queries.css';
export default class Queries extends Component {
static contextTypes = {
api: PropTypes.object
}
static propTypes = {
contract: PropTypes.object,
values: PropTypes.object
}
render () {
const { contract } = this.props;
if (!contract) {
return null;
}
const queries = contract.functions
.filter((fn) => fn.constant)
.sort(this._sortEntries);
const noInputQueries = queries
.slice()
.filter((fn) => fn.inputs.length === 0)
.map((fn) => this.renderQuery(fn));
const withInputQueries = queries
.slice()
.filter((fn) => fn.inputs.length > 0)
.map((fn) => this.renderInputQuery(fn));
return (
<Container>
<ContainerTitle title='queries' />
<div className={ styles.methods }>
<div className={ styles.vMethods }>
{ noInputQueries }
</div>
<div className={ styles.hMethods }>
{ withInputQueries }
</div>
</div>
</Container>
);
}
renderInputQuery (fn) {
const { abi, name } = fn;
const { contract } = this.props;
return (
<div className={ styles.container } key={ fn.signature }>
<InputQuery
className={ styles.method }
inputs={ abi.inputs }
outputs={ abi.outputs }
name={ name }
contract={ contract }
/>
</div>
);
}
renderQuery (fn) {
const { values } = this.props;
return (
<div className={ styles.container } key={ fn.signature }>
<Card className={ styles.method }>
<CardTitle
className={ styles.methodTitle }
title={ fn.name }
/>
<CardText
className={ styles.methodContent }
>
{ this.renderValue(values[fn.name]) }
</CardText>
</Card>
</div>
);
}
renderValue (value) {
if (typeof value === 'undefined') {
return null;
}
const { api } = this.context;
let valueToDisplay = null;
if (api.util.isInstanceOf(value, BigNumber)) {
valueToDisplay = value.toFormat(0);
} else if (api.util.isArray(value)) {
valueToDisplay = api.util.bytesToHex(value);
} else if (typeof value === 'boolean') {
valueToDisplay = value ? 'true' : 'false';
} else {
valueToDisplay = value.toString();
}
return (
<Input
className={ styles.queryValue }
value={ valueToDisplay }
readOnly
allowCopy
/>
);
}
_sortEntries (a, b) {
return a.name.localeCompare(b.name);
}
}