// 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 . 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, Input, InputAddress } 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 (
{ noInputQueries }
{ withInputQueries }
); } renderInputQuery (fn) { const { abi, name, signature } = fn; const { contract } = this.props; return (
); } renderQuery (fn) { const { values } = this.props; return (
{ this.renderValue(values[fn.name], fn.outputs[0].kind.type) }
); } renderValue (value, type) { 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(); } if (type === 'address') { return ( ); } return ( ); } _sortEntries (a, b) { return a.name.localeCompare(b.name); } }